body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
}

.whatsapp-float i {
    margin: 0;
    line-height: 60px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 30px;
        left: 20px;
        font-size: 24px;
    }

    .whatsapp-float i {
        line-height: 50px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TOP BAR */
.top-bar {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 30px;
    font-size: 14px;
}

.top-bar .left {
    display: flex;
    gap: 20px;
}

.top-bar .left span {
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.top-bar input {
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
}

.top-bar img {
    height: 30px;
}

/* LOGO BAR */
.logo-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 15px;
    transition: height 0.3s ease;
}

/* Logo scroll state */
.logo-bar.scrolled {
    padding: 10px 30px;
}

.logo-bar.scrolled .logo img {
    height: 35px;
    /* 70% of 50px */
}

.logo-text h2 {
    margin: 0;
    font-size: 28px;
    color: #8B0000;
    font-weight: bold;
}

.logo-text span {
    font-size: 16px;
    color: #333;
    display: block;
    font-weight: 600;
}

.logo-text p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #666;
}

.social a {
    margin-left: 10px;
    color: #fff;
    background: #1f4fa3;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s;
}

.social a:hover {
    background: #2a5fb3;
}

/* HAMBURGER MENU - Mobile Only */
.hamburger-menu {
    display: none;
    /* Hidden by default, shown on mobile */
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1003;
}

/* Override general hamburger menu style in mobile */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex !important;
    }
}

.hamburger-menu span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hamburger-menu:hover span {
    background: linear-gradient(135deg, #fff8dd, #fff);
    transform: scaleX(1.1);
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #fff8dd;
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: #fff8dd;
}

.hamburger-menu.active:hover span:nth-child(1),
.hamburger-menu.active:hover span:nth-child(3) {
    transform: rotate(45deg) translate(8px, 8px) scale(1.1);
}

/* MENU BAR */
.menu-bar {
    background: linear-gradient(135deg, #8B0000 0%, #6B0000 50%, #4B0000 100%);
    padding: 0;
    position: sticky;
    top: 97px;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: visible;
    transition: all 0.3s ease;
}

/* Mobile Video Container Optimization */
@media (max-width: 768px) {
    .video-container {
        height: 50vh;
        /* Reduced height for mobile */
        min-height: 300px;
    }

    .video-content h1 {
        font-size: 24px;
    }

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

/* Menu bar scrolled state - adjust position when logo-bar shrinks */
.logo-bar.scrolled~.menu-bar {
    top: 77px;
    /* Reduced by 20px (logo-bar padding change) */
}

.menu-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.menu-bar:hover::before {
    left: 100%;
}

.mobile-logo {
    display: none;
}

.menu-bar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.menu-bar ul li {
    position: relative;
    overflow: visible;
}

.menu-bar ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: -1;
    pointer-events: none;
}

.menu-bar ul li:hover::before {
    left: 100%;
}

.menu-bar ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 18px 22px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    overflow: visible;
    z-index: 1;
}

.menu-bar ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.menu-bar ul li a:hover::before {
    width: 100px;
    height: 100px;
}

.menu-bar ul li:hover>a,
.menu-bar ul li a.active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff8dd;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-bar ul li a.active {
    background: rgba(255, 255, 255, 0.2);
    border-bottom: 3px solid #fff8dd;
}

/* SUBMENU */
.menu-bar .has-submenu .submenu {
    position: absolute;
    margin: 0;
    top: 100%;
    left: 0;
    transform: translateY(-10px);

    flex-direction: column;

    padding: 8px 0;
    gap: 0;
    min-width: 220px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
    border: none;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.menu-bar .has-submenu .submenu::before {
    display: none;
}

.menu-bar .has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-bar .submenu li {
    flex: none;
    min-width: 100%;
    transform: translateY(0);
    opacity: 1;
    animation: none;
    border: none;
    border-radius: 0;
    margin: 0 8px;
    text-align: left;
    border-bottom: 1px solid rgba(139, 0, 0, 0.3);
    background: transparent;
    transition: all 0.2s ease;
}

.menu-bar .submenu li:last-child {
    border-bottom: none;
}

.menu-bar .submenu li a {
    display: flex;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
    white-space: nowrap;
    align-items: center;
    justify-content: flex-start;
}

.menu-bar .submenu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.4s ease;
}

.menu-bar .submenu li:hover a::before {
    left: 100%;
}

.menu-bar .submenu li:hover a {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(107, 0, 0, 0.3));
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    padding-left: 20px;
    transform: translateX(2px);
}

