@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    box-sizing: border-box;
    margin: 1px;
    padding: 0;
    text-transform: capitalize;
}

body {
    background: rgb(159 156 135 / 95%);
    font-family: "Merriweather", serif;
    margin: 0;
    padding-top: 0;
    background: #ffffff;
}

/* ==================== MODERN RESPONSIVE NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
    padding: 0.5rem 0;
}

.navbar.scrolled {
    background: rgb(159 156 135 / 95%);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.3rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo img {
    width: 60px;
    height: auto;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.navbar.scrolled .logo img {
    width: 45px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #600081;
    font-family: "Ubuntu", serif;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-text {
    font-size: 1.5rem;
}

/* Navigation Items - Desktop */
.nav_items {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.items {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav_items li {
    list-style: none;
}

.nav-link {
    display: inline-block;
    padding: 0.7rem 1.2rem;
    color: #464620;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 2.4rem);
    height: 2px;
    background: #600081;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: #600081;
}

/* Hamburger Menu */
.nav_menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #600081;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Nav Close Button (Mobile) */
.nav-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #600081;
    cursor: pointer;
    z-index: 1002;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media screen and (max-width: 992px) {
    .nav-container {
        padding: 0.8rem 1.5rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo img {
        width: 45px;
    }

    .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 768px) {
    .nav_menu {
        display: block;
    }

    .nav-close {
        display: block;
    }

    .nav_items {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgb(224, 161, 161);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav_items.active {
        right: 0;
    }

    .items {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 10px;
        background: #f8f8f8;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: #e1e1ce;
        color: #600081;
    }

    /* Overlay when menu is open */
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        transition: opacity 0.3s ease;
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0.5rem 1rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo img {
        width: 40px;
    }

    .nav_items {
        width: 85%;
        padding: 70px 20px 20px;
    }

    .nav-link {
        padding: 0.8rem;
        font-size: 1rem;
    }
}

/* ==================== HERO SECTION ==================== */
.main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    padding: 12em 2em 4em 2em;
    margin: auto;
    background: linear-gradient(135deg, #e1e1ce 0%, #4c3e15 100%);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.main h1 {
    font-size: 3.5em;
    color: #600081;
    line-height: 1.5;
    padding: 2% 0;
    position: relative;
    z-index: 1;
}

.left h3 {
    font-size: 14px;
    color: #464620;
    position: relative;
    z-index: 1;
}

.left p {
    font-size: 14px;
    line-height: 1.5rem;
    padding: 4% 0;
    color: #464620;
    position: relative;
    z-index: 1;
}

.right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.right img {
    width: 650px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(96, 0, 129, 0.2));
}

.btn {
    padding: 12px 25px;
    background-color: #600081;
    color: #f5f57b;
    font-weight: 600;
    font-size: 25px;
    border-radius: 25px;
    border: 2px solid #600081;
    transition: all 0.5s linear;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.btn:hover {
    background-color: transparent;
    color: #600081;
    border-color: #600081;
}

/* ==================== FEATURES SECTION ==================== */
.sec {
    width: auto;
    margin: auto;
    text-align: center;
    padding: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3em;
}

.section-subtitle {
    color: #600081;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.heading {
    color: #600081;
    font-size: 3em;
    letter-spacing: 1px;
    padding-bottom: 12px;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.title-decoration .line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #f5f57b, #600081);
}

.title-decoration i {
    color: #f5f57b;
    font-size: 1.2em;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.para {
    font-size: 14px;
    color: #555;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 4em 0;
    perspective: 1000px;
}

.feature-card {
    height: 350px;
    cursor: pointer;
    position: relative;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.feature-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-front {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #f5f57b;
}

.card-back {
    background: linear-gradient(135deg, #600081, #8200b3);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon i {
    font-size: 3em;
    color: #600081;
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-bg {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #f5f57b;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-title {
    font-size: 1.5em;
    color: #464620;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-stats {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.card-stats span {
    background: #f5f57b;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    color: #600081;
    font-weight: 600;
}

.learn-more {
    color: #f5f57b;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    transition: gap 0.3s ease;
}

.learn-more:hover {
    gap: 10px;
}

.floating-stats {
    display: flex;
    justify-content: space-around;
    background: white;
    padding: 2em;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(96, 0, 129, 0.1);
    margin-top: 3em;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #600081;
    line-height: 1;
}

.stat-item span {
    color: #464620;
    font-size: 0.9em;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.about-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4em;
    align-items: center;
    margin: 3em 0;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.item1 {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(96, 0, 129, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid-item:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.grid-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 2em;
    margin-bottom: 10px;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #e1e1e1;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.experience-badge .years {
    font-size: 2em;
    font-weight: 700;
    color: #600081;
}

.experience-badge .text {
    font-size: 0.8em;
    text-align: center;
    color: #464620;
}

.about-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid #f5f57b;
    color: #464620;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: #f5f57b;
    color: #600081;
}

.tab-content {
    margin-bottom: 30px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-text {
    font-size: 1.2em;
    color: #600081;
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
}

.achievement-list {
    list-style: none;
}

.achievement-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.achievement-list i {
    color: #f5f57b;
    font-weight: bold;
}

.features-list {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #f5f57b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon i {
    color: #600081;
    font-size: 1.2em;
}

.feature-text h4 {
    color: #464620;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.feature-text p {
    color: #777;
    font-size: 0.9em;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.primary-btn {
    background: #600081;
    color: #f5f57b;
    border: 2px solid #600081;
}

.secondary-btn {
    background: transparent;
    color: #600081;
    border: 2px solid #600081;
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(96, 0, 129, 0.3);
}

.courses-section {
    margin-top: 5em;
}

.subheading {
    font-size: 2em;
    color: #600081;
    text-align: center;
    margin-bottom: 2em;
    position: relative;
}

.subheading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #f5f57b;
}

.course-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: white;
    padding: 2em;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f5f57b;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(96, 0, 129, 0.2);
}

.course-icon {
    width: 80px;
    height: 80px;
    background: #f5f57b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.course-icon i {
    font-size: 2.5em;
    color: #600081;
}

.course-card h3 {
    color: #464620;
    margin-bottom: 10px;
}

.course-card p {
    color: #777;
    margin-bottom: 15px;
}

.course-levels {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.course-levels span {
    background: #f0f0f0;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    color: #464620;
}

/* ==================== VISION MISSION MOTTO SECTION ==================== */
.vision-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
    padding: 5em 0;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(245, 245, 123, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.vision-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(96, 0, 129, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.vision-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 4em auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.vision-card {
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.vision-card:hover {
    transform: translateY(-15px);
    border-color: #f5f57b;
    box-shadow: 0 30px 50px rgba(96, 0, 129, 0.2);
}

/* Individual card styles */
.vision-card.vision {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.vision-card.mission {
    background: linear-gradient(135deg, #600081, #301e48);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(96, 0, 129, 0.3);
}

.vision-card.mission h2,
.vision-card.mission p,
.vision-card.mission li {
    color: white;
}

.vision-card.mission .mission-list i {
    color: #f5f57b;
}

.vision-card.motto {
    background: linear-gradient(135deg, #f5f57b, #6d654f);
}

.vision-card.motto h2,
.vision-card.motto p,
.vision-card.motto h4 {
    color: #600081;
}

.vision-card.motto .motto-quote i {
    color: #600081;
    opacity: 0.5;
}

.vision-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-icon i {
    font-size: 3.5em;
    color: #600081;
    z-index: 2;
    transition: all 0.3s ease;
}

.vision-card.mission .vision-icon i {
    color: #f5f57b;
}

.vision-card.motto .vision-icon i {
    color: #600081;
}

.icon-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #f5f57b;
    border-radius: 50%;
    opacity: 0.2;
    animation: pulseGlow 2s ease-in-out infinite;
}

.vision-card.mission .icon-glow {
    background: white;
    opacity: 0.3;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.vision-card h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.vision-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #f5f57b;
    border-radius: 3px;
}

.vision-card.mission h2::after {
    background: white;
}

.vision-card.motto h2::after {
    background: #600081;
}

.vision-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1em;
    margin-bottom: 25px;
}

.vision-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.vision-stats span {
    background: #f5f57b;
    color: #600081;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vision-stats span:hover {
    transform: scale(1.05);
    background: #600081;
    color: #f5f57b;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
    text-align: left;
}

.mission-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-list li:last-child {
    border-bottom: none;
}

.mission-list i {
    color: #f5f57b;
    font-size: 1.2em;
    font-weight: bold;
}

.motto-content {
    margin: 25px 0;
}

.motto-quote {
    position: relative;
    padding: 20px 0;
    margin-bottom: 25px;
}

.motto-quote p {
    font-size: 1.8em;
    font-weight: 700;
    color: #600081;
    line-height: 1.4;
    margin: 15px 0;
}

.motto-quote i {
    font-size: 2em;
    color: #600081;
    opacity: 0.3;
}

.motto-quote i:first-child {
    position: absolute;
    top: 0;
    left: 0;
}

.motto-quote i:last-child {
    position: absolute;
    bottom: 0;
    right: 0;
}

.motto-meaning {
    text-align: left;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.motto-meaning h4 {
    color: #600081;
    font-size: 1.2em;
    margin: 10px 0 5px;
}

.motto-meaning h4:first-child {
    margin-top: 0;
}

.motto-meaning p {
    color: #555;
    font-size: 0.95em;
    margin-bottom: 10px;
}

.motto-badge {
    margin-top: 25px;
}

.motto-badge span {
    background: white;
    color: #600081;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 1em;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Core Values Strip */
.core-values {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 3em auto 0;
    padding: 30px 20px;
    background: white;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(96, 0, 129, 0.1);
    position: relative;
    z-index: 1;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #f5f57b, #625734);
    border-radius: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.value-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(96, 0, 129, 0.2);
    background: #600081;
}

.value-item:hover i,
.value-item:hover span {
    color: #f5f57b;
}

.value-item i {
    font-size: 1.2em;
    color: #600081;
    transition: color 0.3s ease;
}

.value-item span {
    color: #600081;
    font-weight: 600;
    font-size: 1em;
    transition: color 0.3s ease;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .vision-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .vision-card.mission {
        transform: scale(1);
        grid-column: span 2;
        order: -1;
    }

    .core-values {
        gap: 15px;
        padding: 20px;
        border-radius: 30px;
    }
}

@media screen and (max-width: 768px) {
    .vision-container {
        grid-template-columns: 1fr;
    }

    .vision-card.mission {
        grid-column: span 1;
    }

    .core-values {
        flex-direction: column;
        align-items: center;
        border-radius: 20px;
    }

    .value-item {
        width: 100%;
        justify-content: center;
    }

    .motto-quote p {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 480px) {
    .vision-card {
        padding: 30px 20px;
    }

    .vision-card h2 {
        font-size: 1.8em;
    }

    .vision-stats {
        flex-wrap: wrap;
    }
}

/* ==================== NEWS & INFO SECTION ==================== */
.news-info-section {
    padding: 5em 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.news-info-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(245, 245, 123, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.news-info-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgba(96, 0, 129, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.news-info-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 3em auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.info-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 245, 123, 0.3);
    position: relative;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(96, 0, 129, 0.15);
    border-color: #f5f57b;
}

.card-header {
    background: linear-gradient(135deg, #600081, #8200b3);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.card-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(245, 245, 123, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.header-icon {
    width: 50px;
    height: 50px;
    background: #f5f57b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon i {
    font-size: 1.5em;
    color: #600081;
}

.card-title {
    color: white;
    font-size: 1.3em;
    font-weight: 600;
    flex: 1;
}

.card-badge {
    background: #f5f57b;
    color: #600081;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
}

.card-content {
    padding: 25px;
}

.card-footer {
    background: #f8f8f8;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #eee;
    color: #777;
    font-size: 0.9em;
}

.card-footer i {
    color: #f5f57b;
}

.news-ticker {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #f8f8f8;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid #f5f57b;
}

.ticker-item:hover {
    background: #f5f57b;
    transform: translateX(5px);
}

.ticker-date {
    font-weight: 600;
    color: #600081;
    min-width: 60px;
}

.ticker-title {
    flex: 1;
    color: #464620;
}

.ticker-badge {
    background: white;
    color: #600081;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #600081;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: gap 0.3s ease;
}

.view-all-link:hover {
    gap: 10px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f8f8f8;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #f5f57b;
    transition: width 0.3s ease;
}

.event-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(96, 0, 129, 0.1);
}

.event-item:hover::before {
    width: 5px;
}

.event-date-box {
    text-align: center;
    min-width: 60px;
    background: #600081;
    color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(96, 0, 129, 0.2);
}

.event-day {
    font-size: 1.5em;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.event-month {
    font-size: 0.8em;
    text-transform: uppercase;
}

.event-details {
    flex: 1;
}

.event-details h4 {
    color: #464620;
    margin-bottom: 5px;
}

.event-details p {
    color: #777;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 3px 0;
}

.event-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
}

.status-upcoming {
    background: #e3f2fd;
    color: #1976d2;
}

.notice-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f8f8f8;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.notice-item:hover {
    border-color: #f5f57b;
    background: white;
}

.notice-item.urgent {
    background: #fff3e0;
    border-left: 3px solid #ff9800;
}

.notice-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-icon i {
    color: #600081;
}

.notice-content {
    flex: 1;
}

.notice-content h4 {
    color: #464620;
    margin-bottom: 5px;
}

.notice-content p {
    color: #777;
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 5px;
}

.notice-date {
    color: #999;
    font-size: 0.8em;
}

.useful-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.useful-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.useful-item:hover {
    background: white;
    border-color: #f5f57b;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(96, 0, 129, 0.1);
}

.useful-item i:first-child {
    font-size: 1.5em;
    color: #600081;
}

.useful-text {
    flex: 1;
}

.useful-text h4 {
    color: #464620;
    font-size: 0.9em;
    margin-bottom: 3px;
}

.useful-text p {
    color: #777;
    font-size: 0.8em;
}

.download-btn,
.view-btn {
    width: 30px;
    height: 30px;
    background: #f5f57b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #600081;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover,
.view-btn:hover {
    background: #600081;
    color: #f5f57b;
    transform: rotate(360deg);
}

.footer-link {
    color: #600081;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #f5f57b;
}

/* ==================== DIRECTOR SECTION ==================== */
.director-section {
    background: linear-gradient(135deg, #fff9e6 0%, #f0f0f0 100%);
    padding: 5em 0;
}

.director-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4em;
    align-items: center;
    max-width: 1200px;
    margin: 3em auto 0;
    padding: 2em;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.director-image {
    position: relative;
    text-align: center;
}

.director-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(96, 0, 129, 0.2);
    transition: transform 0.3s ease;
    border: 5px solid #f5f57b;
}

.director-image:hover img {
    transform: scale(1.02);
}

.image-border {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 3px dashed #f5f57b;
    border-radius: 30px;
    z-index: -1;
    opacity: 0.5;
}

.director-info {
    text-align: left;
    padding: 1em;
}

.director-name {
    font-size: 2.5em;
    color: #600081;
    margin-bottom: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
}

.director-title {
    font-size: 1.2em;
    color: #464620;
    margin-bottom: 1.5em;
    font-weight: 500;
    padding-bottom: 1em;
    border-bottom: 3px solid #f5f57b;
}

.director-quote {
    margin-bottom: 1.5em;
}

.director-quote i {
    font-size: 3em;
    color: #f5f57b;
    opacity: 0.5;
}

.director-message {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2em;
    font-style: italic;
    padding: 0 1em;
}

.director-signature {
    margin-top: 2em;
    padding-top: 1em;
    border-top: 2px dashed #f5f57b;
}

.signature-name {
    font-size: 1.8em;
    font-weight: 700;
    color: #600081;
    font-family: "Ubuntu", serif;
    margin: 0.2em 0;
}

.director-position {
    color: #464620;
    font-size: 1em;
    font-weight: 500;
}

/* ==================== TRIBUTE SECTION ==================== */
.memory-tribute {
    text-align: center;
    padding: 2em;
    margin: 2em 0;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.memory-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px dashed #f5f57b;
    border-radius: 10px;
    opacity: 0.5;
}

.memory-title {
    color: #600081;
    font-size: 1.2em;
    margin-bottom: 1em;
    position: relative;
    display: inline-block;
    padding: 0 20px;
    background: white;
}

.memory-name {
    font-size: 1.4em;
    color: #464620;
    font-weight: 600;
    margin-bottom: 1em;
}

.memory-message p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 1em;
    padding: 1em;
    background: rgba(245, 245, 123, 0.1);
    border-radius: 5px;
}

.memory-years {
    color: #888;
    font-size: 0.9em;
    margin: 1em 0;
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 3em 0 2em;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid #f5f57b;
    color: #464620;
    font-size: 1em;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #f5f57b;
    color: #600081;
    border-color: #600081;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(96, 0, 129, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(96, 0, 129, 0.9), rgba(245, 245, 123, 0.9));
    color: white;
    padding: 20px;
    transition: bottom 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: white;
    text-transform: uppercase;
}

.gallery-overlay p {
    font-size: 0.9em;
    margin-bottom: 15px;
    opacity: 0.9;
}

.gallery-actions {
    display: flex;
    gap: 15px;
}

.gallery-actions i {
    font-size: 1.2em;
    padding: 8px;
    background: white;
    color: #600081;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-actions i:hover {
    background: #f5f57b;
    color: #600081;
    transform: scale(1.1);
}

.gallery-more {
    text-align: center;
    margin: 3em 0;
}

.load-more {
    background: #600081;
    color: #f5f57b;
    border: 2px solid #600081;
}

.load-more:hover {
    background: transparent;
    color: #600081;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1000px;
    top: 50%;
    transform: translateY(-50%);
}

#lightbox-img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f5f57b;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: #600081;
}

.lightbox-caption {
    text-align: center;
    color: white;
    padding: 20px;
    font-size: 1.2em;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.prev-btn,
.next-btn {
    background: rgba(245, 245, 123, 0.5);
    border: none;
    color: white;
    font-size: 2em;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: #f5f57b;
    color: #600081;
    transform: scale(1.1);
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(245, 245, 123, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(96, 0, 129, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 3em 0;
}

.contact-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f5f57b, #600081);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #f5f57b;
    box-shadow: 0 20px 40px rgba(96, 0, 129, 0.15);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f5f57b, #ffd966);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: rotateY(360deg);
    background: #600081;
}

.contact-icon i {
    font-size: 2em;
    color: #600081;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-icon i {
    color: #f5f57b;
}

.contact-card h3 {
    color: #464620;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.contact-card p {
    color: #555;
    margin: 5px 0;
    font-size: 0.95em;
}

.contact-label {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 15px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 0.8em;
    color: #600081;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 3em 0;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 2em;
    color: #600081;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #f5f57b;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 5px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #464620;
    font-weight: 500;
    font-size: 0.9em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: #f8f8f8;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #600081;
    background: white;
    box-shadow: 0 5px 15px rgba(96, 0, 129, 0.1);
}

.form-group i {
    position: absolute;
    left: 15px;
    bottom: 15px;
    color: #999;
    font-size: 1.2em;
    transition: color 0.3s ease;
    pointer-events: none;
}

.form-group input:focus+i,
.form-group select:focus+i,
.form-group textarea:focus+i {
    color: #600081;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select+i {
    bottom: 15px;
    pointer-events: none;
}

.full-width {
    grid-column: span 2;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #600081;
}

.form-checkbox label {
    color: #555;
    font-size: 0.95em;
    cursor: pointer;
}

.submit-btn {
    background: linear-gradient(135deg, #600081, #8200b3);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: 10px;
}

.submit-btn:hover {
    background: transparent;
    color: #600081;
    border-color: #600081;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(96, 0, 129, 0.2);
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.submit-btn i {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.success-message {
    display: none;
    text-align: center;
    padding: 30px;
    background: #d4edda;
    border-radius: 10px;
    margin-top: 20px;
    animation: slideIn 0.5s ease;
}

.success-message i {
    font-size: 4em;
    color: #28a745;
    margin-bottom: 20px;
}

.success-message h3 {
    color: #155724;
    margin-bottom: 10px;
}

.success-message p {
    color: #155724;
}

.error-message {
    display: none;
    text-align: center;
    padding: 30px;
    background: #ffebee;
    color: #c62828;
    border-radius: 10px;
    margin-top: 20px;
    border: 2px solid #ffcdd2;
    animation: slideIn 0.5s ease;
}

.error-message i {
    font-size: 4em;
    margin-bottom: 20px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    height: fit-content;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.map-overlay h3 {
    color: #600081;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.map-overlay p {
    color: #464620;
    display: flex;
    align-items: center;
    gap: 5px;
}

.map-overlay i {
    color: #f5f57b;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.social-connect {
    text-align: center;
    margin: 4em 0;
}

.social-connect h3 {
    color: #464620;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #600081;
    font-size: 1.5em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.social-link:hover {
    background: #600081;
    color: #f5f57b;
    transform: translateY(-5px) rotate(360deg);
    border-color: #f5f57b;
}

.faq-section {
    margin: 4em 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(96, 0, 129, 0.15);
}

.faq-question {
    padding: 20px;
    background: linear-gradient(135deg, #f5f57b, #ffd966);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    color: #600081;
    font-size: 1.1em;
    margin: 0;
}

.faq-question i {
    color: #600081;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media screen and (max-width: 1200px) {
    .director-container {
        grid-template-columns: 1fr;
        gap: 2em;
        text-align: center;
    }

    .director-info {
        text-align: center;
    }
}

@media screen and (max-width: 992px) {

    .features-container,
    .course-cards,
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-showcase,
    .contact-main {
        grid-template-columns: 1fr;
    }

    .floating-stats,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .news-info-container {
        grid-template-columns: 1fr;
    }

    .width-33 {
        width: 50%;
    }
}

@media screen and (max-width: 768px) {
    .main {
        grid-template-columns: 1fr;
        padding-top: 8em;
    }

    .navbar {
        padding: 1rem;
    }

    .nav_items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgb(159 156 135 / 95%);
        ;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

    .nav_items.active {
        display: block;
    }

    .nav_items .items {
        flex-direction: column;
    }

    .nav_items li {
        display: block;
        text-align: center;
        padding: 10px;
    }

    .nav_menu {
        display: block !important;
        font-size: 24px;
    }

    .features-container,
    .course-cards,
    .contact-info-grid,
    .box,
    .about_box {
        grid-template-columns: 1fr;
    }

    .width-33,
    .full-width {
        width: 100%;
        grid-column: span 1;
    }

    .heading {
        font-size: 2.5em;
    }

    .mid img,
    .director-image img {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-overlay {
        position: static;
        margin-top: 10px;
    }

    .contact-form-container {
        padding: 20px;
    }

    .event-item {
        flex-wrap: wrap;
    }

    .event-status {
        width: 100%;
        text-align: center;
    }

    .card-header {
        flex-wrap: wrap;
    }

    .card-badge {
        margin-left: auto;
    }

    .director-name {
        font-size: 2em;
    }

    .director-message {
        font-size: 1em;
    }

    .signature-name {
        font-size: 1.5em;
    }

    .close-lightbox {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }

    .lightbox-nav {
        padding: 0 10px;
    }
}

@media screen and (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }

    .ticker-item {
        flex-wrap: wrap;
    }

    .ticker-badge {
        width: 100%;
        text-align: center;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 0.9em;
    }
}

/* Utility Classes */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.margin-top-50 {
    margin-top: 50px;
}

.width-100 {
    width: 100%;
    float: left;
}

.width-33 {
    width: 33.33%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.spinning {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.shake {
    animation: shake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shake {

    10%,
    90% {
        transform: translateX(-1px);
    }

    20%,
    80% {
        transform: translateX(2px);
    }

    30%,
    50%,
    70% {
        transform: translateX(-4px);
    }

    40%,
    60% {
        transform: translateX(4px);
    }
}