@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", serif;
}

a:hover {
    color: #DBA80F !important;
    text-decoration: none !important;
}

body {
    min-height: 100vh;
}

/* New Nav Bar */
.nav-dps-miyapur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #144734 0%, #1a6349 100%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.navbar-dps-miyapur {
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.nav-links-dps-miyapur {
    display: flex;
    align-items: center;
    height: 100%;
    flex: 1;
    justify-content: center;
}

.links-dps-miyapur {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
}

.links-dps-miyapur li {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
}

.links-dps-miyapur li>a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 0.5rem 0.5rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.links-dps-miyapur li>a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.sub-menu-dps-miyapur {
    position: absolute;
    top: 80px;
    left: 0;
    background: #1a5440;
    min-width: 250px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0.5rem 0;
}

.links-dps-miyapur li:hover .sub-menu-dps-miyapur {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu-dps-miyapur li {
    height: auto;
    padding: 0;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.3s ease;
    margin: 2px 0;
}

.links-dps-miyapur li:hover .sub-menu-dps-miyapur li {
    transform: translateX(0);
    opacity: 1;
}

.sub-menu-dps-miyapur li:nth-child(1) {
    transition-delay: 0.1s;
}

.sub-menu-dps-miyapur li:nth-child(2) {
    transition-delay: 0.15s;
}

.sub-menu-dps-miyapur li:nth-child(3) {
    transition-delay: 0.2s;
}

.sub-menu-dps-miyapur li:nth-child(4) {
    transition-delay: 0.25s;
}

.sub-menu-dps-miyapur li:nth-child(5) {
    transition-delay: 0.3s;
}

.sub-menu-dps-miyapur li:nth-child(6) {
    transition-delay: 0.35s;
}

.sub-menu-dps-miyapur li a {
    padding: 0.8rem 1.5rem;
    display: block;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    background: transparent;
    width: 100%;
}

.sub-menu-dps-miyapur li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #a3e0c5;
    border-left: 4px solid #DBA80F;
}

.parent-login-dps-miyapur {
    /* background: rgba(255, 255, 255, 0.15); */
    background: #DBA80F;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 1rem;
}

.parent-login-dps-miyapur:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.parent-login-dps-miyapur svg {
    transition: transform 0.3s ease;
}

.parent-login-dps-miyapur:hover svg {
    transform: scale(1.1);
}