/* TABLET RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .menu-bar ul li a {
        padding: 16px 18px;
        font-size: 15px;
    }

    .menu-bar .has-submenu .submenu {
        min-width: 500px;
        padding: 12px;
        gap: 8px;
    }

    .menu-bar .submenu li {
        min-width: 100px;
    }

    .menu-bar .submenu li a {
        padding: 10px 12px;
        font-size: 12px;
    }
}

/* MOBILE MENU STYLES */
@media (max-width: 768px) {
    .top-bar {
        display: none !important;
    }

    .logo-bar {
        display: none !important;
    }

    .menu-bar {
        display: flex !important;
        padding: 10px 15px;
        height: 60px;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        background: linear-gradient(135deg, #8B0000 0%, #6B0000 50%, #4B0000 100%);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .mobile-logo {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        display: block !important;
    }

    .mobile-logo img {
        height: 35px;
    }

    /* Force hamburger menu to show on mobile */
    .menu-bar .hamburger-menu {
        display: flex !important;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 25px;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 10002;
        background: transparent;
        border: none;
        padding: 5px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .hamburger-menu:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .hamburger-menu span {
        width: 100%;
        height: 3px;
        background: linear-gradient(135deg, #ffffff, #f0f0f0);
        border-radius: 3px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
        position: relative;
        transform-origin: center;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .hamburger-menu span:nth-child(1) {
        transform-origin: left center;
    }

    .hamburger-menu span:nth-child(3) {
        transform-origin: left center;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(2px, -2px);
        background: #fff8dd;
        box-shadow: 0 2px 6px rgba(255, 248, 221, 0.5);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(2px, 2px);
        background: #fff8dd;
        box-shadow: 0 2px 6px rgba(255, 248, 221, 0.5);
    }

    .menu-bar ul {
        display: none;
        position: fixed;
        top: 60px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 60px);
        background: linear-gradient(135deg, #8B0000 0%, #6B0000 50%, #4B0000 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.4);
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 9998;
        overflow-y: auto;
        backdrop-filter: blur(10px);
    }

    .menu-bar ul.active {
        display: flex;
        right: 0;
    }

    .menu-bar ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        position: relative;
        overflow: hidden;
    }

    .menu-bar ul li::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .menu-bar ul li:hover::before {
        left: 100%;
    }

    .menu-bar ul li a {
        display: block;
        padding: 18px 25px;
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .menu-bar ul li a:hover {
        background: rgba(255, 255, 255, 0.15);
        padding-left: 35px;
        color: #fff8dd;
    }

    .menu-bar ul li.active a {
        background: rgba(255, 255, 255, 0.2);
        color: #fff8dd;
        border-left: 4px solid #fff8dd;
    }

    .menu-bar .has-submenu .submenu {
        display: none;
        position: static;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(139, 0, 0, 0.3));
        border-radius: 0;
        padding: 0;
        box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
        transform: none;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        width: 100%;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 3px solid rgba(255, 255, 255, 0.2);
    }

    .menu-bar .has-submenu.active .submenu {
        display: block;
        max-height: 500px;
        opacity: 1;
        visibility: visible;
    }

    .menu-bar .has-submenu .submenu li {
        background: rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 20px;
    }

    .menu-bar .has-submenu .submenu li a {
        padding: 12px 25px;
        font-size: 14px;
        font-weight: 500;
        text-transform: none;
        letter-spacing: 0.3px;
        color: rgba(255, 255, 255, 0.9);
    }

    .menu-bar .has-submenu .submenu li:hover a {
        background: rgba(255, 255, 255, 0.1);
        color: #fff8dd;
        padding-left: 30px;
    }

    .menu-bar .has-submenu>a::after {
        content: '+';
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        font-weight: 300;
        transition: transform 0.3s ease;
    }

    .menu-bar .has-submenu.active>a::after {
        transform: translateY(-50%) rotate(45deg);
    }

    .menu-bar .has-submenu.active .submenu {
        display: block;
        max-height: 500px;
    }

    .menu-bar .has-submenu .submenu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-left: 0;
        margin: 0;
    }

    .menu-bar .submenu li a {
        padding: 15px 20px 15px 50px;
        font-size: 14px;
        background: transparent;
        display: block;
        width: 100%;
        transition: all 0.3s ease;
    }

    .menu-bar .submenu li a:hover {
        background: rgba(255, 255, 255, 0.15);
        padding-left: 55px;
        color: #fff8dd;
    }

    .menu-bar .has-submenu>a {
        position: relative;
        padding-right: 40px;
    }

    .menu-bar .has-submenu>a::after {
        content: '+';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    .menu-bar .has-submenu.active>a::after {
        transform: translateY(-50%) rotate(45deg);
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9997;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    body {
        overflow-x: hidden;
        padding-top: 60px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form .form-row {
        flex-direction: column;
    }
}


/* Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* TEAM MEMBER STYLES */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.team-member {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(139, 0, 0, 0.15);
    border-color: #8B0000;
}

.member-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #8B0000;
    margin: 0 0 5px 0;
}

.member-designation {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin: 0 0 12px 0;
}

.member-description {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 0 0 15px 0;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.member-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B0000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #8B0000;
    color: #fff;
    transform: scale(1.1);
}

/* Staff Highlights */
.staff-highlights {
    display: flex;
    gap: 25px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.staff-stat {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    border-radius: 10px;
    color: #fff;
    transition: transform 0.3s ease;
}

.staff-stat:hover {
    transform: translateY(-5px);
}

.staff-stat h4 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.staff-stat p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* CALENDAR PAGE STYLES */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.calendar-month {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.calendar-month:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(139, 0, 0, 0.15);
    border-color: #8B0000;
}

.month-header {
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.month-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.month-header i {
    font-size: 16px;
    opacity: 0.8;
}

.month-events {
    padding: 20px;
}

.event-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.event-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.event-item:hover {
    padding-left: 10px;
    background: rgba(139, 0, 0, 0.02);
    border-radius: 6px;
}

.event-date {
    font-weight: 600;
    color: #8B0000;
    min-width: 70px;
    font-size: 14px;
}

.event-text {
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

.important-dates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.date-category {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.date-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.12);
    border-left-color: #8B0000;
}

.date-category h4 {
    color: #8B0000;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.date-category li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.date-category li:hover {
    padding-left: 10px;
    background: rgba(139, 0, 0, 0.02);
    border-radius: 4px;
}

.date-category li:last-child {
    border-bottom: none;
}

.date-highlight {
    font-weight: 600;
    color: #8B0000;
    margin-right: 8px;
}

/* MEMBER MESSAGE PAGE STYLES */
.message-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    margin-bottom: 25px;
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.12);
    border-left-color: #8B0000;
    background: linear-gradient(to right, rgba(139, 0, 0, 0.02), rgba(255, 255, 255, 1));
}

.member-signature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.member-signature img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid #8B0000;
    transition: all 0.3s ease;
}

.message-card:hover .member-signature img {
    transform: scale(1.05);
    border-color: #A52A2A;
}

.signature-info h4 {
    color: #8B0000;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.signature-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.message-content {
    line-height: 1.6;
}

.message-content p {
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.message-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    color: #8B0000;
    font-size: 24px;
    font-weight: bold;
    opacity: 0.3;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.value-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(139, 0, 0, 0.15);
    border-color: #8B0000;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.02), rgba(255, 255, 255, 1));
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    transition: all 0.3s ease;
}

.value-icon i {
    color: #fff;
    font-size: 24px;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-item h4 {
    color: #8B0000;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.value-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Video Container Styles */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 56.25vw;
    /* 16:9 aspect ratio */
    min-width: 100%;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Hero Section Video Responsive Fix */
@media (max-width: 768px) {

    /* Hero Section Constraints */
    .hero-section {
        height: auto;
        min-height: 0;
        max-height: 40vh;
        /* Aggressive constraint */
        position: relative;
        overflow: hidden;
    }

    .hero-slider,
    .slide,
    .video-container {
        height: auto;
        max-height: 40vh;
        /* Match constraint */
        width: 100%;
        position: relative;
    }

    .video-container iframe {
        width: 100%;
        height: 100%;
        min-height: 0;
        min-width: 0;
        position: relative;
        transform: none;
        top: 0;
        left: 0;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: auto;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }

    .hero-slider,
    .slide,
    .video-container {
        height: auto;
        width: 100%;
        position: relative;
    }

    .video-container iframe {
        width: 100%;
        height: auto;
        min-height: 0;
        min-width: 0;
        position: relative;
        transform: none;
        top: 0;
        left: 0;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }
}

@media (max-width: 320px) {
    .hero-section {
        height: auto;
        position: relative;
    }

    .video-container iframe {
        width: 100%;
        height: auto;
        min-height: 0;
        min-width: 0;
        position: relative;
        transform: none;
        top: 0;
        left: 0;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }
}

/* SCROLL TO TOP BUTTON */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B0000, #6B0000);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
    text-align: center;
    line-height: 50px;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #6B0000, #4B0000);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-1px) scale(0.95);
}

.scroll-to-top i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

/* Mobile Responsive for Scroll to Top Button */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 14px;
    }
}

.hero-slider {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.slide {
    position: relative;
    width: 100vw;
    height: 100vh;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    background: #000;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.video-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.video-content p {
    font-size: 24px;
    font-weight: 500;
    max-width: 800px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

@media (max-width: 768px) {
    .video-content h1 {
        font-size: 42px;
    }

    .video-content p {
        font-size: 18px;
    }
}

/* 16:9 aspect ratio */
/* 16:9 aspect ratio - ORPHANED CODE REMOVED
min-width: 100%;
min-height: 100vh;
transform: translate(-50%, -50%);
object-fit: cover;
background: #000;
*/

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1.5s ease-out, pulse 3s ease-in-out infinite alternate;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8B0000, transparent);
    animation: shimmer 3s infinite, colorChange 4s ease-in-out infinite;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
    background: linear-gradient(45deg, #ffffff, #fff8dd, #ffffff, #8B0000, #ffffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    animation: textGradient 5s ease-in-out infinite, textGlow 2s ease-in-out infinite alternate;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #8B0000, #6B0000, #4B0000, #6B0000);
    border-radius: 1px;
    animation: lineGlow 2s ease-in-out infinite alternate;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.6;
    animation: textFloat 4s ease-in-out infinite;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    animation: buttonFloat 3s ease-in-out infinite;
}

.btn-primary {
    background: linear-gradient(135deg, #8B0000, #6B0000, #4B0000, #6B0000);
    background-size: 200% 200%;
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: buttonPulse 2s ease-in-out infinite alternate;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    animation: buttonShimmer 3s infinite;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.5);
    background: linear-gradient(135deg, #6B0000, #4B0000, #8B0000, #6B0000);
    animation: none;
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    background-size: 200% 200%;
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid white;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: buttonBorder 3s ease-in-out infinite alternate;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    animation: buttonShimmer 3s infinite;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ffffff, #fff8dd, #ffffff);
    color: #8B0000;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    animation: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-50%);
    }

    100% {
        transform: translateX(100%) translateY(-50%);
    }
}

@keyframes colorChange {

    0%,
    100% {
        background: linear-gradient(90deg, transparent, #8B0000, transparent);
    }

    50% {
        background: linear-gradient(90deg, transparent, #6B0000, transparent);
    }
}

@keyframes textGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes textGlow {

    0%,
    100% {
        filter: brightness(1) drop-shadow(0 0 10px rgba(139, 0, 0, 0.5));
    }

    50% {
        filter: brightness(1.2) drop-shadow(0 0 20px rgba(139, 0, 0, 0.8));
    }
}

@keyframes lineGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(139, 0, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 15px rgba(139, 0, 0, 0.8);
    }
}

@keyframes textFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes buttonFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes buttonPulse {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
    }

    50% {
        box-shadow: 0 15px 35px rgba(139, 0, 0, 0.6);
    }
}

@keyframes buttonBorder {

    0%,
    100% {
        border-color: white;
    }

    50% {
        border-color: #8B0000;
    }
}

@keyframes buttonShimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    background: rgba(139, 0, 0, 0.8);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-primary {
    background: #fff;
    color: #8B0000;
}

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

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #8B0000;
}

/* ABOUT SECTION */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%238B0000" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%238B0000" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%238B0000" opacity="0.02"/><circle cx="10" cy="90" r="0.5" fill="%238B0000" opacity="0.02"/><circle cx="90" cy="50" r="0.5" fill="%238B0000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-container {
    display: flex;
    min-height: 600px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
    padding: 0 40px;
}

.about-content {
    width: 55%;
    padding: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B0000 0%, #A52A2A 50%, #8B0000 100%);
    border-radius: 20px 20px 0 0;
}

.about-content h6 {
    letter-spacing: 4px;
    color: #8B0000;
    margin-bottom: 25px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.about-content h6::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #8B0000 0%, #A52A2A 100%);
}

.about-content h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
    position: relative;
}

.about-content h1::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 80px;
    color: rgba(139, 0, 0, 0.1);
    font-family: Georgia, serif;
}

.about-content h2 {
    color: #8B0000;
    font-size: 38px;
    margin: 30px 0;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #8B0000;
}

.about-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 17px;
    font-weight: 400;
    position: relative;
    padding-left: 20px;
}

.about-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background: #8B0000;
    border-radius: 50%;
}

.stats {
    display: flex;
    gap: 80px;
    margin: 50px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(139, 0, 0, 0.1);
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 0, 0, 0.2) 50%, transparent 100%);
}

.stat-item {
    text-align: center;
    position: relative;
    flex: 1;
}

.stat-item h3 {
    color: #8B0000;
    font-size: 48px;
    margin: 0;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.stat-item h3::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, rgba(165, 42, 42, 0.05) 100%);
    border-radius: 15px;
    z-index: -1;
}

.stat-item span {
    font-size: 16px;
    color: #4a5568;
    display: block;
    margin-top: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #8B0000 0%, #A52A2A 100%);
    color: #fff;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 16px;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover {
    background: linear-gradient(135deg, #A52A2A 0%, #8B0000 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.4);
}

.btn:hover::before {
    left: 100%;
}

.about-image {
    width: 45%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.15) 0%, rgba(139, 0, 0, 0.05) 100%);
    z-index: 1;
    border-radius: 20px;
}

.starburst {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, rgba(255, 215, 0, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
    filter: blur(2px);
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.6;
    }
}

.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: all 1s ease-in-out;
    border-radius: 20px;
}

.slide-image.active {
    opacity: 1;
    transform: scale(1.05);
}

.slide-image:nth-child(1) {
    animation: slideShow 12s infinite;
}

.slide-image:nth-child(2) {
    animation: slideShow 12s infinite 4s;
}

.slide-image:nth-child(3) {
    animation: slideShow 12s infinite 8s;
}

@keyframes slideShow {

    0%,
    33% {
        opacity: 1;
        transform: scale(1.05);
    }

    33.33%,
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* FACILITIES SECTION */
.facilities-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #8B0000 0%, #6B0000 50%, #4B0000 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.facilities-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.facilities-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.facilities-section .container {
    position: relative;
    z-index: 1;
}

.facilities-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 80px;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.facilities-section h2::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #8B0000 0%, #A52A2A 50%, #8B0000 100%);
    border-radius: 2px;
}

.facilities-section h2::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

/* Facilities Carousel */
.facilities-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 60px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: carouselGlow 3s ease-in-out infinite alternate;
}

@keyframes carouselGlow {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    100% {
        box-shadow: 0 15px 40px rgba(139, 0, 0, 0.5);
    }
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.95) rotateX(5deg);
    filter: brightness(0.9);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1) rotateX(0deg);
    filter: brightness(1);
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: scale(0.8) rotateX(10deg);
        filter: blur(5px) brightness(0.7);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotateX(0deg);
        filter: blur(0) brightness(1);
    }
}

.carousel-slide:hover {
    transform: scale(1.08) rotateX(2deg);
    filter: brightness(1.1) saturate(1.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 5;
}

.carousel-slide.active:hover {
    transform: scale(1.08) rotateX(2deg);
    filter: brightness(1.1) saturate(1.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 5;
}

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

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #fff;
    font-size: 18px;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #fff;
    transform: scale(1.2);
}

/* Facilities Cards Carousel */
.facilities-carousel-cards {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cards-carousel-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.cards-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
    display: flex;
    gap: 20px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
}

.cards-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.cards-slide .facility-card {
    flex: 1;
    min-width: 0;
    max-width: 280px;
    margin: 0;
}

.cards-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cards-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.cards-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
}

.cards-indicator.active {
    background: #fff;
    transform: scale(1.4);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.cards-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.facility-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.facility-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.facility-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.facility-card:hover::before {
    left: 100%;
}

.facility-card:hover::after {
    opacity: 1;
}

.facility-card:hover {
    transform: translateY(-20px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(139, 0, 0, 0.3);
}

.card-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, transparent 50%);
    border-radius: 50%;
    z-index: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.facility-card:hover .card-image {
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(139, 0, 0, 0.5);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.3);
}

.facility-card:hover .card-image img {
    transform: scale(1.2);
}

.facility-card i {
    font-size: 42px;
    color: #fff;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 2;
}

.facility-card:hover i {
    transform: scale(1.3) rotate(10deg);
    color: rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 6px 12px rgba(139, 0, 0, 0.4));
}

.facility-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.facility-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #8B0000 0%, #A52A2A 100%);
    border-radius: 1px;
    opacity: 0;
    transition: all 0.3s ease;
}

.facility-card:hover h3::after {
    opacity: 1;
    width: 80px;
}

.facility-card:hover h3 {
    color: rgba(255, 255, 255, 0.98);
    transform: translateY(-2px);
}

.facility-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.facility-card:hover p {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

/* News Cards Carousel */
.news-carousel-cards {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-cards-carousel-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.news-cards-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
    display: flex;
    gap: 20px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
}

.news-cards-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.news-cards-slide .news-card-carousel {
    flex: 1;
    min-width: 0;
    max-width: 280px;
    margin: 0;
}

.news-card-carousel {
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-card-carousel:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.news-card-carousel .card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card-carousel .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
}

.news-card-carousel:hover .card-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.news-card-carousel i {
    font-size: 32px;
    color: #8B0000;
    margin-bottom: 10px;
}

.news-card-carousel h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.2;
}

.news-card-carousel p {
    color: #666;
    line-height: 1.4;
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more-btn {
    color: #8B0000;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s;
}

.read-more-btn:hover {
    color: #A52A2A;
}

.news-cards-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.news-cards-carousel-controls .carousel-btn {
    background: rgba(139, 0, 0, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #fff;
    font-size: 18px;
}

.news-cards-carousel-controls .carousel-btn:hover {
    background: rgba(139, 0, 0, 1);
    transform: scale(1.1);
}

.news-cards-carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.news-cards-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.news-cards-indicator.active {
    background: #8B0000;
    transform: scale(1.2);
}

.news-card a:hover {
    background: #A52A2A;
}

/* ACHIEVEMENTS SECTION */
.achievements-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%238B0000" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.achievements-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.achievements-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 30px;
}

.achievements-row:last-child {
    margin-bottom: 0;
}

.achievement-item {
    text-align: center;
    flex: 1;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.05), transparent);
    transition: left 0.6s ease;
}

.achievement-item:hover::before {
    left: 100%;
}

.achievement-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.15);
    border-color: rgba(139, 0, 0, 0.2);
}

.achievement-number {
    font-size: 56px;
    font-weight: 800;
    color: #8B0000;
    margin-bottom: 15px;
    line-height: 1;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(139, 0, 0, 0.1);
}

.achievement-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.achievement-label {
    font-size: 16px;
    color: #4a5568;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.achievement-item:hover .achievement-label {
    color: #8B0000;
    transform: translateY(-2px);
}

.achievement-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8B0000 0%, #A52A2A 100%);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.achievement-item:hover .achievement-label::after {
    width: 50px;
}

/* STATISTICS SECTION */
.statistics-section {
    padding: 60px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.statistics-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 0 15px;
    min-width: 150px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #dc3545;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* INFRASTRUCTURE SECTION */
.infrastructure-section {
    padding: 60px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.infrastructure-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.infra-item {
    text-align: center;
    flex: 1;
    padding: 0 15px;
    min-width: 150px;
}

.infra-number {
    font-size: 48px;
    font-weight: bold;
    color: #dc3545;
    margin-bottom: 10px;
    line-height: 1;
}

.infra-label {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B0000 0%, #6B0000 50%, #4B0000 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.testimonials-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 80px;
}

.testimonials-left {
    flex: 1;
    text-align: left;
}

.testimonials-left h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.testimonials-left h2::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #8B0000 0%, #A52A2A 50%, #8B0000 100%);
    border-radius: 2px;
}

.testimonials-left h2::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

.testimonials-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.testimonial-additional-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 50px 40px;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-additional-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.testimonial-additional-content:hover::before {
    left: 100%;
}

.testimonial-additional-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px rgba(139, 0, 0, 0.2);
    border-color: rgba(139, 0, 0, 0.3);
}

.testimonial-additional-content h3 {
    font-size: 32px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-features {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.testimonial-features li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
}

.testimonial-features li::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #8B0000 0%, #A52A2A 100%);
    transition: width 0.3s ease;
}

.testimonial-features li:hover::before {
    width: 100%;
}

.testimonial-features li:hover {
    color: #fff;
    transform: translateX(10px);
}

.testimonial-features i {
    color: #8B0000;
    font-size: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-features li:hover i {
    color: #fff;
    background: #8B0000;
    transform: scale(1.1) rotate(10deg);
}

.testimonial-features li:hover i {
    transform: scale(1.2);
}

.testimonial-contact {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-contact h4 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.testimonial-contact p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-size: 16px;
}

.testimonial-btn-primary {
    display: inline-block;
    background: #fff;
    color: #8B0000;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.4s ease;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.testimonials-carousel {
    position: relative;
    max-width: 650px;
    padding: 50px 55px 60px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: all 0.4s ease;
}

.testimonials-carousel:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 75px rgba(0, 0, 0, 0.5);
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9) rotateX(5deg);
    filter: blur(2px);
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1) rotateX(0deg);
    filter: blur(0);
}

.testimonial-content {
    max-width: 700px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B0000 0%, #A52A2A 50%, #8B0000 100%);
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    color: #2d2d2d;
    margin-bottom: 35px;
    font-style: italic;
    position: relative;
    padding: 0 30px;
    font-weight: 400;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 72px;
    color: rgba(139, 0, 0, 0.15);
    position: absolute;
    font-weight: 800;
    font-family: Georgia, serif;
}

.testimonial-text::before {
    top: -30px;
    left: -20px;
}

.testimonial-text::after {
    bottom: -60px;
    right: -20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(139, 0, 0, 0.1);
}

.author-info h4 {
    font-size: 22px;
    color: #8B0000;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-info p {
    font-size: 16px;
    color: #666;
    margin: 5px 0 0;
    font-weight: 400;
}

.testimonial-controls {
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px 0 0;
    z-index: 10;
    margin-top: 20px;
}

.testimonial-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 2px solid rgba(139, 0, 0, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #8B0000;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 15px 35px rgba(139, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.testimonial-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.1), transparent);
    transition: left 0.8s ease;
}

.testimonial-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.testimonial-btn:hover::before {
    left: 100%;
}