.menu-icon-dps-miyapur {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

@media (max-width: 1200px) {
    .menu-icon-dps-miyapur {
        display: block;
    }

    .nav-links-dps-miyapur {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #144734;
        flex-direction: column;
        padding: 1rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .nav-links-dps-miyapur.active {
        left: 0;
    }

    .links-dps-miyapur {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .links-dps-miyapur li {
        height: auto;
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.4s ease;
    }

    .nav-links-dps-miyapur.active .links-dps-miyapur li {
        opacity: 1;
        transform: translateX(0);
    }

    .sub-menu-dps-miyapur {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        padding: 0;
        background: rgba(26, 84, 64, 0.3);
        border-radius: 4px;
        margin: 0.5rem 0;
        overflow: hidden;
    }

    .sub-menu-dps-miyapur.active {
        display: block;
    }

    .links-dps-miyapur li>a {
        padding: 1rem;
    }

    .sub-menu-dps-miyapur li a {
        padding: 0.8rem 2rem;
    }
}

/* New Nav Bar */

/* nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 70px;
    background: #144734;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

nav .navbar {
    height: 100%;
    max-width: 1250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    padding: 0 50px;
}

.navbar .logo a {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

nav .navbar .nav-links {
    line-height: 70px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0 14px;
}

nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.links li:hover .phpcss-arrow,
.links li:hover .js-arrow {
    transform: rotate(180deg);
}

nav .navbar .links li .arrow {
    height: 100%;
    width: 22px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    color: #fff;
    transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    background: #144734;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
    padding-left: 1px !important;
}

nav .navbar .links li:hover .phpCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
    display: block;
}

.navbar .links li .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
    line-height: 40px;
}

.navbar .links li .phpCss-more-sub-menu {

}

.navbar .links li .sub-menu .more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
    display: block;
}

.navbar .search-box {
    position: relative;
    height: 40px;
    width: 40px;
}

.navbar .search-box i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar .search-box .input-box {
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 60px;
    width: 300px;
    background: #144734;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #144734;
}

.search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #144734;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}

@media (max-width:920px) {
    nav .navbar {
        max-width: 100%;
        padding: 0 25px;
    }

    nav .navbar .logo a {
        font-size: 27px;
    }

    nav .navbar .links li {
        padding: 0 10px;
        white-space: nowrap;
    }

    nav .navbar .links li a {
        font-size: 15px;
    }
}

@media (max-width:800px) {
    nav {
    }

    .navbar .bx-menu {
        display: block;
    }

    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 270px;
        width: 100%;
        background: #144734;
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }

    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 25px;
        color: #fff;
    }

    nav .navbar .links {
        display: block;
        margin-top: 20px;
    }

    nav .navbar .links li .arrow {
        line-height: 40px;
    }

    nav .navbar .links li {
        display: block;
    }

    nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }

    nav .navbar .links li .sub-menu li {
        border-bottom: none;

    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
        position: relative;
        left: 0;
    }

    .navbar .links li .sub-menu .more-sub-menu li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .links li:hover .phpcss-arrow,
    .links li:hover .js-arrow {
        transform: rotate(0deg);
    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
    }

    .navbar .links li .sub-menu .more span {
        display: flex;
        align-items: center;
    }

    .links li .sub-menu .more:hover .more-sub-menu {
        display: none;
    }

    nav .navbar .links li:hover .phpCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu {
        display: none;
    }

    .navbar .nav-links.show1 .links .phpCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu {
        display: block;
    }

    .navbar .nav-links.show1 .links .phpcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width:370px) {
    nav .navbar .nav-links {
        max-width: 100%;
    }
} */

.video-container {
    position: relative !important;
    width: 100% !important;
    /* background: #144734; */
    /*height: 94vh;*/
    /*padding-top: 5%;*/
}

.video-section {
    width: 100%;
    height: 100%;
    padding: 2%;
    position: relative !important;
    border: none !important;
}

.logo-on-video {
    position: absolute;
    top: 12%;
    left: 12.5%;
    transform: translate(-50%, -50%);
    width: 20%;
    z-index: 1;
    pointer-events: none;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 5px;
}

/*  */
.vision-container {
    display: grid;
    grid-template-columns: 63% 36%;
    grid-column-gap: 1%;
}

.vision-left-section {
    background-color: transparent;
    padding: 2%;
    background-image: linear-gradient(174deg, #05110E 6%, #044E3A 72%);
    height: 776px;
}

.vision-right-section {
    height: 470px !important;
    overflow-y: scroll;
    padding: 2%;
    /* background-color: #38B349; */
    background-image: linear-gradient(174deg, #05110E 6%, #044E3A 72%);
}

.vison-heading {
    color: #FFFFFF;
}

.vision-desc {
    color: #FFFFFF;
}

.vision-left-section img {
    width: 80px;
    height: 80px;
}

.vision-right-section h2 {
    font-weight: 600;
    color: white;
    font-size: 26px !important;
    padding-top: 2%;
    padding-left: 2%;
    padding-bottom: 2%;
    border-bottom: 1px solid #ffffff;
}

/*  */
.marquee {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.marquee p {
    margin: 0;
    padding: 10px 0;
    text-align: left;
    color: white;
    animation: marquee-animation 8s linear infinite;
}

@keyframes marquee-animation {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

.news-item img {
    width: 100% !important;
    height: 200px;
    object-fit: fill;
}

.news-items li {
    color: white;
}

.news-items ul {
    list-style-type: none;
    /* Removes default bullets */
    padding: 0;
    margin: 0;
}

.news-items li {
    position: relative;
    padding-left: 25px;
    padding-top: 10px;
    /* Adjust space for the icon */
}

.news-items li::before {
    content: "➼";
    /* Adds the icon before the text */
    position: absolute;
    left: 0;
    padding-top: 6px;
    top: 0;
    font-size: 20px;
    /* Adjust size if needed */
}

.choose-heading {
    padding: 0 10%;
}

.choose-heading h2 {
    font-weight: 900;
}

.why-choose-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    padding: 20px;
}

.why-choose-container a {
    color: #000000;
    text-decoration: none;
}

.why-choose-container a:hover {
    color: #000000 !important;
}

.card {
    background-color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.icon img {
    max-width: 100px;
    width: 25%;
    height: auto;
    margin-bottom: 8%;
}

/* Message */
.messages-tabs {
    width: 100% !important;
    /* max-width: 900px; */
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.tab-header {
    display: flex;
    /* background-color: #f8f9fa; */
    border-bottom: 1px solid #e9ecef;
}

.tab-button {
    flex: 1;
    background-color: transparent;
    border: none;
    padding: 1rem;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.tab-button:hover {
    background-color: rgba(76, 175, 80, 0.1);
}

.tab-button.active {
    color: #4caf50;
    position: relative;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #4caf50;
}

.tab-content {
    padding: 2.5rem;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Message  */

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #144734;
    --background-color: #f4f6f7;
}

.leadership-container {
    /* max-width: 800px; */
    width: 96% !important;
    margin: 0 auto;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tab-section {
    background-color: var(--background-color);
    padding: 10px 0;
}

.tab-headers {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tab-header {
    display: flex;
    align-items: center !important;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    color: var(--secondary-color);
}

.tab-header.active {
    border-bottom-color: var(--accent-color);
    color: var(--primary-color);
}

.tab-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.tab-title {
    font-weight: 600;
}

.content-section {
    padding: 30px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.message-card {
    display: flex;
    /* align-items: center; */
    gap: 30px;
}

.message-image {
    flex: 0 0 250px;
}

.message-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.message-image img:hover {
    transform: scale(1.05);
}

.message-details {
    flex: 1;
}

.message-details p {
    color: #000000 !important;
    /* line-height: 1.6;
    margin-bottom: 20px; */
}

.signature h3 {
    color: #000000;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.signature p {
    color: #000000 !important;
    opacity: 1;
    font-size: 14px;
}

@media (max-width: 768px) {
    .tab-headers {
        flex-direction: column;
        align-items: center;
    }

    .message-card {
        flex-direction: column;
        text-align: center;
    }

    .message-image {
        margin-bottom: 20px;
    }
}

/* Testimonials */
.branches {
    padding: 20px;
}

.branches-container {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

@media(max-width: 768px) {
    .branches-container {
        display: grid;
        grid-template-columns: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .why-choose-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
        padding: 20px;
    }

    .vision-container {
        grid-template-columns: 100% !important;
    }
}

.branch-card {
    background-color: #eafaf4;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    /* width: 300px; */
    text-align: center;
    transition: transform 0.3s ease;
}

.branch-card h2 {
    font-size: 1.5rem;
    color: #2a2a2a;
    margin-bottom: 10px;
}

.branch-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

.branch-card ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.branch-card ul li {
    margin: 5px 0;
    font-size: 0.9rem;
}

.branch-card a {
    text-decoration: none;
    color: #007d75;
    font-weight: bold;
}

.branch-card:hover {
    transform: translateY(-5px);
}

/* Responsive design */
@media (max-width: 768px) {
    .branches-container {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer */
footer {
    /* position: fixed; */
    background: #144734;
    width: 100%;
    /* bottom: 0;
    left: 0; */
}

footer::before {
    content: '';
    position: absolute;
    left: 0;
    top: 100px;
    height: 1px;
    width: 100%;
    /* background: #AFAFB6; */
}

footer .content {
    max-width: 1250px;
    margin: auto;
    /* padding: 30px 40px 40px 40px; */
}

footer .content .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.content .top .logo-details {
    color: #fff;
    font-size: 30px;
    padding-left: 3%;
}


footer .content .link-boxes {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

footer .content .link-boxes .box {
    width: calc(100% / 5 - 10px);
}

.content .link-boxes .box .link_name {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
}

.link-boxes .box .link_name::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 35px;
    background: #fff;
}

.content .link-boxes .box li {
    margin: 6px 0;
    list-style: none;
}

.content .link-boxes .box li a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.4s ease
}

.content .link-boxes .box li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.content .link-boxes .input-box {
    margin-right: 55px;
}

.link-boxes .input-box input {
    height: 40px;
    width: calc(100% + 55px);
    outline: none;
    border: 2px solid #AFAFB6;
    background: transparent;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 15px;
    color: #fff;
    margin-top: 5px;
}

.link-boxes .input-box input::placeholder {
    color: #AFAFB6;
    font-size: 16px;
}

.link-boxes .input-box input[type="button"] {
    background: #fff;
    color: #144734;
    border: none;
    font-size: 18px;
    font-weight: 500;
    margin: 4px 0;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.4s ease;
}

.input-box input[type="button"]:hover {
    opacity: 1;
}

footer .bottom-details {
    width: 100%;
    background: #0F3525;
}

footer .bottom-details .bottom_text {
    max-width: 1250px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
}

.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
}

.bottom-details .bottom_text a:hover {
    opacity: 1;
    text-decoration: underline;
}

.bottom-details .bottom_text a {
    margin-right: 10px;
}

@media (max-width: 900px) {
    footer .content .link-boxes {
        flex-wrap: wrap;
    }

    footer .content .link-boxes .input-box {
        width: 40%;
        margin-top: 10px;
    }
}

@media (max-width: 700px) {
    footer {
        position: relative;
    }

    .content .top .logo-details {
        font-size: 26px;
    }

    .content .top .media-icons a {
        height: 35px;
        width: 35px;
        font-size: 14px;
        line-height: 35px;
    }

    footer .content .link-boxes .box {
        width: calc(100% / 3 - 10px);
    }

    footer .content .link-boxes .input-box {
        width: 60%;
    }

    .bottom-details .bottom_text span,
    .bottom-details .bottom_text a {
        font-size: 12px;
    }
}

@media (max-width: 520px) {
    footer::before {
        top: 145px;
    }

    footer .content .top {
        flex-direction: column;
    }

    .content .top .media-icons {
        margin-top: 16px;
    }

    footer .content .link-boxes .box {
        width: calc(100% / 2 - 10px);
    }

    footer .content .link-boxes .input-box {
        width: 100%;
    }
}

/* Banner Container*/
.breadcrumb-img {
    display: none !important;
}

.breadcrumb-container {
    position: relative;
    background-image: url('assets/images/breadcrumb-banner.png');
    background-size: cover;
    background-position: center;
    height: 240px;
    /* Adjust height as needed */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.breadcrumb-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black overlay with 50% opacity */
    z-index: 1;
}

.breadcrumb-container p {
    padding-top: 70px !important;
}

.breadcrumb-container h3,
.breadcrumb-container p {
    position: relative;
    z-index: 2;
    /* Ensure text is above the overlay */
    margin: 10px 0;
}

.breadcrumb-container a {
    color: white;
    text-decoration: none;
}

.breadcrumb-container a:hover {
    text-decoration: underline;
}

/* VES */
/* Color Theme Variables */
:root {
    --primary-color: #144734;
    --secondary-color: #1e6f50;
    --text-color: #2c3e50;
    --background-light: #f4f6f5;
}

/* VES Container Styles */
.ves-container {
    /*display: grid;*/
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 4rem auto;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(20, 71, 52, 0.1);
    overflow: hidden;
}

.ves-image-container {
    position: relative;
    overflow: hidden;
}

.ves-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ves-content {
    padding: 3rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ves-title {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 0.75rem;
}

.ves-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.ves-description {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
}

.ves-description p {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 30px;
}

.ves-description p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    transform: rotate(45deg);
}

/* Hover Effects */
.ves-image-container:hover .ves-image {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .ves-container {
        grid-template-columns: 1fr;
    }
}

/* Management Committee */
.school-management-table {
    max-width: 800px;
    margin: 2rem auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.table-title {
    background-color: #144734;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-title i {
    margin-right: 10px;
    font-size: 1.7rem;
}

.table-container {
    background-color: #f4f4f4;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

thead {
    background-color: #1c6e5d;
    color: white;
}

th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tbody tr:nth-child(even) {
    background-color: #e9f5f2;
}

tbody tr:hover {
    background-color: #d1ece4;
    transition: background-color 0.3s ease;
}

@media screen and (max-width: 600px) {
    table {
        border: 0;
    }

    table caption {
        font-size: 1.3em;
    }

    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: 10px;
    }

    table td {
        border-bottom: 1px solid #ddd;
        display: block;
        text-align: right;
    }

    table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }
}

.search-box {
    display: none !important;
}

@media(max-width: 786px) {
    .search-box {
        display: block;
    }
}

.breadcrumb-img {
    margin-top: 4%;
}

/* Campus Tour */

.campus-tour-container {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 500px;
    padding: 60px 5%;
}

.campus-tour-content {
    flex: 1;
    padding-right: 50px;
}

.campus-tour-heading {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.campus-tour-description {
    font-size: 1.1rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 30px;
}

.campus-tour-video-wrapper {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.campus-tour-video-wrapper:hover {
    transform: scale(1.02);
}

.campus-tour-video {
    width: 100%;
    height: 300px;
    border: none;
}

@media (max-width: 1024px) {
    .campus-tour-container {
        flex-direction: column;
        padding: 40px 5%;
    }

    .campus-tour-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .campus-tour-heading {
        font-size: 2.4rem;
    }
}

/* Testimonials */

.testimonial-section {
    width: 100%;
    margin: 50px auto;
    text-align: center;
    background-color: #BC0164;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.testimonial-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.testimonial {
    display: none;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1em;
    color: #FFF;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: bold;
}

.prev-btn,
.next-btn {
    background-color: transparent;
    border: none;
    font-size: 30px;
    color: #FFF;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 10px;
    z-index: 1;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.prev-btn:hover,
.next-btn:hover {
    color: #FFF;
}

.author-avatar {
    border-radius: 50%;
    margin-right: 10px;
    width: 50px;
    height: 50px;
}

.testimonial-indicators {
    text-align: center;
    margin-top: 10px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #717171;
}

.message-text p {
    color: #000000 !important;
}

.message-text {
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: height 0.3s ease;
    color: #000000 !important;
    text-overflow: ellipsis;
}

.read-more {
    display: block;
    color: orange;
    font-weight: 400;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 3%;
}

.message-text.expanded {
    -webkit-line-clamp: unset;
}

.news-image {
    width: 100% !important;
    /*height: 200px !important;*/
    object-fit: cover;
}

/* Scholstic */

.scholastic-main-container-scholastic-screen {
    max-width: 1100px;
    margin: 3rem auto;
    background-color: white;
    border-radius: 10px;
    border: 1px solid #EEEEEE;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tab-navigation-scholastic-screen {
    display: flex;
    background: #f8f9fa;
    border: 1px solid #EEEEEE;
    font-size: 11px;
}

.tab-btn-scholastic-screen {
    flex: 1;
    padding: 15px 20px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    border: none !important;
    transition: background-color 0.2s ease;
    background-color: #EEEEEE !important;
}

.tab-btn-scholastic-screen.active {
    background-color: #144734 !important;
    color: white;
}

.tab-content-scholastic-screen {
    display: none;
    padding: 30px;
    background-color: white;
}

.tab-content-scholastic-screen.active {
    display: flex;
    align-items: stretch;
}

.content-image-scholastic-screen {
    width: 45%;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-text-scholastic-screen {
    width: 55%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.text-content-scholastic-screen {
    position: relative;
    line-height: 1.5;
    max-height: calc(1.5em * 15);
    /* Exactly 15 lines */
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.text-content-scholastic-screen.expanded {
    max-height: none;
}

.read-more-scholastic-screen {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    color: #144734;
    font-weight: bold;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    display: none;
}

.read-more-scholastic-screen.visible {
    display: block;
}

/* Media Queries */
@media (max-width: 768px) {
    .tab-content-scholastic-screen {
        flex-direction: column;
    }

    .content-image-scholastic-screen,
    .content-text-scholastic-screen {
        width: 100%;
    }

    .content-image-scholastic-screen {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* Testimonial */
.main-testimonial-section {
    padding: 2% !important;
    margin: 2%;
    border-radius: 6px;
    background-color: #ECEBDE !important;
}

.testimonial-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    position: relative;
}

.testimonial-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 10px;
    /* width: 250px;   */
    /* height: 270px; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.05);
}

/* Testimonial text styling */
.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Allow text to take up available space */

    /* Restrict to 4 lines with ellipsis */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Container for avatar, name, and role */
.testimonial-user-info {
    display: flex;
    align-items: center;
    /* Align items vertically centered */
    justify-content: center;
    margin-top: 20px;
}

/* User avatar styling */
.testimonial-avatar {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    /* Circular avatar */
    margin-right: 15px;
    /* Space between avatar and text */
}

/* Name and role styling */
.testimonial-name {
    font-weight: bold;
    text-align: left !important;
    color: #333;
    font-size: 14px;
    padding-top: 0;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 14px;
    color: #888;
}

/* Owl Carousel Custom Styling */
.owl-carousel .owl-nav {
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 10;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

.owl-carousel .owl-prev {
    left: 10px;
}

.owl-carousel .owl-next {
    right: 10px;
}

/* Dot Indicators */
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-carousel .owl-dots .owl-dot span {
    background-color: #333;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background-color: #007bff;
}

/* Owl Carousel Custom Styling */
.owl-carousel .owl-nav {
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 10;
    /* Ensure arrows are on top */
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 15;
    /* Ensure arrows appear above other content */
}

.owl-carousel .owl-prev {
    left: 10px;
}

.owl-carousel .owl-next {
    right: 10px;
}

/* Dot Indicators */
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
    z-index: 10;
    /* Ensure dots appear on top */
}

.owl-carousel .owl-dots .owl-dot span {
    background-color: #333;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background-color: #007bff;
}


/* Owl Carousel Custom Styling */
.owl-carousel .owl-nav {
    position: absolute !important;
    top: 50% !;
    width: 100% !important;
    z-index: 10 !important;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
    position: absolute !important;
    top: 40% !important;
    width: 40px;
    height: 40px;
    /* transform: translateY(-50%); */
    background-color: #144734 !important;
    color: white !important;
    padding: 10px;
    border-radius: 5%;
    font-size: 18px;
    cursor: pointer;
    z-index: 15;
}

.owl-carousel .owl-prev {
    left: 10px !important;
}

.owl-carousel .owl-next {
    right: 10px !important;
}

.owl-carousel .owl-dots {
    text-align: center !important;
    margin-top: 20px !important;
    z-index: 10 !important;
}

.owl-carousel .owl-dots .owl-dot span {
    background-color: red !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    margin: 0 5px;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background-color: #007bff !important;
}

.calendar-container {
    /* background-color: #38B349 !important; */
    height: 256px !important;
    /* background-image: linear-gradient(174deg, #05110E 6%, #044E3A 72%); */
    background: orangered;
}

.calendar-container .m-calendar {
    color: #FFFFFF !important;
    font-size: 20px !important;
    font-weight: 700;
    padding-top: 2%;
    padding-left: 3%;
}

.calendar-container img {
    width: 100% !important;
    height: 200px !important;
    padding: 2%;
    /* object-fit: contain; */
}

.news-item-latest p h3 {
    color: #FFFFFF !important;
}

.news-date {
    color: #FFFFFF !important;
}

.latest-news-item-text {
    color: #FFFFFF !important;
}

/* Position the enquiry link with vertical text */
.enquiry-link {
    position: fixed;
    right: 0;
    /* Adjust the distance from the right side */
    top: 50%;
    /* Vertically aligned at the top 50% */
    transform: translateY(-50%);
    /* Center the link exactly at 50% */
    background-color: #bd0c0c;
    /* Link background color */
    color: white;
    /* Text color */
    text-decoration: none;
    /* Remove underline */
    /* padding: 35x 20px; */
    width: 30px;
    font-size: 16px;
    z-index: 200;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    writing-mode: vertical-rl;
    /* Makes the text vertical */
    text-align: center;
    /* Aligns the text in the middle */
    height: 150px;
    /* Adjust height as needed to fit the vertical text */
}

.enquiry-link:hover {
    background-color: #bd0c0c;
    color: #ffffff !important;
}

.view-directions {
    /* background-color: #144734; */
    background-color: orangered;
    display: inline-block;
    padding: 2%;
    border-radius: 6px;
}

.view-directions a {
    color: #fff !important;
    font-weight: 400;
}

.view-directions img {
    width: 16px;
    height: 16px;
}

.tab-headers img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    color: #144734 !important;
}

.ribbon {
    background: #000e28;
    position: absolute;
    left: -10px;
    top: 0;
    padding: 10px 30px;
    height: 50px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    z-index: 1;
}

.ribbon:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    border-left: 10px solid transparent;
    border-top: 10px solid #051510;
    /* Darker shade for fold effect */
}

/* Latest news scroll */
.latest-news-scrolling {
    background-color: #00205b;
    width: 100%;
    height: 50px;
    overflow: hidden;
    display: flex;
    position: relative;
    padding-left: 150px;
    /* Make space for ribbon */
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    animation: marquee 54s linear infinite;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.marquee span {
    margin-right: 20px;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 400 !important;
    color: #ffffff !important;
}

.marquee a {
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 400 !important;
    color: #ffffff !important;
}

.latest-news-scrolling:hover .marquee {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(60%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* co-scholastic */
.cards-container-co-scholastic {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.card-co-scholastic {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.card-image-co-scholastic {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* co-scholastic */
.plus-icon-co-scholastic {
    width: 30px;
    /* Increased width for the icon */
    height: 30px;
    /* Increased height for the icon */
    /* background: #d0d0d0; */
    background: #144734;
    /* Medium grey background for both plus and minus icons */
    border-radius: 50%;
    /* Keep the circular shape */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-size: 20px;
    /* Adjust font size for the icon */
    color: #fff;
    /* Default color for the plus icon */
}

.plus-icon-co-scholastic.active {
    transform: rotate(45deg);
    /* Rotate for the minus sign */
    background: #b0b0b0;
    /* Slightly darker grey background when active */
}

.plus-icon-co-scholastic.active::before {

    font-size: 24px;
    /* Larger font size for the minus icon */
    color: black;
    /* Set the icon color to black */
}

.plus-icon-co-scholastic::before {

    font-size: 24px;
    /* Larger font size for the plus icon */
    color: black;
    /* Set the icon color to black */
}


.card-header-co-scholastic {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    /* Make entire header clickable */
}

.card-title-co-scholastic {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.card-co-scholastic {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    height: 258px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Default shadow */
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    /* Smooth transition for shadow */
}

.card-co-scholastic.active {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Highlighted shadow */
    height: auto !important;
}


.card-content-co-scholastic {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
}

.card-content-co-scholastic.active {
    max-height: 500px;
    /* Adjust based on content */
}

.content-inner-co-scholastic {
    padding: 15px;
}

@media (max-width: 768px) {
    .cards-container-co-scholastic {
        flex-direction: column;
    }

    .card-co-scholastic {
        width: 100%;
    }
}

/* Button container */
.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

/* Button row: Flex to place 2 buttons in each row */
.button-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    /* Adjusts space between buttons */
}

/* Category buttons */
.category-button {
    background-color: #144734;
    /* Green color */
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex: 1;
    /* Ensures buttons take up equal space */
}

.category-button:hover {
    background-color: #144734;
    /* Darker green on hover */
}

.category-button:active {
    background-color: #144734;
    /* Even darker green when active */
}

/* FIELD TRIPS */
.field-trip-main-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 20px;
    background: #f5f5f5;
}

.tabs-field-trip {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 30px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tab-button-field-trip {
    flex: 0 0 calc((100% - 60px) / 16);
    /* Width for 7 tabs with gaps */
    /* padding: 12px 10px; */
    padding: 4px;
    background: #EEEEEE;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 10px;
    height: 40px;
    font-weight: 600;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.tab-button-field-trip:nth-child(n+8) {
    margin-top: 0;
    /* Ensures consistent gap between rows */
}

@media (max-width: 768px) {
    .tabs-field-trip {
        flex-direction: column;
        gap: 8px;
    }

    .tab-button-field-trip {
        width: 100%;
        flex: none;
        text-align: left;
    }
}

.tab-button-field-trip .small-text-field-trip {
    font-size: 12px;
    font-weight: normal;
    display: block;
    color: #666;
    margin-top: 2px;
}

.tab-button-field-trip:hover {
    background: #e9f5f0;
}

.tab-button-field-trip.active-field-trip {
    background: #144734;
    color: white;
}

.tab-button-field-trip.active-field-trip .small-text-field-trip {
    color: rgba(255, 255, 255, 0.8);
}

.tab-content-field-trip {
    display: none;
    animation: fadeIn-field-trip 0.5s ease;
}

.tab-content-field-trip a {
    text-decoration: none;
}

.trip-date {
    color: gray;
}

.tab-content-field-trip a:hover {}

.tab-content-field-trip.active-field-trip {
    display: block;
}

.cards-container-field-trip {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.card-field-trip {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card-field-trip:hover {
    transform: translateY(-5px);
}

.card-image-field-trip {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content-field-trip {
    padding: 20px;
}

.card-title-field-trip {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.card-text-field-trip {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@keyframes fadeIn-field-trip {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add these styles to your existing CSS */

.card-detail-view {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 1200px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .card-detail-view {
        width: 100% !important;
    }
}

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #144734;
    font-weight: 600;
    cursor: pointer;
    padding: 10px;
    margin-bottom: 20px;
    transition: transform 0.2s ease;
}

.back-button:hover {
    transform: translateX(-5px);
}

.detail-content {
    /* display: flex;
    flex-direction: column;
    gap: 20px; */
    width: 100% !important;
}

.detail-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.detail-text {
    padding: 20px 0;
}

.detail-text h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.detail-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.detail-description {
    color: #444;
    line-height: 1.6;
    font-size: 16px;
}

@media (min-width: 768px) {
    .detail-content {
        flex-direction: row;
    }

    .detail-image {
        width: 50%;
    }

    .detail-text {
        width: 50%;
        padding: 0 0 0 20px;
    }
}

/* GUEST VISITS */


.container-guest-visit {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cards-container-guest-visit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 10px;
}

@media (max-width: 768px) {
    .cards-container-guest-visit {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .cards-container-guest-visit {
        grid-template-columns: 1fr;
    }
}

.card-guest-visit {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    height: 262px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card-guest-visit.active {
    height: auto !important;
}

.card-guest-visit:hover {
    transform: translateY(-5px);
}

.card-image-guest-visit {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-header-guest-visit {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #f8f8f8;
    transition: background-color 0.3s ease;
}

.card-header-guest-visit:hover {
    background: #f0f0f0;
}

.plus-icon-guest-visit {
    width: 30px;
    height: 30px;
    background: #144734;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.card-guest-visit.active .plus-icon-guest-visit {
    transform: rotate(45deg);
    background: #144734;
}

.card-content-guest-visit {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.card-guest-visit.active .card-content-guest-visit {
    padding: 15px;
    max-height: 200px !important;
}

.heading-guest-visit {
    text-align: center;
    margin-bottom: 20px;
}

.date-guest-visit {
    color: #666;
    font-size: 0.9em;
    margin: 10px 0;
}

.description-guest-visit {
    color: #444;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.card-title-guest-visit {
    font-size: 1.1em;
    color: #333;
}

.card-text-guest-visit {
    line-height: 1.5;
    color: #666;
}

.icons-row p {
    color: white !important;
    font-size: 14px;
}

.icons-row i {
    font-size: 30px !important;
    padding: 2% !important;
}

.read-more-text {
    text-align: right !important;
    color: #144734 !important;
}

.read-more-text a {
    text-align: right !important;
    text-transform: uppercase;
    font-size: 14px;
    color: #144734 !important;
}

/* DROPDOWN */
.dropdown-container {
    background-color: #fff;
    padding: 20px;
    /* border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

label {
    font-size: 16px;
    margin-bottom: 8px;
    display: inline-block;
    color: #333;
}

select {
    font-size: 16px;
    padding: 8px;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: #007bff;
}

/* Admission Process */

.admission-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.admission-process-header {
    text-align: center;
    margin-bottom: 3rem;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.admission-process-title {
    color: #144734;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.admission-process-subtitle {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.admission-process-cta {
    margin: 2rem 0;
    text-align: center;
}

.admission-process-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #144734;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin: 0.5rem;
}

.admission-process-button:hover {
    background-color: #144734;
}

.admission-process-docs {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.admission-process-docs h2 {
    color: #144734;
    margin-bottom: 1.5rem;
}

.admission-process-docs ul {
    list-style-type: none;
    padding: 0;
}

.admission-process-docs li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.admission-process-docs li::before {
    content: "•";
    /* color: #003366; */
    color: #144734;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.admission-process-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 2rem auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Age Criteria */

.age-criteria-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: #f8f9fa;
}

.age-criteria-header {
    text-align: center;
    padding: 2rem;
    background: #144734;
    color: white;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.age-criteria-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.age-criteria-level {
    flex: 0 1 calc(33.333% - 1.5rem);
    min-width: 300px;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.age-criteria-level::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #144734;
}

.age-criteria-title {
    color: #144734;
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
    padding-left: 1rem;
}

.age-criteria-info {
    padding-left: 1rem;
}

.age-criteria-age {
    font-weight: bold;
    color: #144734;
    margin-bottom: 0.5rem;
}

.age-criteria-date {
    color: #666;
    font-size: 0.9rem;
}

.age-criteria-section {
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.age-criteria-section-title {
    color: #144734;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #144734;
}

@media (max-width: 768px) {
    .age-criteria-level {
        flex: 0 1 100%;
    }
}

/* Fee Structure */

.fee-structure-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.fee-structure-header {
    text-align: center;
    padding: 2rem;
    background: #144734;
    color: white;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.fee-structure-section {
    margin-bottom: 3rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.fee-structure-section-title {
    background: #144734;
    color: white;
    padding: 1rem;
    margin: 0;
}

.fee-structure-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.fee-structure-table th,
.fee-structure-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.fee-structure-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #144734;
}

.fee-structure-table tr:nth-child(even) {
    background: #f8f9fa;
}

.fee-structure-note {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.fee-structure-note h3 {
    color: #144734;
    margin-bottom: 1rem;
}

.fee-structure-note ul {
    list-style-type: none;
    padding: 0;
}

.fee-structure-note li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.fee-structure-note li::before {
    content: "•";
    color: #144734;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .fee-structure-table {
        display: block;
        overflow-x: auto;
    }
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.faq-title {
    color: #144734;
    font-weight: 600;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
    color: #144734;
    font-weight: 500;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: none;
    background: none;
    text-align: left;
    font-size: 1.1em;
}

.faq-question:hover {
    background-color: #f8f8f8;
}

.faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer ol {
    margin-left: 20px;
    margin-top: 10px;
}

.faq-answer li {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .faq-container {
        padding: 10px;
    }

    .faq-question {
        font-size: 1em;
        padding: 15px;
    }
}

/* alumni */
.hero-alumni {
    position: relative;
    height: 80vh;
    background: linear-gradient(rgba(20, 71, 52, 0.9), rgba(20, 71, 52, 0.9)),
        url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.content-alumni {
    max-width: 800px;
    padding: 20px;
}

.heading-alumni {
    font-size: 4em;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.subheading-alumni {
    font-size: 1.5em;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.container-alumni {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title-alumni {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
    color: #144734;
}

.section-title-alumni::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #144734;
}

.grid-alumni {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.card-alumni {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card-alumni:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.image-wrapper-alumni {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.image-alumni {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-alumni:hover .image-alumni {
    transform: scale(1.1);
}

.card-content-alumni {
    padding: 25px;
}

.name-alumni {
    color: #144734;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.badge-alumni {
    display: inline-block;
    padding: 5px 15px;
    background: #144734;
    color: white;
    border-radius: 20px;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.events-container-alumni {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-card-alumni {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    transition: transform 0.3s ease;
}

.event-card-alumni:hover {
    transform: translateX(10px);
    background: #f8f9fa;
}

.event-date-alumni {
    min-width: 100px;
    text-align: center;
    padding: 10px;
    background: #f5f7fa;
    border-radius: 8px;
    margin-right: 20px;
}

.form-container-alumni {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-group-alumni {
    margin-bottom: 25px;
}

.form-label-alumni {
    display: block;
    margin-bottom: 8px;
    color: #144734;
    font-weight: 600;
}

.form-input-alumni {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-input-alumni:focus {
    border-color: #144734;
    outline: none;
}

.submit-button-alumni {
    background: #144734;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button-alumni:hover {
    background: #0d3024;
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .heading-alumni {
        font-size: 2.5em;
    }

    .subheading-alumni {
        font-size: 1.2em;
    }

    .grid-alumni {
        grid-template-columns: 1fr;
    }

    .event-card-alumni {
        flex-direction: column;
        text-align: center;
    }

    .event-date-alumni {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Alumni Photos */

.header-alumni-photos {
    background: #144734;
    padding: 2rem;
    text-align: center;
    color: white;
}

.title-alumni-photos {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle-alumni-photos {
    font-size: 1.2rem;
    opacity: 0.9;
}

.container-alumni-photos {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.gallery-alumni-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.card-alumni-photos {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-alumni-photos:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.image-wrapper-alumni-photos {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.image-alumni-photos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-alumni-photos:hover .image-alumni-photos {
    transform: scale(1.1);
}

.info-alumni-photos {
    padding: 1.5rem;
    text-align: center;
}

.name-alumni-photos {
    color: #144734;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.year-alumni-photos {
    color: #666;
    font-size: 0.9rem;
}

.modal-alumni-photos {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content-alumni-photos {
    position: relative;
    background: white;
    width: 90%;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 15px;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal-header-alumni-photos {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.modal-close-alumni-photos {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #144734;
    padding: 0.5rem;
}

.modal-image-alumni-photos {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    display: block;
    border: 4px solid #144734;
}

.modal-name-alumni-photos {
    color: #144734;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.modal-year-alumni-photos {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.modal-description-alumni-photos {
    color: #333;
    line-height: 1.6;
    text-align: center;
}

.modal-show {
    opacity: 1;
}

.modal-show .modal-content-alumni-photos {
    transform: translateY(0);
}

.search-container-alumni-photos {
    max-width: 600px;
    margin: 2rem auto;
    position: relative;
}

.search-input-alumni-photos {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #144734;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.search-input-alumni-photos:focus {
    box-shadow: 0 0 0 3px rgba(20, 71, 52, 0.2);
}

@media (max-width: 768px) {
    .gallery-alumni-photos {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .modal-content-alumni-photos {
        width: 95%;
        margin: 1rem auto;
        padding: 1rem;
    }

    .modal-image-alumni-photos {
        width: 150px;
        height: 150px;
    }
}

/* DipsBuzz */

.dipsbuzz-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.dipsbuzz-header {
    text-align: center;
    margin-bottom: 3rem;
    color: #144734;
}

.dipsbuzz-year-select {
    width: 250px;
    padding: 0.8rem;
    font-size: 1rem;
    border: 2px solid #144734;
    border-radius: 8px;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    color: #144734;
}

.dipsbuzz-year-select:hover {
    background-color: #144734;
    color: white;
}

.dipsbuzz-months-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.dipsbuzz-month-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.dipsbuzz-month-card:hover {
    transform: translateY(-5px);
    border-color: #144734;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.dipsbuzz-month-icon {
    font-size: 2rem;
    color: #144734;
    margin-bottom: 0.5rem;
}

.dipsbuzz-month-name {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.dipsbuzz-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.dipsbuzz-modal.active {
    display: block;
    opacity: 1;
}

.dipsbuzz-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    height: 80vh;
    border: 2px solid #144734;
}

.dipsbuzz-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #144734;
    transition: color 0.3s;
}

.dipsbuzz-modal-close:hover {
    color: #ff5252;
}

.dipsbuzz-pdf-viewer {
    width: 100%;
    height: calc(100% - 2rem);
    border: none;
}

/* In Focus */

.infocus-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.infocus-header {
    text-align: center;
    color: #144734;
    margin-bottom: 2rem;
}

.infocus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem;
}

.infocus-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.infocus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.infocus-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #144734;
}

.infocus-card-content {
    padding: 1rem;
}

.infocus-newspaper {
    color: #144734;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.infocus-date {
    color: #666;
    font-size: 0.9rem;
}

.infocus-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.infocus-modal.active {
    display: flex;
    opacity: 1;
    justify-content: center;
    align-items: center;
}

.infocus-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.infocus-modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.infocus-modal-close {
    position: absolute;
    top: -2rem;
    right: -2rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.infocus-modal-close:hover {
    color: #ff5252;
}

@media (max-width: 1024px) {
    .infocus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .infocus-grid {
        grid-template-columns: 1fr;
    }
}

/* Photo Gallery */

.photo-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.photo-gallery-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.photo-gallery-card:hover {
    transform: translateY(-5px);
}

.photo-gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.photo-gallery-content {
    padding: 15px;
}

.photo-gallery-title {
    color: #144734;
    font-size: 18px;
    margin-bottom: 8px;
}

.photo-gallery-date {
    color: #666;
    font-size: 14px;
}

.photo-gallery-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.photo-gallery-page-btn {
    padding: 8px 15px;
    background: white;
    border: 1px solid #144734;
    color: #144734;
    cursor: pointer;
    border-radius: 4px;
}

.photo-gallery-page-btn.active {
    background: #144734;
    color: white;
}

/* Modal styles */
.photo-gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.photo-gallery-modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

.photo-gallery-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #144734;
}

.photo-gallery-modal-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.photo-gallery-modal-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

/* Students Corner */

.students-corner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.students-corner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.students-corner-card {
    display: flex;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 120px;
    border: 1px solid #eee;
}

.students-corner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #144734;
}

.students-corner-icon {
    flex: 0 0 10%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 28px;
    padding: 5px;
}

.students-corner-content {
    flex: 1;
    padding-left: 20px;
}

.students-corner-title {
    color: #144734;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.students-corner-description {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 3em;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
}

.modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 15px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #144734;
    padding: 5px;
}

.modal-title {
    color: #144734;
    font-size: 24px;
    margin-bottom: 20px;
}

.modal-body {
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

@media (max-width: 768px) {
    .students-corner-grid {
        grid-template-columns: 1fr;
    }
}

/* Sports */
.sports-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.sports-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    overflow-x: auto;
    scrollbar-width: thin;
    -ms-overflow-style: none;
}

.sports-tabs::-webkit-scrollbar {
    height: 4px;
}

.sports-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.sports-tabs::-webkit-scrollbar-thumb {
    background: #144734;
    border-radius: 2px;
}

.sports-tab {
    padding: 8px 16px;
    background: white;
    border: 2px solid #144734;
    color: #144734;
    cursor: pointer;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

.sports-tab:hover {
    background: rgba(20, 71, 52, 0.1);
}

.sports-tab.active {
    background: #144734;
    color: white;
}

.sports-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.sports-content.active {
    display: block;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.sports-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.sports-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/*.sports-card-image {*/
/*    width: 100%;*/
/*    height: 200px;*/
/*    object-fit: cover;*/
/*    transition: transform 0.3s ease;*/
/*}*/

.sports-card-image {
    width: 100%;
    height: 200px; /* You can adjust this to the desired height */
    object-fit: contain; /* Ensures the image fits inside the container without cropping */
    object-position: center; /* Keeps the image centered */
    transition: transform 0.3s ease;
}


.sports-card:hover .sports-card-image {
    transform: scale(1.05);
}

.sports-card-content {
    padding: 20px;
}

.sports-card-title {
    color: #144734;
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: 600;
}

.sports-card-date {
    color: #666;
    font-size: 14px;
}

/* Modal Styles */
.sports-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
}

.sports-modal.active {
    opacity: 1;
}

.sports-modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    border-radius: 15px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    max-height: 85vh;
    overflow-y: auto;
    scrollbar-width: thin;
}

.sports-modal-content::-webkit-scrollbar {
    width: 6px;
}

.sports-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.sports-modal-content::-webkit-scrollbar-thumb {
    background: #144734;
    border-radius: 3px;
}

.sports-modal.active .sports-modal-content {
    transform: translateY(0);
}

.sports-modal-close {
    position: sticky;
    top: 20px;
    float: right;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f8f9fa;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-bottom: -30px;
          background: black;
        color: white;
}

.sports-modal-close:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
          background: black;
        color: white;
}

.sports-modal-image {
    /*width: 100%;*/
    /*height: 400px;*/
    /*object-fit: cover;*/
    /*border-radius: 10px;*/
    /*margin: 20px 0;*/
    width: 100%;
    height: 400px; /* You can adjust this to the desired height */
    object-fit: contain; /* Ensures the image fits inside the container without cropping */
    object-position: center; /* Keeps the image centered */
    transition: transform 0.3s ease;
}

.sports-modal-title {
    color: #144734;
    font-size: 24px;
    margin-bottom: 10px;
    padding-top: 20px;
}

.sports-modal-date {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.sports-modal-description {
    color: #444;
    line-height: 1.6;
}

.sports-modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.sports-modal-gallery img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sports-modal-gallery img:hover {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .sports-tabs {
        padding-bottom: 15px;
    }

    .sports-tab {
        padding: 6px 12px;
        font-size: 13px;
    }

    .sports-modal-content {
        width: 95%;
        padding: 20px;
    }

    .sports-modal-title {
        font-size: 20px;
    }

    .sports-modal-close {
        top: 10px;
        right: 10px;
        width: 25px;
        height: 25px;
        background: black;
        color: white;
    }
}

/* Home page news */

.news-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    /* Adds padding for space around */
    width: 100%;
    position: fixed;
    top: 0;
    /* Fix the position to the top of the page */
    left: 0;
    z-index: 2000;
    background-color: #144734;
    /* Adds a white background so the text is visible */
    border-bottom: 2px solid #ccc;
    /* Adds a border at the bottom */
}

.latest-news {
    width: 80%;
    /* 80% width for Latest News */
}

.latest-news h3 {
    margin: 0;
    color: #f0f0f0;
    font-size: 24px;
    /* Adjust the font size as needed */
}

.view-all-container {
    width: 20%;
    /* 20% width for View All */
    text-align: right;
    /* Aligns the "View All" link to the right */
}

.view-all-link {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    /* Blue color for the link */
}

.view-all-link:hover {
    text-decoration: underline;
    /* Adds underline on hover */
}

.custom-news-container {
    display: grid;
    padding: 0 2% 0 0;
    grid-template-columns: 70% 30%;
}

.custom-view-all-container {
    text-align: right;
}

.custom-view-all-container a {
    color: #ffffff;
    text-decoration: none !important;
    padding-top: 3%;
}

.custom-latest-news h3 {
    color: #ffffff;
    font-size: 20px;
}

/* Results */

.results-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(20, 71, 52, 0.1);
}

.results-container-header {
    text-align: center;
    margin-bottom: 2rem;
    color: #144734;
    animation: fadeInDown 1s;
}

.results-container-header h1 {
    margin: 0;
    font-size: 2.5rem;
}

.results-container-select-wrapper {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 1s;
}

.results-container-select {
    width: 200px;
    padding: 12px;
    font-size: 1.1rem;
    border: 2px solid #144734;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.results-container-select:hover {
    background: #e8f5e9;
}

.results-container-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.results-container-card {
    background: white;
    border: 2px solid #144734;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    animation: fadeInUp 1s;
}

.results-container-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(20, 71, 52, 0.15);
    background: #e8f5e9;
}

.results-container-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
}

.results-container-card h3 {
    color: #144734;
    margin: 10px 0;
    font-size: 1.5rem;
}

.results-container-button {
    background: #144734;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 1rem;
    transition: all 0.3s;
}

.results-container-button:hover {
    background: #1a5c42;
    transform: scale(1.05);
}

.results-container-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

.results-container-modal-content {
    background: white;
    width: 90%;
    max-width: 900px;
    margin: 50px auto;
    padding: 25px;
    border-radius: 20px;
    position: relative;
    animation: zoomIn 0.3s;
}

.results-container-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: #144734;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.results-container-close:hover {
    background: #1a5c42;
    transform: rotate(90deg);
}

.results-container-pdf {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .results-container {
        padding: 15px;
    }

    .results-container-header h1 {
        font-size: 2rem;
    }

    .results-container-grid {
        gap: 15px;
    }
}

/* Infrastructure Section Styles */
.infra-section-main-container {
    display: flex;
    min-height: 100vh;
    background: #f0f5f2;
}

.infra-section-sidebar {
    width: 280px;
    background: #144734;
    padding: 20px;
    transition: all 0.3s ease;
}

.infra-section-sidebar h2 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 24px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #1d5f46;
}

.infra-section-nav-links {
    list-style: none;
    padding: 0;
}

.infra-section-nav-links li {
    margin-bottom: 10px;
}

.infra-section-nav-links a {
    display: block;
    padding: 12px 15px;
    color: #e0eae5;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.infra-section-nav-links a:hover {
    background: #1d5f46;
    transform: translateX(5px);
}

.infra-section-nav-links a.active {
    background: #0d2b20;
}

.infra-section-nav-links .submenu {
    display: none;
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
}

.infra-section-nav-links .submenu.active {
    display: block;
}

.infra-section-nav-links .has-submenu>.accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.infra-section-nav-links .submenu a {
    padding: 8px 15px;
    font-size: 0.95em;
}

.accordion-toggle i {
    transition: transform 0.3s ease;
}

.accordion-toggle.active i {
    transform: rotate(-180deg);
}

.infra-section-content-area {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.infra-section-facility-content {
    display: none;
    animation: infra-section-fadeIn 0.5s ease;
}

.infra-section-facility-content.active {
    display: block;
}

.infra-section-facility-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(20, 71, 52, 0.1);
}

.infra-section-facility-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.infra-section-facility-description {
    color: #2c4c3e;
    line-height: 1.6;
    margin-bottom: 20px;
}

.infra-section-feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.infra-section-feature-item {
    background: #f0f5f2;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #144734;
}

.infra-section-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: #144734;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .infra-section-sidebar {
        position: fixed;
        left: -280px;
        height: 100vh;
        top: 0;
        z-index: 999;
    }

    .infra-section-sidebar.active {
        left: 0;
    }

    .infra-section-menu-toggle {
        display: block;
    }

    .infra-section-facility-image {
        height: 200px;
    }
}

@keyframes infra-section-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Student Council */

.student-council-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.student-council-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #144734 0%, #1a5f45 100%);
    color: white;
    border-radius: 16px;
    margin-bottom: 4rem;
}

.student-council-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.student-council-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.student-council-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.student-council-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(20, 71, 52, 0.1);
    transition: transform 0.3s ease;
}

.student-council-card:hover {
    transform: translateY(-5px);
}

.student-council-card-image {
    height: 200px;
    overflow: hidden;
}

.student-council-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.student-council-card-info {
    padding: 1.5rem;
    text-align: center;
}

.student-council-card-info h3 {
    color: #144734;
    margin-bottom: 0.5rem;
}

.student-council-select {
    text-align: center;
    margin-bottom: 4rem;
}

.student-council-select select {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: 2px solid #144734;
    border-radius: 8px;
    background: white;
    color: #144734;
    cursor: pointer;
}

.student-council-content {
    margin-bottom: 4rem;
}

.student-council-content h2 {
    color: #144734;
    text-align: center;
    margin-bottom: 2rem;
}

.student-council-text {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(20, 71, 52, 0.08);
}

.student-council-text p {
    line-height: 1.8;
    color: #333;
}

.student-council-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.student-council-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.student-council-gallery-item img {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
}

@media (max-width: 768px) {
    .student-council-hero {
        padding: 3rem 1rem;
    }

    .student-council-hero h1 {
        font-size: 2.5rem;
    }

    .student-council-gallery {
        grid-template-columns: 1fr;
    }

    .student-council-gallery-item {
        height: 300px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Homemade+Apple&display=swap');

.student-council-letters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 4rem 0;
    padding: 2rem;
}

.student-council-letter-card {
    background: linear-gradient(45deg, rgba(20, 71, 52, 0.05) 0%, rgba(20, 71, 52, 0.1) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(20, 71, 52, 0.1);
    transition: transform 0.3s ease;
}

.student-council-letter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #144734;
    transform: scaleX(0.3);
    transition: transform 0.3s ease;
}

.student-council-letter-card:hover {
    transform: translateY(-5px);
}

.student-council-letter-card:hover::before {
    transform: scaleX(1);
}

.student-council-letter-header {
    display: grid;
    grid-template-columns: 50% 50%;
}

.student-image-section {
    text-align: right !important;
}

.student-image-section img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid rgba(20, 71, 52, 0.5);
}

.student-council-letter-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(20, 71, 52, 0.2);
}

.student-council-letter-header h3 {
    color: #144734;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.student-council-letter-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.student-council-letter-name {
    color: #144734;
    font-weight: 600;
    font-size: 1.2rem;
}

.student-council-letter-class {
    color: #666;
    font-size: 0.9rem;
}

.student-council-letter-content {
    line-height: 2;
    color: #333;
    font-size: 1rem;
}

.student-council-letter-content p {
    font-family: "Caveat", serif !important;
    font-size: 20px !important;

}

.student-council-letter-content p {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .student-council-letters {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
}

/* Alumni Coming Soon */
.coming-soon-container {
    min-height: 70vh;
    padding: 4rem 1rem;
    background-color: #fff;
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.icon-container {
    margin-bottom: 2rem;
}

.icon-container i {
    font-size: 4rem;
    color: #144734;
}

.coming-soon-content h1 {
    color: #144734;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.countdown-item {
    background-color: #144734;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    min-width: 100px;
}

.countdown-item span {
    font-size: 2rem;
    font-weight: bold;
}

.countdown-item p {
    margin: 0;
    font-size: 0.9rem;
}

.notification-form {
    margin-bottom: 4rem;
}

.notification-form h3 {
    color: #144734;
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.input-group input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid #144734;
    border-radius: 4px;
    font-size: 1rem;
}

.input-group button {
    padding: 0.8rem 2rem;
    background-color: #144734;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.input-group button:hover {
    background-color: #0d3024;
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.feature-item i {
    font-size: 2rem;
    color: #144734;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #144734;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .coming-soon-content h1 {
        font-size: 2rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 80px;
    }

    .input-group {
        flex-direction: column;
    }

    .input-group button {
        width: 100%;
    }

    .features {
        gap: 1rem;
    }
}

/* Work With DPS */
.careers-wrapper {
    padding: 4rem 2rem;
    background: #f8f9fa;
    min-height: 100vh;
}

.careers-header {
    text-align: center;
    margin-bottom: 4rem;
}

.careers-header h1 {
    color: #144734;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.careers-header p {
    color: #666;
    font-size: 1.1rem;
}

.careers-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.jobs-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.job-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(20, 71, 52, 0.1);
}

.job-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #144734;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.job-card h3 {
    color: #144734;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.job-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.job-details i {
    color: #144734;
}

.apply-btn {
    background: transparent;
    border: 2px solid #144734;
    color: #144734;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.apply-btn:hover {
    background: #144734;
    color: white;
}

.application-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.application-form h2 {
    color: #144734;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.form-group label {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
}

.form-group input:focus,
.form-group input:valid {
    border-color: #144734;
    background: white;
}

.form-group input:focus+label,
.form-group input:valid+label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    background: white;
    padding: 0 0.25rem;
}

.multiselect-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.multiselect-header {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.multiselect-header i {
    transition: transform 0.3s ease;
}

.multiselect-header.active i {
    transform: rotate(180deg);
}

.multiselect-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.multiselect-options.show {
    display: block;
}

.multiselect-option {
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.multiselect-option:hover {
    background: #f8f9fa;
    padding-left: 1rem;
}

.multiselect-option.selected {
    background: #e8f0ed;
    color: #144734;
}

.dps-careers-submit-btn {
    width: 100%;
    padding: 1rem;
    background: #144734;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.dps-careers-submit-btn:hover {
    background: #0d3024;
    transform: translateY(-2px);
}

.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: #144734 !important;
    color: white !important;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(200%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .careers-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Latest News */

/* Latest News Main Container */
.latest-news-main-container {
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* Featured Section */
.latest-news-main-featured {
    background: linear-gradient(135deg, #144734 0%, #1a5c42 100%);
    padding: 4rem 0;
    color: white;
}

.featured-grid {
    margin-top: -2rem;
}

.featured-main {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
}

@media (min-width: 992px) {
    .featured-main {
        grid-template-columns: 1.2fr 1fr;
    }
}

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-tag {
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.featured-main h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.meta-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.meta-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 0.8rem;
    color: #ff6b35;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* News Categories Section */
.latest-news-main-categories {
    padding: 4rem 0;
}

.category-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.category-btn {
    background: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    color: #144734;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-btn.active,
.category-btn:hover {
    background: #144734;
    color: white;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-image {
    width: 100%;
    /*height: 200px;*/
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-category {
    color: #ff6b35;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.4;
}

.news-excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    color: #888;
    font-size: 0.9rem;
}

/* Load More Button */
.load-more-container {
    text-align: center;
}

.load-more-btn {
    background: transparent;
    border: 2px solid #144734;
    color: #144734;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #144734;
    color: white;
}

/* Important Updates Section */
.latest-news-main-updates {
    background: #fff;
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    color: #144734;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.updates-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.update-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 4px solid #144734;
}

.update-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.update-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.update-content {
    color: #444;
    line-height: 1.6;
}

/* Newsletter Section */
.latest-news-main-newsletter {
    background: linear-gradient(135deg, #144734 0%, #1a5c42 100%);
    padding: 4rem 0;
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff824f;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}


/* Gallery Lighbox */

/* styles.css */
.gallery-container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease;
    width: 100%;
    padding-bottom: 100%;
    /* Makes it square */
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 1001;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.prev-button {
    left: 20px;
}

.next-button {
    right: 20px;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Promoters Section Styles */
.dps-miyapur-promoters {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
}

.dps-miyapur-promoters__title {
    text-align: center;
    margin-bottom: 40px;
}

.dps-miyapur-promoters__title h2 {
    color: #006838;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.dps-miyapur-promoters__container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dps-miyapur-promoters__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.dps-miyapur-promoters__card {
    width: 260px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.dps-miyapur-promoters__card:hover {
    transform: translateY(-5px);
}

.dps-miyapur-promoters__img-wrapper {
    width: 100%;
    height: 257px;
    padding: 5px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 5px;
}

.dps-miyapur-promoters__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

.dps-miyapur-promoters__info {
    padding: 15px;
    text-align: center;
}

.dps-miyapur-promoters__info h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #333;
}

.dps-miyapur-promoters__info p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* Responsive Styles */
@media screen and (max-width: 1100px) {
    .dps-miyapur-promoters__card {
        width: 230px;
    }
}

@media screen and (max-width: 768px) {
    .dps-miyapur-promoters__row {
        justify-content: center;
    }
    
    .dps-miyapur-promoters__card {
        width: 45%;
        min-width: 200px;
    }
    
    .dps-miyapur-promoters__img-wrapper {
        height: 180px;
    }
}

@media screen and (max-width: 480px) {
    .dps-miyapur-promoters__card {
        width: 100%;
        max-width: 280px;
    }
}

/* Monthly calendar */

.dps-monthly-calendar {
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px solid #ddd;
    border-top: none;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    width: 100%;
    height: 260px;
    overflow: auto;
    transition: all 0.3s ease;
}

.dps-monthly-calendar.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    border-radius: 0;
    padding: 30px;
    overflow: auto;
}

.dps-monthly-calendar.fullscreen .dps-monthly-calendar-day {
    height: 120px;
}

.dps-monthly-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -9px;
    text-align: center;
}

.dps-monthly-calendar-header h2 {
    /*margin: 0;*/
    color: #144734;
    font-size: 24px;
    font-weight: 600;
    flex-grow: 1;
}

.dps-monthly-calendar-nav {
    background-color: #144734;
    color: white;
    border: none;
    width: 22px;
    height: 25px;
    font-size: 18px;
    cursor: pointer;
    /*display: flex;*/
        margin-top: -32px;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.dps-monthly-calendar-nav:hover {
    background-color: #0d3024;
}

.dps-fullscreen-btn {
    background-color: #144734;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    /*display: flex;*/
        margin-top: -34px;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.dps-fullscreen-btn:hover {
    background-color: #0d3024;
}

.dps-monthly-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    background-color: #144734;
    color: white;
    padding: 10px 0;
    width: 100%;
    border: 1px solid #144734;
}

.dps-monthly-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 0;
    margin-top: 0;
    width: 100%;
    grid-auto-rows: 1fr;
    border: 1px solid #e0e0e0;
    border-top: none;
}

.dps-monthly-calendar-day {
    height: 80px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 5px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #ffffff;
}

.dps-monthly-calendar.fullscreen .dps-monthly-calendar-day {
    height: 120px;
}

.dps-monthly-calendar-day.inactive {
    background-color: #f9f9f9;
    color: #aaa;
}

.dps-monthly-calendar-day.current-day {
    background-color: #f2f8f5;
    border: 1px solid #144734;
}

.dps-monthly-calendar-day-header {
    text-align: right;
    font-weight: 600;
    margin-bottom: 2px;
    color: #333;
    font-size: 12px;
    padding: 2px;
}

.dps-monthly-calendar-event-list {
    font-size: 11px;
    overflow: hidden;
}

.dps-monthly-calendar-event-item {
    margin-bottom: 2px;
    padding: 2px 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    font-size: 10px;
    border-left: 3px solid transparent;
    background-color: rgba(250, 250, 250, 0.9);
}

.dps-monthly-calendar.fullscreen .dps-monthly-calendar-event-item {
    font-size: 12px;
    padding: 3px 6px;
    margin-bottom: 4px;
}

.dps-monthly-calendar-event-item.holiday {
    border-left-color: #e53935;
    background-color: rgba(255, 235, 238, 0.8);
    color: #c62828;
}

.dps-monthly-calendar-event-item.exam {
    border-left-color: #fb8c00;
    background-color: rgba(255, 243, 224, 0.8);
    color: #e65100;
}

.dps-monthly-calendar-event-item.event {
    border-left-color: #039be5;
    background-color: rgba(227, 242, 253, 0.8);
    color: #0277bd;
}

.dps-monthly-calendar-legend {
    display: flex;
    margin-top: 20px;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    background-color: #f8f8f8;
    border-radius: 5px;
}

.dps-monthly-calendar-legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.dps-monthly-calendar-legend-color {
    width: 12px;
    height: 12px;
    border-radius: 0;
    border-left: 3px solid transparent;
}

.dps-monthly-calendar-legend-color.dps-monthly-calendar-holiday {
    border-left-color: #e53935;
    background-color: rgba(255, 235, 238, 0.8);
}

.dps-monthly-calendar-legend-color.dps-monthly-calendar-exam {
    border-left-color: #fb8c00;
    background-color: rgba(255, 243, 224, 0.8);
}

.dps-monthly-calendar-legend-color.dps-monthly-calendar-event {
    border-left-color: #039be5;
    background-color: rgba(227, 242, 253, 0.8);
}

.dps-monthly-calendar-tooltip {
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    z-index: 100;
    max-width: 250px;
    display: none;
    font-size: 12px;
}

.dps-monthly-calendar-tooltip strong {
    display: block;
    margin-bottom: 5px;
    color: #144734;
    font-size: 14px;
}

@media(max-width: 768px) {
    #mission-vision-widget {
        margin-top: 10%;
    }
}