.testimonial-btn:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.testimonial-btn:hover {
    background: linear-gradient(135deg, #8B0000 0%, #A52A2A 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.4);
}

.testimonial-btn:active {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.testimonial-btn i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.testimonial-btn:hover i {
    transform: scale(1.2);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
}

.testimonial-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.testimonial-indicator.active {
    background: #8B0000;
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.2);
}

/* ABOUT PAGE STYLES */
.about-hero-section {
    background: linear-gradient(rgba(139, 0, 0, 0.8), rgba(139, 0, 0, 0.8)), url('../images/unnamed (7).jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.about-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content-left h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.about-content-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-features {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-item:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-item i {
    color: #8B0000;
    font-size: 20px;
}

.feature-item span {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 20px;
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-item span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-btn {
    display: inline-block;
    background: #8B0000;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
}

.about-btn:hover {
    background: #A52A2A;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
}

.about-image-slider {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 500px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-container .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 8s ease-in-out;
    transform: scale(1);
}

.slider-container .slide-image.active {
    opacity: 1;
    transform: scale(1.1);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-btn {
    background: rgba(139, 0, 0, 0.8);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: rgba(139, 0, 0, 1);
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #fff;
    transform: scale(1.2);
}

.about-highlights-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 50px;
    font-weight: 600;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.highlight-card:nth-child(1) {
    animation-delay: 0.2s;
}

.highlight-card:nth-child(2) {
    animation-delay: 0.4s;
}

.highlight-card:nth-child(3) {
    animation-delay: 0.6s;
}

.highlight-card:nth-child(4) {
    animation-delay: 0.8s;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    color: #fff;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: #8B0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    background: #fff;
    color: #8B0000;
    transform: scale(1.1);
}

.highlight-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.highlight-card:hover h3 {
    color: #fff;
}

.highlight-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    transition: color 0.3s ease;
}

.highlight-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.about-mission-section {
    padding: 80px 0;
    background: #fff;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: #8B0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #fff;
    font-size: 24px;
}

.mission-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* CONTACT PAGE STYLES */
.contact-hero-section {
    padding: 80px 0 40px;
    background: #ffffff;
}

.contact-hero-section h1 {
    font-size: 42px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
}

.contact-hero-section p {
    font-size: 16px;
    color: #555555;
}

.contact-main-section {
    padding: 20px 0 80px;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1.1fr;
    gap: 40px;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* contact-left and contact-right will be animated via .scroll-animate utility */

.contact-subtitle {
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8B0000;
    margin-top: 25px;
    margin-bottom: 25px;
}

.contact-intro-box {
    background: #fff8dd;
    border-left: 4px solid #8B0000;
    padding: 20px 25px;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

.contact-primary-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1 1 220px;
}

.info-item i {
    color: #8B0000;
    font-size: 20px;
    margin-top: 3px;
}

.info-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.info-value {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.contact-branches {
    margin: 30px 0 35px;
}

.branch-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.branch-tab {
    border: 1px solid #d3c26b;
    background: #fff9d9;
    padding: 8px 18px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 2px;
    color: #444;
    transition: all 0.3s ease;
}

.branch-tab.active,
.branch-tab:hover {
    background: #8B0000;
    border-color: #8B0000;
    color: #fff;
}

.branch-panels {
    padding: 18px 20px;
    border: 1px solid #eee;
    background: #fafafa;
}

.branch-panel {
    display: none;
}

.branch-panel.active {
    display: block;
}

.contact-map {
    margin: 30px 0;
    border: 1px solid #eee;
    padding: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #8B0000;
}

.contact-form-wrapper p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form .form-row {
    display: flex;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #8B0000;
    box-shadow: 0 0 0 1px rgba(139, 0, 0, 0.2);
}

.contact-submit-btn {
    align-self: flex-start;
    background: #8B0000;
    border: none;
    color: #fff;
    padding: 10px 28px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background: #A52A2A;
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
}

.contact-right .contact-sidebar-box {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid #eee;
    background: #fafafa;
}

.contact-right h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.contact-right h3 span {
    color: #8B0000;
}

.contact-right p {
    font-size: 14px;
    color: #555;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.sidebar-news-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.sidebar-news-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.news-title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.news-date {
    font-size: 12px;
    color: #8B0000;
}

.contact-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #8B0000;
    color: #fff;
    margin-right: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: #fff;
    color: #8B0000;
    border: 1px solid #8B0000;
}

/* Document Items Styling */
.documents-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.document-item:hover {
    background: #fff;
    border-color: #8B0000;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.1);
}

.document-item i {
    color: #8B0000;
    font-size: 24px;
    min-width: 24px;
    background: rgba(139, 0, 0, 0.1);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-item span {
    flex: 1;
    font-weight: 500;
    color: #333;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    border: 1px solid #8B0000;
    color: #8B0000;
}

.btn-outline:hover {
    background: #8B0000;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(139, 0, 0, 0.2);
}

.btn-outline i {
    margin-right: 5px;
}

/* Enhanced download button styles */
.document-item .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.document-item .btn-outline:hover {
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    border-color: #8B0000;
}

/* Responsive design for about page */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 80px 0 60px;
    }

    .about-image-container img {
        max-height: 250px;
        border-radius: 6px;
    }

    .contact-left h2 {
        font-size: 24px !important;
    }

    .contact-left h3 {
        font-size: 18px !important;
    }

    .contact-left p {
        font-size: 14px !important;
        line-height: 1.6;
    }

    .career-list {
        padding-left: 20px !important;
    }

    .career-list li {
        font-size: 13px !important;
        margin-bottom: 8px !important;
    }

    .highlights-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .highlight-card {
        padding: 15px !important;
        text-align: center;
    }

    .contact-subtitle {
        font-size: 26px !important;
        margin-top: 20px !important;
        margin-bottom: 15px !important;
    }
}

/* Extra small screens (mobile phones) */
@media (max-width: 480px) {
    .about-image-container img {
        max-height: 200px;
        border-radius: 4px;
    }

    .contact-left h2 {
        font-size: 20px !important;
    }

    .contact-left h3 {
        font-size: 16px !important;
    }

    .contact-left p {
        font-size: 13px !important;
    }

    .career-list li {
        font-size: 12px !important;
        margin-bottom: 6px !important;
    }

    .highlight-card {
        padding: 12px !important;
    }

    .contact-subtitle {
        font-size: 22px !important;
        margin-top: 15px !important;
        margin-bottom: 12px !important;
    }

    .about-hero-section {
        padding: 60px 0 40px;
    }
}

.about-hero-content h1 {
    font-size: 36px;
}

.about-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.about-features {
    margin: 30px 0;
}

.mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.about-image-container img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {
    .testimonials-content {
        flex-direction: column;
        gap: 40px;
    }

    .testimonials-left {
        text-align: center;
        order: 1;
    }

    .testimonials-right {
        order: 2;
    }

    .testimonials-carousel {
        height: 250px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 36px;
    }

    .testimonial-text::before {
        left: -20px;
    }

    .testimonial-text::after {
        right: -20px;
    }

    .testimonials-left h2 {
        font-size: 28px;
        text-align: center;
    }

    .testimonial-additional-content {
        padding: 30px 20px;
    }

    .testimonial-additional-content h3 {
        font-size: 20px;
    }

    .testimonial-features li {
        font-size: 14px;
    }
}

.news-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.news-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card h3 {
    padding: 20px 20px 10px;
    margin: 0;
    font-size: 18px;
    color: #333;
}

.news-card p {
    padding: 0 20px 20px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.news-card a {
    display: block;
    padding: 15px 20px;
    background: #8B0000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.news-card a:hover {
    background: #A52A2A;
}

/* FOOTER */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
    width: 100%;
    max-width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #8B0000;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-logo {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(0) invert(0.8);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #8B0000;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: #fff;
    background: #8B0000;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s;
}

.contact-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-links a:hover {
    background: #A52A2A;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.app-download h4 {
    margin-bottom: 15px;
    color: #fff;
}

.app-buttons {
    display: flex;
    gap: 10px;
}

.app-buttons img {
    height: 40px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    width: 100%;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #8B0000;
}

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

    /* Top Bar */
    .top-bar {
        padding: 10px 20px;
        font-size: 13px;
    }

    .top-bar .left {
        gap: 15px;
    }

    .top-bar .right {
        gap: 10px;
    }

    /* Logo Bar */
    .logo-bar {
        padding: 15px 20px;
    }

    .logo img {
        height: 35px;
    }

    .logo-text h2 {
        font-size: 24px;
    }

    .logo-text span {
        font-size: 14px;
    }

    .logo-text p {
        font-size: 13px;
    }

    /* Menu Bar */
    .menu-bar ul li a {
        padding: 12px 15px;
        font-size: 14px;
    }

    /* Hero Section */
    .hero-section {
        height: 100vh;
        position: relative;
    }

    .hero-content {
        padding: 30px;
        max-width: 700px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    /* About Section */
    .about-container {
        min-height: 40vh;
    }

    .about-content {
        width: 60%;
        padding: 25px 40px;
    }

    .about-content h1 {
        font-size: 28px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-image {
        width: 40%;
    }

    .stats {
        gap: 40px;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    /* Facilities Section */
    .facilities-section h2 {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .facility-card {
        min-height: 280px;
    }

    .card-image {
        width: 100px;
        height: 100px;
    }

    .facility-card h3 {
        font-size: 18px;
    }

    .facility-card p {
        font-size: 14px;
    }

    /* Achievements Section */
    .achievements-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .achievement-item {
        flex: 1 1 200px;
        margin-bottom: 20px;
    }

    .achievement-number {
        font-size: 40px;
    }

    /* Testimonials Section */
    .testimonials-content {
        gap: 50px;
    }

    .testimonials-left h2 {
        font-size: 36px;
    }

    .testimonial-additional-content {
        padding: 35px 40px;
    }

    .testimonial-additional-content h3 {
        font-size: 24px;
    }

    /* Footer */
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }

    .footer-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

    .footer-section h3::after {
        content: '';
        display: block;
        width: 50px;
        height: 2px;
        background: #8B0000;
        margin: 10px auto 0;
    }

    /* Footer Logo Scaling */
    .footer-section img.footer-logo {
        max-width: 120px;
        /* Limit footer logo size */
        height: auto;
    }
}

/* MOBILE RESPONSIVE DESIGN */
@media (max-width: 768px) {

    /* Global Mobile Typography Boost */
    html,
    body {
        font-size: 16px;
    }

    p {
        font-size: 16px !important;
        line-height: 1.6;
    }

    li {
        font-size: 16px;
    }

    .container {
        padding: 0 15px;
    }

    /* Hide Top Bar and Logo Bar on Mobile */
    .top-bar {
        display: none;
    }

    .logo-bar {
        display: none;
    }

    /* Menu Bar with Logo */
    .menu-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
    }

    .mobile-logo {
        display: flex;
        align-items: center;
    }

    .mobile-logo img {
        height: 40px;
        width: auto;
        object-fit: contain;
    }

    .menu-bar ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #8B0000;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 0 20px;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .menu-bar ul.active {
        right: 0;
    }

    .menu-bar ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-bar ul li:last-child {
        border-bottom: none;
    }

    .menu-bar ul li a {
        padding: 15px 25px;
        font-size: 16px;
        border-radius: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-bar .has-submenu .submenu {
        position: static;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .menu-bar .has-submenu.active .submenu {
        display: block;
        max-height: 300px;
    }

    .menu-bar .submenu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .menu-bar .submenu li a {
        padding: 12px 25px 12px 40px;
        font-size: 14px;
        background: transparent;
        text-align: center;
    }

    .menu-bar .submenu li a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 45px;
    }

    .menu-bar .has-submenu>a::after {
        content: '+';
        font-size: 18px;
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    .menu-bar .has-submenu.active>a::after {
        transform: rotate(45deg);
    }

    /* Hero Section */
    .hero-section {
        height: auto;
        min-height: 0;
        padding: 0;
        /* Remove padding to fit video exactly */
        position: relative;
    }

    .hero-slider video {
        width: 100%;
        height: auto;
        min-height: auto;
        max-height: none;
        object-fit: cover;
        aspect-ratio: 16 / 9;
        /* Enforce 16:9 aspect ratio */
    }

    .hero-content {
        padding: 20px;
        max-width: 90%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 14px;
    }

    /* About Section */
    .about-section {
        padding: 40px 0;
    }

    .about-container {
        flex-direction: column;
        min-height: auto;
        gap: 30px;
    }

    .about-content {
        width: 100%;
        padding: 20px 15px;
        text-align: center;
        order: 2;
    }

    .about-content h6 {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .about-content h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .about-content h2 {
        font-size: 26px;
        margin: 15px 0;
    }

    .about-content p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .stats {
        justify-content: center;
        gap: 20px;
        margin: 30px 0;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 calc(50% - 10px);
        text-align: center;
        padding: 15px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item span {
        font-size: 14px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
        align-self: center;
    }

    .about-image {
        width: 100%;
        height: 250px;
        order: 1;
    }

    .about-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .image-slider .slide-image {
        height: 250px;
    }

    /* Facilities Section */
    .facilities-section {
        padding: 50px 0;
    }

    .facilities-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
        text-align: center;
    }

    .facilities-carousel-cards {
        margin: 40px auto 30px;
    }

    .cards-carousel-container {
        height: 450px;
    }

    .cards-slide {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 15px;
    }

    .facility-card {
        width: 100%;
        max-width: 320px;
        min-height: 220px;
        padding: 25px 20px;
    }

    .card-image {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .facility-card i {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .facility-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .facility-card p {
        font-size: 14px;
    }

    .cards-carousel-controls {
        margin-top: 25px;
        gap: 15px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .cards-carousel-indicators {
        margin-top: 20px;
        gap: 10px;
    }

    .cards-indicator {
        width: 8px;
        height: 8px;
    }

    /* Achievements Section */
    .achievements-section {
        padding: 60px 0;
    }

    .achievements-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 40px;
    }

    .achievement-item {
        width: 100%;
        max-width: 320px;
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .achievement-number {
        font-size: 42px;
        margin-bottom: 12px;
    }

    .achievement-label {
        font-size: 14px;
        letter-spacing: 1px;
    }

    /* Testimonials Section Mobile Fix */
    .testimonials-section {
        padding: 60px 0 100px;
        /* Increased bottom padding */
        overflow: visible;
        position: relative;
        z-index: 5;
        background: #fff;
        margin-top: 20px;
    }

    .testimonials-content {
        flex-direction: column;
        gap: 20px;
    }

    .testimonials-left {
        text-align: center;
        order: 1;
        margin-bottom: 20px;
    }

    .testimonials-right {
        order: 2;
        width: 100%;
        position: relative;
    }

    .testimonial-additional-content {
        display: none;
    }

    /* Slider Container */
    .testimonials-carousel {
        width: 100%;
        max-width: 100%;
        padding: 20px 15px;
        position: relative;
        min-height: auto;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    /* Individual Slides */
    .testimonial-slide {
        display: none;
        width: 100%;
        opacity: 0;
        transition: opacity 0.5s ease;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .testimonial-slide.active {
        display: block;
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: none;
    }



    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 10px;
        margin-bottom: 20px;
        text-align: center;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
        text-align: center;
        justify-content: center;
    }

    .testimonial-author img {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    .author-info h4 {
        font-size: 16px;
        margin: 0;
    }

    .author-info p {
        font-size: 12px;
        margin: 5px 0 0;
    }

    /* Controls */
    .testimonial-controls {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
        position: relative;
        z-index: 10;
        width: 100%;
    }

    .testimonial-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
        background: #f0f0f0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        color: #333;
    }

    .testimonial-indicators {
        margin-top: 15px;
        gap: 8px;
        justify-content: center;
    }

    .testimonial-indicator {
        width: 8px;
        height: 8px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-section p {
        font-size: 14px;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-section ul li a {
        font-size: 14px;
    }

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

    .contact-info p {
        justify-content: center;
        font-size: 14px;
    }

    .app-download h4 {
        font-size: 16px;
    }

    .app-buttons {
        justify-content: center;
        gap: 15px;
    }

    .app-buttons img {
        height: 35px;
    }

    .footer-bottom {
        padding-top: 15px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .footer-links a {
        font-size: 14px;
    }
}

/* ADMISSION FORM PROFESSIONAL STYLING */
.admission-form-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    min-height: 100vh;
}

.admission-form-section .container {
    max-width: 900px;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header .section-title {
    font-size: 36px;
    color: #8B0000;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.form-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8B0000, #A52A2A);
    border-radius: 2px;
}

.form-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 60px;
    position: relative;
    padding: 0 20px;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #e9ecef 0%, #dee2e6 50%, #e9ecef 100%);
    z-index: 1;
    border-radius: 2px;
}

.progress-steps::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    width: var(--progress-width, 0%);
    height: 3px;
    background: linear-gradient(90deg, #8B0000 0%, #A52A2A 50%, #8B0000 100%);
    z-index: 2;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.3);
}

.step {
    background: white;
    border: 3px solid #e9ecef;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #dee2e6;
}

.step.active {
    background: linear-gradient(135deg, #8B0000 0%, #A52A2A 100%);
    border-color: #8B0000;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

.step.active::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(139, 0, 0, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step-label {
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.step.active .step-label {
    color: #8B0000;
    font-weight: 700;
    opacity: 1;
    transform: translateX(-50%) translateY(2px);
}

/* Progress bar animation classes */
.progress-step-1::after {
    width: calc(0% * 0.8);
}

.progress-step-2::after {
    width: calc(33.33% * 0.8);
}

.progress-step-3::after {
    width: calc(66.66% * 0.8);
}

.progress-step-4::after {
    width: calc(100% * 0.8);
}

.step.completed {
    background: #28a745;
    border-color: #28a745;
}

.step-number {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.step-label {
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px;
    text-align: center;
    max-width: 80px;
    line-height: 1.2;
}

/* Form Sections */
.form-section {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.form-section.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.15);
}

.card-title {
    font-size: 24px;
    color: #8B0000;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #8B0000, #A52A2A);
    border-radius: 2px;
}

/* Instructions Section */
.instructions-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.instruction-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), rgba(165, 42, 42, 0.05));
    border-radius: 12px;
    border-left: 4px solid #8B0000;
    transition: all 0.3s ease;
}

.instruction-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.08), rgba(165, 42, 42, 0.08));
}

.instruction-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.instruction-text h4 {
    color: #8B0000;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.instruction-text p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Documents Section */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.document-category {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.document-category h4 {
    color: #8B0000;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.document-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-category li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
}

.document-category li:last-child {
    border-bottom: none;
}

.document-requirements {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
}

.document-requirements h4 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.document-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-requirements li {
    color: #856404;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.document-requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #856404;
    font-weight: bold;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05), rgba(34, 197, 94, 0.05));
    border-radius: 12px;
    border-left: 4px solid #28a745;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.08), rgba(34, 197, 94, 0.08));
}

.process-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.process-text h4 {
    color: #28a745;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.process-text p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Agreement Section */
.agreement-section {
    margin-top: 40px;
}

.agreement-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), rgba(255, 193, 7, 0.1));
    border: 1px solid #ffeaa7;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.agreement-card h3 {
    color: #856404;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.agreement-text {
    color: #856404;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.6;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 16px;
    color: #856404;
    font-weight: 500;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #856404;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input:checked+.checkbox-custom {
    background: #856404;
    border-color: #856404;
}

.checkbox-label input:checked+.checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Form Styling */
.admission-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-group label::after {
    content: '*';
    color: #dc3545;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B0000;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.parent-section {
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.parent-section h4 {
    color: #8B0000;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.parent-section h4::before {
    content: '👨';
    font-size: 20px;
}

.parent-section:nth-child(2) h4::before {
    content: '👩';
}

/* Upload Section */
.upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.upload-item {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.upload-item:hover {
    border-color: #8B0000;
    background: rgba(139, 0, 0, 0.02);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.1);
}

.upload-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.05), transparent);
    transition: left 0.5s ease;
}

.upload-item:hover::before {
    left: 100%;
}

.upload-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.upload-label::after {
    content: '*';
    color: #dc3545;
    font-size: 16px;
}

.upload-area {
    position: relative;
}

.upload-area input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.upload-button {
    display: block;
    cursor: pointer;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
    border: 2px solid #e9ecef;
}

.upload-button:hover {
    border-color: #8B0000;
    background: rgba(139, 0, 0, 0.02);
}

.upload-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.upload-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.upload-info {
    font-size: 12px;
    color: #999;
}

.upload-item.file-selected .upload-button {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.05);
}

.upload-item.file-selected .upload-text {
    color: #28a745;
    font-weight: 600;
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.btn-prev,
.btn-next {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 180px;
}

.btn-prev {
    background: #6c757d;
    color: white;
}

.btn-prev:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
}

.btn-next {
    background: linear-gradient(135deg, #8B0000, #A52A2A);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
}

.btn-next:hover {
    background: linear-gradient(135deg, #A52A2A, #8B0000);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.4);
}

/* Success Section */
.success-card {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 30px;
    display: block;
}

.success-card h3 {
    color: #28a745;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.success-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.registration-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.registration-details h4 {
    color: #28a745;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.registration-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.registration-details li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
}

.registration-details li:last-child {
    border-bottom: none;
}

.registration-details li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
}

.contact-info {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05), rgba(165, 42, 42, 0.05));
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.contact-info h4 {
    color: #8B0000;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.contact-info p {
    color: #555;
    margin: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .admission-form-section {
        padding: 20px 0;
        margin-top: 0;
    }

    .form-header .section-title {
        font-size: 28px;
    }

    .progress-steps {
        margin: 30px 0 40px;
        padding: 0 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .progress-steps::before {
        display: none;
    }

    .progress-steps::after {
        display: none;
    }

    .step {
        width: 60px;
        height: 60px;
        margin: 0 5px;
        flex-shrink: 0;
    }

    .step-number {
        font-size: 14px;
    }

    .step-label {
        font-size: 10px;
        max-width: 80px;
        line-height: 1.2;
        top: 70px;
    }

    .section-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }

    .instructions-content,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .upload-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .btn-prev,
    .btn-next,
    .btn-primary {
        width: 100%;
        min-width: auto;
    }

    .success-card {
        padding: 40px 20px;
    }

    .success-card h3 {
        font-size: 24px;
    }
}

/* SMALL MOBILE DEVICES */
@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }

    .admission-form-section {
        padding: 10px 0;
        margin-top: 0;
    }

    .form-header .section-title {
        font-size: 24px;
    }

    .form-header .form-subtitle {
        font-size: 14px;
    }

    .progress-steps {
        margin: 20px 0 30px;
        padding: 0 10px;
        gap: 8px;
    }

    .step {
        width: 50px;
        height: 50px;
        margin: 0 3px;
    }

    .step-number {
        font-size: 12px;
    }

    .step-label {
        font-size: 9px;
        max-width: 70px;
        top: 60px;
    }

    .section-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .card-title {
        font-size: 18px;
    }

    .instruction-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .instruction-icon {
        font-size: 32px;
    }

    .document-category {
        margin-bottom: 20px;
    }

    .document-category h4 {
        font-size: 16px;
    }

    .document-category ul {
        font-size: 14px;
    }

    .upload-item {
        margin-bottom: 20px;
    }

    .upload-label {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .upload-button {
        padding: 30px 15px;
    }

    .upload-icon {
        font-size: 32px;
    }

    .upload-text {
        font-size: 13px;
    }

    .upload-info {
        font-size: 11px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 12px;
    }

    .parent-section h4 {
        font-size: 16px;
    }

    .agreement-card {
        padding: 20px 15px;
    }

    .agreement-card h3 {
        font-size: 16px;
    }

    .checkbox-label {
        font-size: 13px;
    }

    .btn-prev,
    .btn-next,
    .btn-primary {
        padding: 12px 20px;
        font-size: 14px;
    }

    .success-card {
        padding: 30px 15px;
        text-align: center;
    }

    .success-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .success-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .success-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .registration-details h4,
    .contact-info h4 {
        font-size: 16px;
    }

    .registration-details ul,
    .contact-info p {
        font-size: 13px;
    }

    /* Top Bar */
    .top-bar {
        padding: 10px;
        font-size: 12px;
    }

    .top-bar .left {
        gap: 8px;
    }

    .top-bar .left span {
        font-size: 12px;
    }

    .top-bar .right {
        gap: 10px;
    }

    .top-bar input {
        width: 120px;
        padding: 5px 10px;
        font-size: 12px;
    }

    .top-bar .social a {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    /* Logo Bar */
    .logo-bar {
        padding: 10px 0;
    }

    .logo-bar .logo img {
        max-height: 40px;
    }

    /* Menu Bar */
    .menu-bar {
        padding: 10px 15px;
    }

    .mobile-logo img {
        max-height: 35px;
    }

    .hamburger-menu {
        width: 25px;
        height: 20px;
    }

    .hamburger-menu span {
        height: 2px;
    }

    .menu-bar ul {
        padding: 20px 15px;
    }

    .menu-bar ul li a {
        font-size: 14px;
        padding: 12px 15px;
    }

    .submenu {
        padding-left: 20px;
    }

    .submenu li a {
        font-size: 13px;
        padding: 8px 15px;
    }
}

/* Hero Section */


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

/* About Section */
.about-content {
    padding: 15px 10px;
}

.about-content h6 {
    font-size: 11px;
}

.about-content h1 {
    font-size: 22px;
}

.about-content h2 {
    font-size: 24px;
}

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

.about-image {
    height: 200px;
}

.image-slider .slide-image {
    height: 200px;
}

.stats {
    gap: 15px;
    margin: 25px 0;
}

.stat-item {
    flex: 0 0 calc(50% - 8px);
    padding: 12px;
}

.stat-item h3 {
    font-size: 24px;
}

.stat-item span {
    font-size: 12px;
}

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

/* Facilities Section */
.facilities-section {
    padding: 40px 0;
}

.facilities-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
}

.cards-carousel-container {
    height: 400px;
}

.facility-card {
    max-width: 280px;
    min-height: 200px;
    padding: 20px 15px;
}

.card-image {
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
}

.facility-card i {
    font-size: 24px;
    margin-bottom: 10px;
}

.facility-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.facility-card p {
    font-size: 13px;
}

.carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 12px;
}

.cards-indicator {
    width: 6px;
    height: 6px;
}

/* Achievements Section */
.achievements-section {
    padding: 40px 0;
}

.achievements-row {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.achievement-item {
    width: 100%;
    max-width: 280px;
    padding: 25px 15px;
    margin-bottom: 15px;
}

.achievement-number {
    font-size: 36px;
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 13px;
    letter-spacing: 0.8px;
}

/* Footer */
.footer {
    padding: 40px 0 20px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 40px 0;
}

.testimonials-left h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-additional-content {
    padding: 25px 20px;
}

.testimonial-additional-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-features li {
    font-size: 14px;
    margin-bottom: 10px;
}

.testimonial-contact h4 {
    font-size: 16px;
}

.testimonial-btn-primary {
    padding: 8px 20px;
    font-size: 13px;
}

.testimonials-carousel {
    padding: 25px 15px;
}

.testimonial-text {
    font-size: 14px;
    padding: 0 10px;
}

.testimonial-text::before,
.testimonial-text::after {
    font-size: 28px;
    left: -10px;
    right: -10px;
}

.author-info h4 {
    font-size: 16px;
}

.author-info p {
    font-size: 13px;
}

.testimonial-btn {
    width: 35px;
    height: 35px;
    font-size: 12px;
}

.testimonial-indicator {
    width: 8px;
    height: 8px;
}

/* Footer */
.footer {
    padding: 30px 0 15px;
}

.footer-content {
    gap: 25px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-section p {
    font-size: 13px;
}

.footer-section ul li a {
    font-size: 13px;
}

.contact-info p {
    font-size: 13px;
}

.app-download h4 {
    font-size: 15px;
}

.app-buttons img {
    height: 30px;
}

.footer-bottom-content p {
    font-size: 13px;
}

.footer-links a {
    font-size: 13px;
}

/* ADMISSION FORM STYLES */
.admission-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header .section-title {
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: linear-gradient(135deg, #8B0000 0%, #6B0000 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.step-label {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    transition: color 0.3s ease;
}

.step.active .step-label {
    color: #8B0000;
    font-weight: 600;
}

/* Form Sections */
.form-section {
    display: flex;
    animation: fadeInUp 0.5s ease;
}

.form-section.active {
    display: block;
}

.section-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.1);

}

.card-title {
    font-size: 1.8rem;
    color: #8B0000;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #8B0000 0%, #6B0000 100%);
    border-radius: 2px;
}

/* Instructions */
.instruction-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(139, 0, 0, 0.05);
    border-radius: 15px;
    border-left: 4px solid #8B0000;
}

.instruction-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.instruction-text h4 {
    color: #8B0000;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.instruction-text p {
    color: #666;
    line-height: 1.6;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.document-category {
    background: rgba(139, 0, 0, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
}

.document-category h4 {
    color: #8B0000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.document-category ul {
    list-style: none;
    padding: 0;
}

.document-category li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
}

.document-category li:last-child {
    border-bottom: none;
}

.document-requirements {
    background: rgba(139, 0, 0, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
}

.document-requirements h4 {
    color: #8B0000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.document-requirements ul {
    list-style: none;
    padding: 0;
}

.document-requirements li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
}

.document-requirements li:last-child {
    border-bottom: none;
}

/* Process Steps */
.process-steps {
    display: grid;
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(139, 0, 0, 0.05);
    border-radius: 15px;
    border-left: 4px solid #8B0000;
}

.process-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.process-text h4 {
    color: #8B0000;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.process-text p {
    color: #666;
    line-height: 1.6;
}

/* Agreement */
.agreement-section {
    margin-top: 2rem;
}

.agreement-card {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, rgba(139, 0, 0, 0.1) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.agreement-card h3 {
    color: #8B0000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.agreement-text {
    margin-bottom: 1.5rem;
}

.agreement-text p {
    color: #666;
    line-height: 1.6;
}

/* Form Elements */
.admission-form {
    display: flex;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B0000;
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Parent Sections */
.parent-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(139, 0, 0, 0.05);
    border-radius: 15px;
}

.parent-section h4 {
    color: #8B0000;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.parent-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #8B0000;
}

/* Upload Area */
.upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.upload-item {
    background: rgba(139, 0, 0, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px dashed rgba(139, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.upload-item:hover {
    border-color: #8B0000;
    background: rgba(139, 0, 0, 0.08);
}

.upload-label {
    font-weight: 600;
    color: #8B0000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.upload-area input[type="file"] {
    display: none;
}

.upload-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    min-height: 150px;
}

.upload-button:hover {
    border-color: #8B0000;
    background: rgba(139, 0, 0, 0.05);
}

.upload-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.upload-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.upload-info {
    color: #999;
    font-size: 0.8rem;
    text-align: center;
}

.file-selected .upload-text {
    color: #8B0000;
    font-weight: 600;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #8B0000;
    border-radius: 4px;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom {
    background: #8B0000;
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-prev,
.btn-next {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-prev {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e0e0e0;
}

.btn-prev:hover {
    background: #e9ecef;
    border-color: #ccc;
}

.btn-next {
    background: linear-gradient(135deg, #8B0000 0%, #6B0000 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

/* Success Card */
.success-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.1);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease;
}

.success-card h3 {
    color: #8B0000;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.registration-details {
    background: rgba(139, 0, 0, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: left;
}

.registration-details h4 {
    color: #8B0000;
    margin-bottom: 1rem;
}

.registration-details ul {
    list-style: none;
    padding: 0;
}

.registration-details li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
}

.registration-details li:last-child {
    border-bottom: none;
}

.contact-info {
    background: rgba(139, 0, 0, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.contact-info h4 {
    color: #8B0000;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    margin: 0.5rem 0;
}

.btn-primary {
    background: linear-gradient(135deg, #8B0000 0%, #6B0000 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

/* Admission Form Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* Admission Form Mobile Responsive */
@media (max-width: 768px) {
    .admission-form-section {
        padding: 60px 0;
    }

    .form-header .section-title {
        font-size: 2rem;
    }

    .progress-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .step {
        margin: 0 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.8rem;
    }

    .section-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .upload-grid {
        grid-template-columns: 1fr;
    }

    .form-navigation {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .btn-prev,
    .btn-next {
        width: 100%;
    }

    .success-card {
        padding: 2rem;
    }

    .success-icon {
        font-size: 3rem;
    }

    .success-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .admission-form-section {
        padding: 40px 0;
    }

    .form-header .section-title {
        font-size: 1.8rem;
    }

    .section-card {
        padding: 1rem;
    }

    .instruction-item,
    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .instruction-icon,
    .process-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

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

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(139, 0, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(139, 0, 0, 0.8);
    }
}

/* NEW ABOUT SECTION STYLES - BROWNING.EDU INSPIRED */
.about-section-new {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.about-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 2;
}

.about-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-left-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-header h6 {
    color: #8B0000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

.about-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.about-header p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0 0 30px 0;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8B0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    gap: 12px;
    color: #660000;
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #8B0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 18px;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.about-right-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.image-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: scale(1.02);
}

.main-image {
    grid-row: span 2;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-container-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-header h1 {
        font-size: 36px;
    }

    .image-grid {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-section-new {
        padding: 60px 0;
    }

    .about-header h1 {
        font-size: 28px;
    }

    .about-header h6 {
        font-size: 12px;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 16px;
    }

    .feature-content h3 {
        font-size: 16px;
    }

    .feature-content p {
        font-size: 13px;
    }

    .image-grid {
        height: 300px;
        gap: 15px;
    }

    .image-item {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .about-section-new {
        padding: 40px 0;
    }

    .about-left-content {
        gap: 30px;
    }

    .about-header h1 {
        font-size: 24px;
    }

    .about-header p {
        font-size: 15px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }

    .image-grid {
        height: 250px;
        gap: 10px;
    }
}

/* NEW FACILITIES SECTION STYLES - BROWNING.EDU INSPIRED */
.facilities-section-new {
    padding: 80px 0;
    background: #8B0000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.facilities-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.facilities-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    position: relative;
    height: 400px;
}

.facility-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.facility-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.facility-card-new {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 600px;
    width: 100%;
}

.facility-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.facility-card-new img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.facility-card-new:hover img {
    transform: scale(1.05);
}

.facility-card-new h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.facility-card-new:hover h3 {
    background: linear-gradient(to top, rgba(139, 0, 0, 0.9), transparent);
    padding-bottom: 25px;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8B0000;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Slider Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ffffff;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive Design for Facilities Section */
@media (max-width: 968px) {
    .facilities-slider {
        height: 350px;
    }

    .facility-card-new img {
        height: 350px;
    }

    .facility-card-new h3 {
        font-size: 20px;
        padding: 25px 15px 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .facilities-section-new {
        padding: 60px 0;
    }

    .facilities-slider {
        height: 300px;
    }

    .facility-card-new img {
        height: 300px;
    }

    .facility-card-new h3 {
        font-size: 18px;
        padding: 20px 15px 15px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .facilities-section-new {
        padding: 40px 0;
    }

    .facilities-slider {
        height: 250px;
    }

    .facility-card-new img {
        height: 250px;
    }

    .facility-card-new h3 {
        font-size: 16px;
        padding: 20px 10px 15px;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }

    .slider-indicators {
        gap: 8px;
        margin-top: 20px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* NEW TESTIMONIALS SECTION STYLES - LEPORT SCHOOLS INSPIRED */
.testimonials-section-new {
    padding: 80px 0;
    background: #8B0000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    /* Prevent horizontal scroll on page */
}

.testimonials-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 60px 0;
    position: relative;
    z-index: 2;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
    opacity: 0.8;
}

.testimonials-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    /* Increased padding for buttons */
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    height: auto;
}

.testimonial-slide {
    min-width: 100%;
    /* Full width of slider wrapper */
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 0;
    /* Space for shadows */
}

.testimonial-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    z-index: 5;
}

.testimonial-group {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 40px;
    /* Space between cards */
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: calc(50% - 20px);
    /* Exact calculation */
    text-align: center;
    min-height: 350px;
    position: relative;
    border-bottom: 4px solid #ffc107;
    /* Warning yellow accent */
}

.testimonial-image-wrapper {
    flex-shrink: 0;
    position: relative;
    margin-top: -60px;
    /* Negative margin to pull image up */
    margin-bottom: 10px;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.testimonial-content {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #8B0000;
    margin: 10px 0 15px 0;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 20px 0;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 15px;
    width: 100%;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 3px 0;
}

.testimonial-author p {
    font-size: 13px;
    color: #777;
    margin: 0;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonial Slider Controls */
.testimonial-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #8B0000;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.testimonial-slider-btn:hover {
    background: #ffc107;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-slider-btn.prev-btn {
    left: 10px;
    /* Inside the section padding */
}

.testimonial-slider-btn.next-btn {
    right: 10px;
    /* Inside the section padding */
}

/* Testimonial Slider Indicators */
.testimonial-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.testimonial-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicator.active {
    background: #ffffff;
    transform: scale(1.2);
}

.testimonial-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive Design for Testimonials Section */
@media (max-width: 968px) {
    .testimonials-slider {
        height: auto;
    }

    .testimonial-group {
        flex-direction: column;
        gap: 50px;
        /* More space for vertical stacking */
    }

    .testimonial-card {
        width: 100%;
        margin: 0;
        min-height: auto;
    }

    .testimonial-image-wrapper {
        margin-top: -50px;
    }

    .testimonials-slider-container {
        padding: 0 20px;
    }

    .testimonial-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        top: auto;
        bottom: -60px;
        /* Move buttons below on mobile if needed, or keep centered */
        transform: none;
    }

    .testimonial-slider-btn.prev-btn {
        left: 30%;
        top: 102%;
    }

    .testimonial-slider-btn.next-btn {
        right: 30%;
        top: 102%;
    }

    .testimonial-slider-indicators {
        margin-top: 80px;
    }
}

/* ORPHANED CODE REMOVED
width: 150px;
height: 150px;
*/

.testimonial-content h3 {
    font-size: 24px;
}

.testimonial-content p {
    font-size: 15px;
}

.testimonial-slider-btn.prev-btn {
    left: 10px;
}

.testimonial-slider-btn.next-btn {
    right: 10px;
}


@media (max-width: 768px) {
    .testimonials-section-new {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .testimonials-slider {
        height: 500px;
    }

    .testimonial-card {
        padding: 25px;
        gap: 25px;
    }

    .testimonial-image {
        width: 120px;
        height: 120px;
    }

    .testimonial-content h3 {
        font-size: 20px;
    }

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

    .testimonial-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .testimonials-section-new {
        padding: 40px 0;
    }

    .testimonials-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .testimonials-slider {
        height: 550px;
    }

    .testimonial-card {
        padding: 20px;
        gap: 20px;
    }

    .testimonial-image {
        width: 100px;
        height: 100px;
        border-width: 4px;
    }

    .testimonial-content h3 {
        font-size: 18px;
    }

    .testimonial-content p {
        font-size: 13px;
    }

    .testimonial-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .testimonial-slider-btn.prev-btn {
        left: 5px;
    }

    .testimonial-slider-btn.next-btn {
        right: 5px;
    }

    .testimonial-slider-indicators {
        gap: 8px;
        margin-top: 30px;
    }

    .testimonial-indicator {
        width: 10px;
        height: 10px;
    }
}

/* JOIN US SECTION STYLES - LEPORT SCHOOLS INSPIRED */
.join-us-section {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.join-us-background {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.join-us-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.join-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 2;
}

.join-us-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    height: 100%;
    min-height: 400px;
}

.join-us-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    text-shadow: none;
}

.join-us-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 40px 0;
    max-width: 600px;
    text-shadow: none;
}

.join-us-btn {
    display: inline-block;
    background: #8B0000;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.join-us-btn:hover {
    background: #660000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

/* Responsive Design for Join Us Section */
@media (max-width: 768px) {
    .join-us-content {
        padding: 60px 20px;
    }

    .join-us-content h2 {
        font-size: 36px;
    }

    .join-us-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .join-us-btn {
        padding: 14px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .join-us-content {
        padding: 40px 20px;
    }

    .join-us-content h2 {
        font-size: 28px;
    }

    .join-us-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .join-us-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* NEW ACHIEVEMENTS SECTION STYLES - PROFESSIONAL MODERN DESIGN */
.achievements-section-new {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.15);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.achievements-background {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
}

.achievements-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.3) blur(2px);
    transform: scale(1.1);
}

.achievements-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    backdrop-filter: blur(8px);
}

.achievements-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(139, 0, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 0, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.04) 0%, transparent 70%);
    z-index: 1;
}

.achievements-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, transparent 30%, rgba(139, 0, 0, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(139, 0, 0, 0.015) 50%, transparent 70%);
    z-index: 2;
}

.achievements-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    height: 100%;
    min-height: 280px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

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

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

.achievement-item-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.achievement-item-new::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(139, 0, 0, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: -1;
}

.achievement-item-new:hover::before {
    width: 200px;
    height: 200px;
}

.achievement-item-new:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 30%;
    bottom: 30%;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.achievement-item-new h3 {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    50% {
        opacity: 1;
        transform: translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.achievement-item-new h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B0000, #6B0000);
    transform: translateX(-50%);
    transition: all 0.4s ease;
    border-radius: 2px;
}

.achievement-item-new:hover h3::after {
    width: 60px;
}

.achievement-item-new p {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    max-width: 200px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.achievement-item-new:hover {
    transform: translateY(-5px);
}

.achievement-item-new:hover h3 {
    color: #fff;
    transform: scale(1.05);
}

.achievement-item-new:hover p {
    color: #fff;
}

/* Responsive Design for Achievements Section */
@media (max-width: 968px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .achievement-item-new {
        padding: 30px 15px;
    }

    .achievement-item-new:not(:last-child)::after {
        display: none;
    }

    .achievement-item-new:nth-child(odd)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 10%;
        bottom: 10%;
        width: 1px;
        background: rgba(139, 0, 0, 0.3);
    }

    .achievement-item-new:nth-child(1)::after,
    .achievement-item-new:nth-child(2)::after {
        display: block;
    }

    .achievement-item-new h3 {
        font-size: 42px;
    }

    .achievement-item-new p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .achievements-content {
        padding: 40px 20px;
    }

    .achievement-item-new {
        padding: 25px 10px;
    }

    .achievement-item-new h3 {
        font-size: 36px;
    }

    .achievement-item-new p {
        font-size: 13px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
    }

    .achievements-content {
        padding: 30px 15px;
    }

    .achievement-item-new {
        padding: 20px 10px;
    }

    .achievement-item-new:not(:last-child)::after {
        display: none;
    }

    .achievement-item-new h3 {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .achievement-item-new p {
        font-size: 12px;
        max-width: 120px;
    }
}

/* Teaching Staff Table Styles */
.staff-table-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-top: 15px;
}

.staff-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.staff-table th {
    background: linear-gradient(135deg, #8B0000 0%, #6B0000 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.staff-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #333;
}

.staff-table tr:last-child td {
    border-bottom: none;
}

.staff-table tr:hover {
    background: #f8f9fa;
}

.staff-table tr:nth-child(even) {
    background: #fafbfc;
}

.staff-table tr:nth-child(even):hover {
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .staff-table-container {
        overflow-x: auto;
    }

    .staff-table {
        min-width: 600px;
    }

    .staff-table th,
    .staff-table td {
        padding: 10px;
        font-size: 12px;
    }
}

/* School Management Committee Styles */
.smc-info {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-top: 15px;
}

.smc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.smc-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.smc-item strong {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.smc-item span {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .smc-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .smc-item {
        padding: 12px;
    }

    .smc-item strong {
        font-size: 13px;
    }

    .smc-item span {
        font-size: 14px;
    }
}

/* Scroll Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-right {
    animation: slideInRight 0.8s ease-out forwards;
}

/* Apply animations to specific sections */
.disclosure-fee,
.disclosure-teaching-staff,
.disclosure-smc,
.disclosure-documents {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.disclosure-fee.visible,
.disclosure-teaching-staff.visible,
.disclosure-smc.visible,
.disclosure-documents.visible {
    opacity: 1;
}

/* Alternating left-right animations */
.disclosure-fee.visible,
.disclosure-smc.visible {
    animation: slideInLeft 0.8s ease-out forwards;
}

.disclosure-teaching-staff.visible,
.disclosure-documents.visible {
    animation: slideInRight 0.8s ease-out forwards;
}

/* All Pages Scroll Animations */
.about-section,
.mission-section,
.team-section,
.contact-section,
.career-section,
.gallery-section,
.academics-section {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.about-section.visible,
.mission-section.visible,
.team-section.visible,
.contact-section.visible,
.career-section.visible,
.gallery-section.visible,
.academics-section.visible {
    opacity: 1;
}

/* Alternating animations for all pages */
.about-section.visible,
.contact-section.visible,
.gallery-section.visible {
    animation: slideInLeft 0.8s ease-out forwards;
}

.mission-section.visible,
.team-section.visible,
.career-section.visible,
.academics-section.visible {
    animation: slideInRight 0.8s ease-out forwards;
}

/* ==========================
   MODERN HEADER & FULL-SCREEN MENU
   ========================== */

/* Modern Header Container */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modern-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease;
}

.modern-header.scrolled .header-container {
    padding: 10px 30px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-logo a {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 55px;
    transition: height 0.3s ease;
}

.modern-header.scrolled .header-logo img {
    height: 45px;
}

.header-contact {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.header-contact-item i {
    color: #8B0000;
    font-size: 16px;
}

.header-contact-item:hover {
    color: #8B0000;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-social {
    display: flex;
    gap: 10px;
}

.header-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #8B0000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.header-social a:hover {
    background: #6B0000;
    transform: translateY(-2px);
}

.menu-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B0000, #6B0000);
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(139, 0, 0, 0.3);
}

.menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Full-Screen Menu Overlay */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, #a00000 0%, #4a0000 100%);
    /* Richer depth */
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(5px);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu-content {
    max-width: 800px;
    width: 90%;
    text-align: center;
    max-height: 100vh;
    overflow-y: auto;
    /* Allow scroll if needed on small screens */
    padding: 20px 0;
}

/* Custom Scrollbar for menu */
.fullscreen-menu-content::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* Tighter gap */
}

.menu-nav>li {
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.fullscreen-menu.active .menu-nav>li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.fullscreen-menu.active .menu-nav>li:nth-child(1) {
    transition-delay: 0.05s;
}

.fullscreen-menu.active .menu-nav>li:nth-child(2) {
    transition-delay: 0.1s;
}

.fullscreen-menu.active .menu-nav>li:nth-child(3) {
    transition-delay: 0.15s;
}

.fullscreen-menu.active .menu-nav>li:nth-child(4) {
    transition-delay: 0.2s;
}

.fullscreen-menu.active .menu-nav>li:nth-child(5) {
    transition-delay: 0.25s;
}

.fullscreen-menu.active .menu-nav>li:nth-child(6) {
    transition-delay: 0.3s;
}

.fullscreen-menu.active .menu-nav>li:nth-child(7) {
    transition-delay: 0.35s;
}

.fullscreen-menu.active .menu-nav>li:nth-child(8) {
    transition-delay: 0.4s;
}

.fullscreen-menu.active .menu-nav>li:nth-child(9) {
    transition-delay: 0.45s;
}

.menu-nav>li>a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    /* Slightly smaller for elegance */
    font-weight: 700;
    display: inline-block;
    padding: 8px 20px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-nav>li>a::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: #ffc107;
    /* Gold accent */
    transition: transform 0.3s ease;
}

.menu-nav>li>a:hover::before,
.menu-nav>li>a.active::before {
    transform: translateX(-50%) scaleX(1);
}

.menu-nav>li>a:hover {
    color: #ffc107;
    /* Gold on hover */
    transform: translateY(-2px);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Submenu in fullscreen */
.menu-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, background-color 0.4s ease;
    background: rgba(0, 0, 0, 0);
    /* Subtle dark background for submenu */
    border-radius: 8px;
    width: fit-content;
    margin: 0 auto;
}

.menu-nav>li.has-submenu.active .menu-submenu {
    max-height: 400px;
    padding: 5px 0 10px 0;
    background: rgba(0, 0, 0, 0.1);
}

.menu-submenu li {
    margin: 2px 0;
}

.menu-submenu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 8px 25px;
    transition: all 0.3s ease;
    text-transform: none;
    /* Keep submenu normal case */
    letter-spacing: 0.5px;
}

.menu-submenu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.submenu-toggle {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin-left: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-nav>li.has-submenu.active .submenu-toggle {
    transform: rotate(180deg);
    color: #ffc107;
}

/* Menu Search */
.menu-search {
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.6s;
    margin-bottom: 20px;
}

.fullscreen-menu.active .menu-search {
    opacity: 1;
    transform: translateY(0);
}

.menu-search input {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 50px;
    width: 100%;
    max-width: 400px;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
}

.menu-search input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.menu-search input:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffc107;
}

/* Hide social links in menu */
.menu-social {
    display: none !important;
}

/* Body padding for fixed header */
body.has-modern-header {
    padding-top: 85px;
}

body.has-modern-header.menu-open {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-contact {
        display: none;
    }

    .menu-nav>li>a {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .header-social {
        display: none;
    }

    .header-container {
        padding: 12px 20px;
    }

    .modern-header.scrolled .header-container {
        padding: 8px 20px;
    }

    .header-logo img {
        height: 45px;
    }

    .modern-header.scrolled .header-logo img {
        height: 38px;
    }

    .menu-nav>li>a {
        font-size: 24px;
        padding: 12px 20px;
    }

    .menu-submenu a {
        font-size: 18px;
    }


    body.has-modern-header {
        padding-top: 70px;
    }
}

/* Page Hero Section */
/* Page Hero Section */
.page-hero {
    background: linear-gradient(300deg, #8B0000, #500000, #8B0000);
    background-size: 200% 200%;
    background-position: 0% 50%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
    /* Reduced padding to ensure vertical centering */
    color: white;
    transition: background-position 0.8s ease;
}

.page-hero:hover {
    background-position: 100% 50%;
}

@media (max-width: 768px) {

    /* Standardized Mobile Typography */
    h1 {
        font-size: 28px !important;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    h4 {
        font-size: 18px !important;
    }

    h5 {
        font-size: 16px !important;
    }

    h6 {
        font-size: 14px !important;
    }

    p,
    li,
    a {
        font-size: 15px !important;
        line-height: 1.6;
    }

    .page-hero {
        min-height: 80px;
        /* Aggressively reduced */
        padding: 10px;
    }

    .page-hero h1 {
        font-size: 22px !important;
        margin-bottom: 2px;
    }

    .hero-breadcrumbs {
        font-size: 13px;
    }

    /* Inner Page Layout Mobile Fix */
    .contact-container {
        flex-direction: column !important;
        padding: 0 15px !important;
        gap: 30px !important;
    }

    .contact-left,
    .contact-right {
        width: 100% !important;
        flex: none !important;
    }

    .contact-right {
        order: 2;
        /* Ensure sidebar comes after content */
        margin-top: 20px;
    }

    .contact-sidebar-box {
        padding: 20px;
        background: #f9f9f9;
        border-radius: 10px;
    }
}


.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
}

.page-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 20px;
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.hero-breadcrumbs a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-breadcrumbs a:hover {
    color: #ffc107;
}

.hero-breadcrumbs span {
    color: rgba(255, 255, 255, 0.7);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}


.wave-container {
    display: none;
    /* User requested removal */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-animation {
    display: block;
    width: 200%;
    height: 30px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,432.84,90.84C191.52,127.87,146.92,16.73,8.08,41.25V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="%23ffffff" opacity="0.1"></path></svg>');
    background-size: 50% 100%;
    animation: moveWave 15s linear infinite;
}

@keyframes moveWave {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 300px;
        padding: 80px 20px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero p {
        font-size: 16px;
    }
}