/* ===============================================
   Header Styles
=============================================== */
body {
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif !important;
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
    color: black;
}

.content-container1 {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 20px 80px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

/* Base styles */
/* =====================================================
   HEADER BASE STRUCTURE
===================================================== */
.header-main-header {
    padding: 0 60px;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
}

.header-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.header-header-left,
.header-header-center,
.header-header-right {
    display: flex;
    align-items: center;
}

.header-header-center {
    flex: 1;
    justify-content: flex-end;
}

.header-logo {
    height: 80px;
    padding: 15px 0;
}

.header-main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
}

/* =====================================================
   NAV LINKS
===================================================== */
.header-nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 501;
    padding: 5px 7px;
    font-size: 19px;
    position: relative;
}

.header-nav-link:hover {
    color: #0066cc;
}

/* =====================================================
   DROPDOWN
===================================================== */
.header-dropdown {
    position: relative;
}

.header-dropdown-toggle {
    cursor: pointer;
    text-decoration: none;
    color: black;
}

/* Desktop dropdown by default */
.header-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    /* full width of screen */
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.header-dropdown-menu>.header-dropdown-grid {
    max-width: 1400px;
    margin: 0 auto;
}

/* ✅ GRID layout (replaces tables completely) */
.header-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px 0;
}

.header-dropdown-item {

    background: transparent;
    color: #000;
    font-size: 14px;
    font-weight: normal !important;

}

.header-dropdown-item:hover {
    background-color: #f0f0f0;
}

/* Hover open in desktop */
.header-dropdown:hover .header-dropdown-menu {
    display: block;
}

/* =====================================================
   MOBILE CONTROLS
===================================================== */
.header-mobile-controls {
    display: none;
}

.header-mobile-menu-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

/* =====================================================
   MOBILE / SMALL SCREENS
===================================================== */
@media (max-width: 768px) {
    .header-dropdown-item {
        white-space: normal !important;
        word-break: break-word;
        /* ✅ break long words */
        overflow-wrap: break-word;
        background: #eff0f0;
        color: #000;
        font-weight: normal !important;
        font-size: 14px;
        display: block;
    }

    #mainNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 7px;
        overflow-y: scroll;
        transition: 0.3s ease;
    }

    #mainNav.active {
        right: 0;
    }

    .header-main-header {
        padding: 0 20px;
    }

    .header-logo {
        height: 45px;
    }

    .header-mobile-controls {
        display: flex;
    }

    .header-main-nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        z-index: 2000;
        height: calc(100vh - 60px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: nowrap;
        white-space: normal;

    }

    .header-main-nav.active {
        display: flex;
    }

    .header-nav-link {
        padding: 10px 0;
        width: 100%;
        font-size: 16px;
    }

    /* ✅ Mobile dropdown behavior */
    .header-dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 10px;
        width: 100%;
        /* ✅ no clipping */
        white-space: normal;
    }

    .header-dropdown.active .header-dropdown-menu {
        display: block;
    }

    /* ✅ 1 column in mobile */
    .header-dropdown-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .header-dropdown-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

}

/* =====================================================
   TABLETS
===================================================== */
@media (min-width: 769px) and (max-width: 1024px) {

    .header-main-header {
        padding: 0 40px;
    }

    .header-logo {
        height: 60px;
    }

    .header-nav-link {
        font-size: 17px;
    }

    .header-dropdown-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =====================================================
   LARGE DESKTOPS
===================================================== */
@media (min-width: 1025px) {
    .header-dropdown-menu {
        width: auto;
        min-width: 1010px;
        font-size: 16px;
    }

    .header-dropdown-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

/* EXTRA LARGE */
@media (min-width: 1440px) {
    .header-logo {
        height: 90px;
    }

    .header-nav-link {
        font-size: 20px;
    }
}


/*===============================================
                Footer Styles
===============================================*/
.footer-main-footer {
    background-color: #d5e7e8;
    font-size: 16px;
}

.footer-icon {
    font-size: 24px;
    color: #333;
}

.footer-newsletter {
    background-color: #fff;
    padding: 20px 7px;
}

.footer-newsletter-inner {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    /* flex-wrap: wrap; */
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 15px; */
}

.footer-newsletter-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
    font-size: 16px;
}

.footer-newsletter-form {
    display: flex;
    gap: 10px;
    /* flex-wrap: wrap; */
    position: relative;
    top: 10px;
}

.footer-newsletter-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 999px;
    width: 250px;
}

.footer-newsletter-form button {
    background-color: #3d348d;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    text-wrap: nowrap;
}

.footer-info {
    padding: 20px 20px;
}

.footer-info-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    /* max-width: 1200px; */
    margin: 10px 10px 10px 50px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    box-sizing: border-box;
}

.footer-col.wide {
    flex: 4;
}

.footer-col h4 {
    text-decoration: underline;
    margin-bottom: 15px;
}

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

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col ul li a {
    color: #333;
    text-decoration: none;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

.footer-membership-columns {
    display: flex;
    gap: 30px;
}

.footer-social-icons a {
    margin-right: 10px;
    font-size: 20px;
    color: #333;
}

.footer-bottom {
    background-color: #f8f8f8;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.footer-logo {
    margin-top: 25px;
    height: auto;
    width: 90px;
}

.footer-heading {
    font-size: 20px;
    text-decoration: underline;
    margin-bottom: 15px;
}

@media (max-width: 480px) {
    .footer-main-footer {
        font-size: 14px;
    }

    .footer-icon {
        font-size: 18px;
    }

    .footer-newsletter {
        padding: 15px 15px;
    }

    .footer-newsletter-inner {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .footer-newsletter-text {
        font-size: 14px;
        text-align: center;
    }

    .footer-newsletter-form {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .footer-newsletter-form input {
        width: 80%;
    }

    .footer-newsletter-form button {
        width: 80%;
        padding: 10px;
    }

    .footer-info {
        padding: 15px 10px;
    }

    .footer-info-grid {
        gap: 20px;
        margin: 10px 10px 10px 20px;
    }

    .footer-col {
        min-width: 100%;
        margin-bottom: 20px;
    }

    .footer-col.wide {
        flex: 1;
    }

    .footer-col h4 {
        font-size: 18px;
    }

    .footer-col ul {
        column-count: 1;
        column-gap: 0;
    }

    .footer-col ul li {
        margin-bottom: 12px;
    }

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

    .footer-col p {
        font-size: 14px;
        width: 100%;
    }

    .footer-membership-columns {
        flex-direction: column;
        gap: 15px;
    }

    .footer-social-icons a {
        font-size: 18px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 8px 0;
    }

    .footer-logo {
        width: 70px;
    }



}

@media (min-width: 481px) and (max-width: 768px) {
    .footer-main-footer {
        font-size: 15px;
    }

    .footer-icon {
        font-size: 20px;
    }

    .footer-newsletter {
        padding: 15px 20px;
    }

    .footer-newsletter-inner {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .footer-newsletter-text {
        font-size: 15px;
        text-align: center;
    }

    .footer-newsletter-form {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .footer-newsletter-form input {
        width: 70%;
    }

    .footer-newsletter-form button {
        width: 70%;
        padding: 10px;
    }

    .footer-info {
        padding: 20px 15px;
    }

    .footer-info-grid {
        gap: 25px;
        margin: 10px 10px 10px 30px;
    }

    .footer-col {
        min-width: 100%;
        margin-bottom: 20px;
    }

    .footer-col.wide {
        flex: 1;
    }

    .footer-col h4 {
        font-size: 18px;
    }

    .footer-col ul {
        column-count: 1;
        column-gap: 0;
    }

    .footer-col ul li {
        margin-bottom: 14px;
    }

    .footer-col ul li a {
        font-size: 15px;
    }

    .footer-col p {
        font-size: 15px;
        width: 100%;
    }

    .footer-membership-columns {
        flex-direction: column;
        gap: 15px;
    }

    .footer-social-icons a {
        font-size: 20px;
    }

    .footer-bottom {
        font-size: 13px;
        padding: 9px 0;
    }

    .footer-logo {
        width: 80px;
    }

    .footer-heading {
        font-size: 19px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-main-footer {
        font-size: 16px;
    }

    .footer-icon {
        font-size: 22px;
    }

    .footer-newsletter {
        padding: 20px 50px;
    }

    .footer-newsletter-inner {
        gap: 15px;
        align-items: center;
    }

    .footer-newsletter-text {
        font-size: 16px;
        text-align: center;
    }

    .footer-newsletter-form {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        width: auto;
    }

    .footer-newsletter-form input {
        width: 200px;
    }

    .footer-newsletter-form button {
        width: auto;
        padding: 10px 18px;
    }

    .footer-info {
        padding: 20px 20px;
    }

    .footer-info-grid {
        gap: 30px;
        margin: 10px 10px 10px 40px;
    }

    .footer-col {
        min-width: 100%;
        padding: 0 10px;
        margin-bottom: 20px;
    }

    .footer-col.wide {
        flex: 2;
    }

    .footer-col h4 {
        font-size: 20px;
    }

    .footer-col ul {
        column-count: 1;
        column-gap: 0;
    }

    .footer-col ul li {
        margin-bottom: 16px;
    }

    .footer-col ul li a {
        font-size: 16px;
    }

    .footer-col p {
        font-size: 16px;
        width: 100%;
    }

    .footer-membership-columns {
        flex-direction: row;
        gap: 20px;
    }

    .footer-social-icons a {
        font-size: 22px;
    }

    .footer-bottom {
        font-size: 14px;
        padding: 10px 0;
    }

    .footer-logo {
        width: 90px;
    }

    .footer-heading {
        font-size: 20px;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .footer-main-footer {
        font-size: 16px;
    }

    .footer-icon {
        font-size: 24px;
    }

    .footer-newsletter {
        padding: 20px 40px;
    }

    .footer-newsletter-inner {
        flex-direction: row;
        gap: 15px;
        align-items: center;
    }

    .footer-newsletter-text {
        font-size: 16px;
        text-align: left;
    }

    .footer-newsletter-form {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        width: auto;
    }

    .footer-newsletter-form input {
        width: 250px;
    }

    .footer-newsletter-form button {
        width: auto;
        padding: 10px 18px;
    }

    .footer-info {
        padding: 20px 20px;
    }

    .footer-info-grid {
        gap: 30px;
        margin: 10px 10px 10px 50px;
    }

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

    .footer-col.wide {
        flex: 4;
    }

    .footer-col.wide ul {
        column-count: 2;
        column-gap: 20px;
    }

    .footer-col h4 {
        font-size: 20px;
    }

    .footer-col ul {
        column-count: 1;
        column-gap: 0;
    }

    .footer-col ul li {
        margin-bottom: 16px;
    }

    .footer-col ul li a {
        font-size: 16px;
    }

    .footer-col p {
        font-size: 16px;
        width: 100%;
    }

    .footer-membership-columns {
        flex-direction: row;
        gap: 30px;
    }

    .footer-social-icons a {
        font-size: 24px;
    }

    .footer-bottom {
        font-size: 14px;
        padding: 10px 0;
    }

    .footer-logo {
        width: 90px;
    }

    .footer-heading {
        font-size: 20px;
    }
}

@media (min-width: 1441px) {
    .footer-main-footer {
        font-size: 16px;
    }

    .footer-icon {
        font-size: 24px;
    }

    .footer-newsletter {
        padding: 20px 60px;
    }

    .footer-newsletter-inner {
        flex-direction: row;
        gap: 15px;
        align-items: center;
    }

    .footer-newsletter-text {
        font-size: 16px;
        text-align: left;
    }

    .footer-newsletter-form {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        width: auto;
    }

    .footer-newsletter-form input {
        width: 250px;
    }

    .footer-newsletter-form button {
        width: auto;
        padding: 10px 18px;
    }

    .footer-info {
        padding: 20px 60px;
    }

    .footer-info-grid {
        gap: 30px;
        margin: 10px 10px 10px 50px;
    }

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

    .footer-col.wide {
        flex: 4;
    }

    .footer-col.wide ul {
        column-count: 2;
        column-gap: 20px;
    }

    .footer-col h4 {
        font-size: 20px;
    }

    .footer-col ul {
        column-count: 1;
        column-gap: 0;
    }

    .footer-col ul li {
        margin-bottom: 16px;
    }

    .footer-col ul li a {
        font-size: 16px;
    }

    .footer-col p {
        font-size: 16px;
        width: 100%;
    }

    .footer-membership-columns {
        flex-direction: row;
        gap: 30px;
    }

    .footer-social-icons a {
        font-size: 24px;
    }

    .footer-bottom {
        font-size: 14px;
        padding: 10px 0;
    }

    .footer-logo {
        width: 90px;
    }

    .footer-heading {
        font-size: 20px;
    }
}

/* =======================================
             Home page Styles       
=========================================*/
.home-hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url("../images/Hero_banner.jpg");
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-hero-content {
    position: relative;
    z-index: 10;
    max-width: 689px;
    padding-left: 6%;
    margin-top: 0px;
    margin-bottom: 0px;
}

.home-hero-content h3 {
    /* font-family: "Montserrat" !important; */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    font-size: 59px;
    font-weight: bold;
    color: rgb(31, 31, 32);
    line-height: 1.3;
    opacity: 0;
    text-align: inherit;
    margin-top: 30px;
    margin-bottom: 0px;
}

.home-hero-content p {
    font-size: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    margin-top: 1px;
    margin-bottom: 50px;
    color: rgb(6, 22, 58);
    opacity: 0;
}

.home-hero-content .btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px 0px 20px 0px;
    background-color: #fff;
    color: rgb(57, 49, 133);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

.home-hero-content .btn:hover {
    background-color: rgb(57, 49, 133);
    color: #fff;
}

/* Add the new fade-in keyframes and class */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.home-fade-in {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}

.home-fade-in.delay-1 {
    animation-delay: 0.5s;
}

.home-fade-in.delay-2 {
    animation-delay: 1s;
}


/* === Connect, Cultivate, Create Section Styles === */
.home-connect-section {
    background-color: #f8f8f8;
    padding: 40px 0 0 0;
}

.home-section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    text-align: center;
    font-size: 28px;
    font-weight: 250;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

.home-icon-grid {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    gap: 60px;
}

.home-icon-item {
    flex: 1;
    max-width: 300px;
    padding: 20px;
    text-align: center;
}

.home-icon-item h3 {
    font-size: 28px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    margin: 10px 0 10px;
    color: #414141;
    font-weight: normal;
}

.home-icon-item p {
    font-size: 18px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    font-weight: lighter;
    color: #555;
    line-height: 1.4;
}

.home-icon-item .icon-bulb {
    width: 80px;
    height: 80px;
    display: inline-block;
    background-image: url("../images/Connect.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.home-icon-item .icon-chart {
    width: 80px;
    height: 80px;
    display: inline-block;
    background-image: url("../images/Cultivate.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.home-icon-item .icon-building {
    width: 80px;
    height: 80px;
    display: inline-block;
    background-image: url("../images/create.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}



/* === Membership Description Section Styles === */
.home-membership-description-section {
    padding: 40px 0;
    text-align: center;
    background-image: linear-gradient(to right, #f5931d, #3ab549);
    background-color: transparent;
}

.home-full-text {
    max-width: 1500px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    margin: 0 auto;
    font-size: 18px;
    text-align: center;
    color: #fff;
    line-height: 27px;
    font-weight: 500;
}


/* === Membership Section Styles === */
.home-membership-section {
    background-color: #e6f3f5;
    padding: 30px 20px;
}

.home-membership-title {
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #002244;
    margin-bottom: 20px;
    margin-top: 0px;

}

.home-membership-text {
    /* max-width: 1100px; */
    margin: 0 1%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

.home-membership-text a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.home-membership-text a:hover {
    text-decoration: underline;
    color: #5671df;
}

/* === NEW STYLES FOR AIPU Services Grid Section === */
.home-enrollment-grid-section {
    padding: 40px 0;
    background-color: #eaf3ff;
}


.home-membership-grid {
    display: grid;
    background-color: #fff;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 20px 20px;
}

.home-membership-card {
    /* background-color: #f8f8f8; */
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


.home-membership-card:hover {
    transform: translateY(0px);
    box-shadow: 0 8px 25px rgba(243, 241, 241, 0.15);
}

.home-card-image {
    width: 100%;
    height: 80px;
    object-fit: contain;
    margin: 0 0;
}

.home-card-title {
    font-size: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    font-weight: 450;
    color: #565c73;
    margin-bottom: 0px;
    margin-top: 5px;
}

.home-card-title a {
    text-decoration: none;
    color: inherit;
}

.home-card-title a:hover {
    color: #5671df;
    text-decoration: underline;
}

.home-card-text {
    font-size: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    color: #555;
    margin: 10px 0 20px 0;
}

/* --- Keyframe animation for the blinking effect --- */
@keyframes blink {
    0% {
        background-color: #6259b6;
        /* Violet */
    }

    50% {
        background-color: #b6b5dd;
        /* White */
    }

    100% {
        background-color: #6259b6;
        /* Violet */
    }
}

.home-card-btn {
    /* To center the button horizontally within the card */
    margin: 0 auto;

    /* Animation properties for the blinking effect */
    animation: blink 1s infinite;

    /* Other existing button styles */
    display: block;
    width: 30%;
    padding: 10px 25px;
    margin-top: 0px;
    margin-bottom: 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: none;
    /* Disable transition to allow the animation to work smoothly */
}

.home-card-btn:hover {
    background-color: #002244;
}


/* === NEW STYLES FOR FAQ SECTION === */
.home-faq-section {
    background-color: #e6f3f5;
    padding: 40px 0;
}

.home-faq-title {
    font-size: 32px;
    font-weight: bold;
    color: #002244;
    margin-bottom: 40px;
    margin-top: 0px;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
}

.home-faq-container {
    max-width: 1313px;
    margin: 0 auto;
    display: flex;
    /* Added for two columns */
    gap: 20px;
    /* Added for spacing between columns */
}

.home-faq-column {
    flex: 1;
    /* Added to make columns equal width */
}

.home-faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    cursor: pointer;
}

.home-faq-question {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.home-faq-question h3 {
    font-size: 14px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.home-arrow-icon {
    font-size: 1.2rem;
    color: #3b5bdb;
    transition: transform 0.3s ease;
}

.home-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.home-faq-answer p {
    margin: 0;
    padding: 10px 20px 10px 20px;
    font-size: 14px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
}

.home-faq-answer li {
    color: #555;
}

.home-faq-answer a {
    color: #3b5bdb;
    text-decoration: none;
}

.home-faq-answer a:hover {
    color: #383084;
    text-decoration: underline;
}

/* Active state */
.home-faq-item.active .home-faq-question {
    border-bottom: 1px solid transparent;
}

.home-faq-item.active .home-arrow-icon {
    transform: rotate(180deg);
}

.home-faq-item.active .home-faq-answer {
    max-height: 200px;
    /* A reasonable max-height to smoothly animate the expansion */
    padding-top: 10px;
    padding-bottom: 20px;
}


/* Carousel Section */
.home-carousel-section {
    padding: 50px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Main carousel container */
.home-cover-flow-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    perspective: 1000px;
    /* Perspective for 3D effect */
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.home-cover-flow-card {
    position: absolute;
    width: 320px;
    height: 400px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    /* Soft, prominent shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.6s ease;
    padding: 0;
    box-sizing: border-box;
}

.home-cover-flow-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.home-cover-flow-card .card-content {
    position: relative;
    z-index: 2;
    /* Ensure content is above the pseudo-element */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Styling for the image within the card */
.home-cover-flow-card .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.home-cover-flow-card:hover .card-image {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

/* Styling for the common Enroll Now button */
.home-enroll-btn {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background-color: #3b5bdb;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.home-enroll-btn:hover {
    background-color: #2a4aa1;
}

/* Card States */
.home-cover-flow-card.center {
    transform: translateX(0) scale(1) rotateY(0deg);
    z-index: 4;
    opacity: 1;
}

.home-cover-flow-card.center .home-enroll-btn {
    display: block;
}

.home-cover-flow-card.left {
    transform: translateX(-250px) scale(0.85) rotateY(20deg);
    z-index: 3;
    opacity: 0.8;
}

.home-cover-flow-card.right {
    transform: translateX(250px) scale(0.85) rotateY(-20deg);
    z-index: 3;
    opacity: 0.8;
}

.home-cover-flow-card.off-screen-left {
    transform: translateX(-500px) scale(0.7) rotateY(30deg);
    z-index: 1;
    opacity: 0;
}

.home-cover-flow-card.off-screen-right {
    transform: translateX(500px) scale(0.7) rotateY(-30deg);
    z-index: 1;
    opacity: 0;
}

.home-cover-flow-card.left .home-enroll-btn,
.home-cover-flow-card.right .home-enroll-btn,
.home-cover-flow-card.off-screen-left .home-enroll-btn,
.home-cover-flow-card.off-screen-right .home-enroll-btn {
    display: none;
}

/* Navigation Buttons */
.home-cover-flow-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 5;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-cover-flow-nav-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.home-cover-flow-nav-btn.prev-btn {
    left: 20%;
}

.home-cover-flow-nav-btn.next-btn {
    right: 20%;
}

/* Carousel Dots */
.home-carousel-dots {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    gap: 10px;
    z-index: 5;
}

.home-dot {
    width: 10px;
    height: 10px;
    background-color: #aaa;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.home-dot.active {
    background-color: #3b5bdb;
}


/* ==== Callback Section ==== */
.home-callback-section {
    background-color: #f0fef8;
    padding: 40px 20px;
}

.home-callback-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.home-callback-icon {
    flex: 0 0 100px;
    height: 150px;
    margin-bottom: 60px;
}

.home-callback-content {
    flex: 1;
}

.home-callback-content h2 {
    font-size: 32px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
    color: #0a0a23;
}

.home-callback-content p {
    color: #555;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    margin-bottom: 20px;
}

.home-callback-form {
    display: flex;

    gap: 10px;
}

.home-callback-form input,
.home-callback-form select {
    flex: 1;
    min-width: 200px;
    padding: 12px 12px 12px 12px;
    border-radius: 25px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
}

.home-callback-form button {
    padding: 12px 25px;
    border: none;
    background: #2b2b88;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    transition: background 0.3s ease;
}

.home-callback-form button:hover {
    background: #1e1e66;
}

/* Add styles for the new message box */
.home-callback-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    display: none;
    /* Initially hidden */
}

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

.home-callback-form .error {
    color: red;
    font-size: 13px;
    margin-top: 4px;
    display: block;
    line-height: 1.2;
}


@media (max-width: 480px) {
    .home-hero-section {
        height: auto;
        width: 100%;
        padding: 60px 0;
        background-size: cover;
        background-position: top;
    }

    .home-hero-content {
        max-width: 80%;
        padding-left: 6%;
    }

    .home-hero-content h3 {
        font-size: 28px;
        margin-top: 20px;
    }

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

    .home-hero-content .btn {
        padding: 10px 10px;
        font-size: 14px;
    }

    .home-fade-in {
        animation-duration: 0.8s;
    }

    .home-fade-in.delay-1 {
        animation-delay: 0.3s;
    }

    .home-fade-in.delay-2 {
        animation-delay: 0.6s;
    }

    .home-connect-section {
        padding: 20px 0 0 0;
    }

    .home-section-title {
        font-size: 22px;
        padding: 0 15px;
    }

    .home-icon-grid {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }

    .home-icon-item {
        max-width: 100%;
        padding: 0 5%;
    }

    .home-icon-item h3 {
        font-size: 22px;
    }

    .home-icon-item p {
        font-size: 16px;
    }

    .home-icon-item .icon-bulb,
    .home-icon-item .icon-chart,
    .home-icon-item .icon-building {
        width: 60px;
        height: 60px;
    }

    .home-membership-description-section {
        padding: 20px 0;
    }

    .home-full-text {
        font-size: 16px;
        padding: 0 20px;
    }

    .home-membership-section {
        padding: 20px 20px;
    }

    .home-membership-title {
        font-size: 24px;
    }

    .home-membership-text {
        font-size: 16px;
        padding: 0 10px;
    }

    .home-membership-text a {
        font-size: 16px;
    }

    .home-enrollment-grid-section {
        padding: 20px 0;
    }

    .home-membership-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 10px 10px 10px;
    }

    .home-membership-card {
        padding: 15px 20px;
    }

    .home-card-image {
        height: 60px;
    }

    .home-card-title {
        font-size: 18px;
    }

    .home-card-title a {
        font-size: 18px;
    }

    .home-card-text {
        font-size: 14px;
        margin: 8px 0 15px 0;
    }

    .home-card-btn {
        width: 50%;
        padding: 10px 10px;
        font-size: 14px;
    }

    .home-faq-section {
        padding: 20px 0;
    }

    .home-faq-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .home-faq-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding: 0 10%;
    }

    .home-faq-column {
        width: 100%;
    }

    .home-faq-item {
        width: 100%;
        font-size: 14px;
    }

    .home-faq-question {
        padding: 15px;
    }

    .home-faq-question h3 {
        font-size: 14px;
    }

    .home-arrow-icon {
        font-size: 1rem;
    }

    .home-faq-answer {
        padding: 0 15px;
    }

    .home-faq-answer p {
        font-size: 14px;
        padding: 8px 15px 8px 15px;
    }

    .home-faq-answer li {
        font-size: 14px;
    }

    .home-faq-answer a {
        font-size: 14px;
    }

    .home-carousel-section {
        padding: 30px 0;
        overflow: visible;
    }

    .home-cover-flow-carousel {
        height: 300px;
        max-width: 100%;
        padding: 0 20px;
        perspective: 800px;
        margin: 0 auto;
        overflow: hidden;
    }

    .home-cover-flow-card {
        width: 250px;
        height: 300px;
    }

    .home-cover-flow-card:before {
        border-radius: 15px;
    }

    .home-cover-flow-card .card-content {
        padding: 10px;
    }

    .home-cover-flow-card .card-image {
        border-radius: 15px;
    }

    .home-enroll-btn {
        padding: 10px;
        font-size: 14px;
    }

    .home-cover-flow-card.center {
        transform: translateX(0) scale(1) rotateY(0deg);
    }

    .home-cover-flow-card.left {
        transform: translateX(-180px) scale(0.85) rotateY(20deg);
    }

    .home-cover-flow-card.right {
        transform: translateX(180px) scale(0.85) rotateY(-20deg);
    }

    .home-cover-flow-card.off-screen-left {
        transform: translateX(-350px) scale(0.7) rotateY(30deg);
    }

    .home-cover-flow-card.off-screen-right {
        transform: translateX(350px) scale(0.7) rotateY(-30deg);
    }

    .home-cover-flow-nav-btn.prev-btn {
        left: 10%;
    }

    .home-cover-flow-nav-btn.next-btn {
        right: 10%;
    }

    .home-carousel-dots {
        bottom: 10px;
    }

    .home-dot {
        width: 8px;
        height: 8px;
    }

    .home-callback-section {
        padding: 20px 10px;
    }

    .home-callback-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
        padding: 10px;
    }

    .home-callback-icon {
        flex: 0 0 80px;
        height: 100px;
        margin-bottom: 20px;
        align-self: center;
    }

    .home-callback-content {
        text-align: center;
    }

    .home-callback-content h2 {
        font-size: 24px;
    }

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

    .home-callback-form {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .home-callback-form input,
    .home-callback-form select,
    .home-callback-form button {
        width: 80%;
        font-size: 14px;
    }

    .home-callback-form button {
        padding: 10px;
        font-size: 14px;
    }

    .home-callback-message {
        font-size: 14px;
        padding: 10px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .home-hero-section {
        height: auto;
        width: 100%;
        padding: 80px 0;
        background-size: cover;
        background-position: top;
    }

    .home-hero-content {
        max-width: 85%;
        padding-left: 8%;
    }

    .home-hero-content h3 {
        font-size: 32px;
        margin-top: 25px;
    }

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

    .home-hero-content .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .home-fade-in {
        animation-duration: 0.8s;
    }

    .home-fade-in.delay-1 {
        animation-delay: 0.3s;
    }

    .home-fade-in.delay-2 {
        animation-delay: 0.6s;
    }

    .home-connect-section {
        padding: 30px 0 0 0;
    }

    .home-section-title {
        font-size: 26px;
        padding: 0 20px;
    }

    .home-icon-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 25px;
        justify-content: space-around;
        margin-top: 30px;
    }

    .home-icon-item {
        flex: 0 0 45%;
        max-width: 45%;
        padding: 0 5%;
    }

    .home-icon-item h3 {
        font-size: 24px;
    }

    .home-icon-item p {
        font-size: 16px;
    }

    .home-icon-item .icon-bulb,
    .home-icon-item .icon-chart,
    .home-icon-item .icon-building {
        width: 70px;
        height: 70px;
    }

    .home-membership-description-section {
        padding: 30px 0;
    }

    .home-full-text {
        font-size: 17px;
        padding: 0 30px;
    }

    .home-membership-section {
        padding: 30px 30px;
    }

    .home-membership-title {
        font-size: 26px;
    }

    .home-membership-text {
        font-size: 16px;
        padding: 0 15px;
    }

    .home-membership-text a {
        font-size: 16px;
    }

    .home-enrollment-grid-section {
        padding: 30px 0;
    }

    .home-membership-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        padding: 20px;
    }

    .home-membership-card {
        padding: 20px;
    }

    .home-card-image {
        height: 70px;
    }

    .home-card-title {
        font-size: 20px;
    }

    .home-card-title a {
        font-size: 20px;
    }

    .home-card-text {
        font-size: 15px;
        margin: 10px 0 18px 0;
    }

    .home-card-btn {
        width: 60%;
        padding: 12px 24px;
        font-size: 1rem;
    }

    .home-faq-section {
        padding: 30px 0;
    }

    .home-faq-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .home-faq-container {
        flex-direction: column;
        gap: 25px;
        align-items: center;
        padding: 0 10%;
    }

    .home-faq-column {
        width: 100%;
    }

    .home-faq-item {
        width: 100%;
        font-size: 15px;
    }

    .home-faq-question {
        padding: 18px;
    }

    .home-faq-question h3 {
        font-size: 15px;
    }

    .home-arrow-icon {
        font-size: 1.1rem;
    }

    .home-faq-answer {
        padding: 0 18px;
    }

    .home-faq-answer p {
        font-size: 15px;
        padding: 8px 15px;
    }

    .home-faq-answer li {
        font-size: 15px;
    }

    .home-faq-answer a {
        font-size: 15px;
    }

    .home-carousel-section {
        padding: 40px 0;
        overflow: visible;
    }

    .home-cover-flow-carousel {
        height: 320px;
        max-width: 100%;
        padding: 0 30px;
        perspective: 1000px;
        margin: 0 auto;
        overflow: hidden;
    }

    .home-cover-flow-card {
        width: 260px;
        height: 320px;
    }

    .home-cover-flow-card:before {
        border-radius: 16px;
    }

    .home-cover-flow-card .card-content {
        padding: 12px;
    }

    .home-cover-flow-card .card-image {
        border-radius: 16px;
    }

    .home-enroll-btn {
        padding: 10px 24px;
        font-size: 1rem;
    }

    .home-cover-flow-card.center {
        transform: translateX(0) scale(1) rotateY(0deg);
    }

    .home-cover-flow-card.left {
        transform: translateX(-200px) scale(0.9) rotateY(18deg);
    }

    .home-cover-flow-card.right {
        transform: translateX(200px) scale(0.9) rotateY(-18deg);
    }

    .home-cover-flow-card.off-screen-left {
        transform: translateX(-400px) scale(0.75) rotateY(25deg);
    }

    .home-cover-flow-card.off-screen-right {
        transform: translateX(400px) scale(0.75) rotateY(-25deg);
    }

    .home-cover-flow-nav-btn.prev-btn {
        left: 8%;
    }

    .home-cover-flow-nav-btn.next-btn {
        right: 8%;
    }

    .home-carousel-dots {
        bottom: 12px;
    }

    .home-dot {
        width: 10px;
        height: 10px;
    }

    .home-callback-section {
        padding: 30px 20px;
    }

    .home-callback-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding: 20px;
    }

    .home-callback-icon {
        flex: 0 0 100px;
        height: 120px;
        margin-bottom: 25px;
        align-self: center;
    }

    .home-callback-content {
        text-align: center;
    }

    .home-callback-content h2 {
        font-size: 26px;
    }

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

    .home-callback-form {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .home-callback-form input,
    .home-callback-form select,
    .home-callback-form button {
        width: 75%;
        font-size: 15px;
    }

    .home-callback-form button {
        padding: 14px;
        font-size: 15px;
    }

    .home-callback-message {
        font-size: 15px;
        padding: 12px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .home-hero-section {
        height: auto;
        width: 100%;
        padding: 70px 0;
        background-size: cover;
        background-position: center top;
    }

    .home-hero-content {
        max-width: 62%;
        padding-left: 8%;
        line-height: 1.4;
    }

    .home-hero-content h3 {
        font-size: 36px;
        margin-top: 30px;
    }

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

    .home-hero-content .btn {
        padding: 10px 18px;
        font-size: 16px;
    }

    .home-fade-in {
        animation-duration: 0.8s;
    }

    .home-fade-in.delay-1 {
        animation-delay: 0.3s;
    }

    .home-fade-in.delay-2 {
        animation-delay: 0.6s;
    }

    .home-connect-section {
        padding: 40px 0 0 0;
    }

    .home-section-title {
        font-size: 26px;
        padding: 0 50px;
    }

    .home-icon-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        margin-top: 40px;
    }

    .home-icon-item {
        flex: 0 0 30%;
        max-width: 30%;
        padding: 0 5%;
    }

    .home-icon-item h3 {
        font-size: 26px;
    }

    .home-icon-item p {
        font-size: 16px;
    }

    .home-icon-item .icon-bulb,
    .home-icon-item .icon-chart,
    .home-icon-item .icon-building {
        width: 80px;
        height: 80px;
    }

    .home-membership-description-section {
        padding: 40px 0;
    }

    .home-full-text {
        font-size: 16px;
        padding: 0 60px;
    }

    .home-membership-section {
        padding: 40px;
    }

    .home-membership-title {
        font-size: 28px;
    }

    .home-membership-text {
        font-size: 16px;
        padding: 0 25px;
    }

    .home-membership-text a {
        font-size: 17px;
    }

    .home-enrollment-grid-section {
        padding: 40px 0;
    }

    .home-membership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 35px;
    }

    .home-membership-card {
        padding: 25px;
    }

    .home-card-image {
        height: 80px;
    }

    .home-card-title {
        font-size: 22px;
    }

    .home-card-title a {
        font-size: 26px;
    }

    .home-card-text {
        font-size: 16px;
        margin: 10px 0 20px 0;
    }

    .home-card-btn {
        /* border-radius: 25px; */
        padding: 10px 18px;
        font-size: 16px;
    }

    .home-faq-section {
        padding: 40px 0;
    }

    .home-faq-title {
        font-size: 28px;
        margin-bottom: 30px;
        display: block;
    }

    .home-faq-container {
        flex-direction: row;
        gap: 25;
        align-items: center;
        padding: 0 7%;
    }

    .home-faq-column {
        width: 48%;
    }

    .home-faq-item {
        width: 100%;
        font-size: 18px;
    }

    .home-faq-question {
        padding: 20px;
    }

    .home-faq-question h3 {
        font-size: 16px;
    }

    .home-arrow-icon {
        font-size: 1.2rem;
    }

    .home-faq-answer {
        padding: 0 20px;
    }

    .home-faq-answer p {
        font-size: 16px;
        padding: 10px 20px;
    }

    .home-faq-answer li {
        font-size: 16px;
    }

    .home-faq-answer a {
        font-size: 16px;
    }

    .home-carousel-section {
        padding: 50px 0;
        overflow: visible;
    }

    .home-cover-flow-carousel {
        height: 340px;
        max-width: 90%;
        padding: 0 40px;
        perspective: 1200px;
        margin: 0 auto;
        overflow: hidden;
    }

    .home-cover-flow-card {
        width: 280px;
        height: 340px;
    }

    .home-cover-flow-card:before {
        border-radius: 18px;
    }

    .home-cover-flow-card .card-content {
        padding: 14px;
    }

    .home-cover-flow-card .card-image {
        border-radius: 18px;
    }

    .home-enroll-btn {
        padding: 10px 18px;
        font-size: 16px;
    }

    .home-cover-flow-card.center {
        transform: translateX(0) scale(1) rotateY(0deg);
    }

    .home-cover-flow-card.left {
        transform: translateX(-220px) scale(0.95) rotateY(15deg);
    }

    .home-cover-flow-card.right {
        transform: translateX(220px) scale(0.95) rotateY(-15deg);
    }

    .home-cover-flow-card.off-screen-left {
        transform: translateX(-440px) scale(0.8) rotateY(25deg);
    }

    .home-cover-flow-card.off-screen-right {
        transform: translateX(440px) scale(0.8) rotateY(-25deg);
    }

    .home-cover-flow-nav-btn.prev-btn {
        left: 5%;
    }

    .home-cover-flow-nav-btn.next-btn {
        right: 5%;
    }

    .home-carousel-dots {
        bottom: 14px;
    }

    .home-dot {
        width: 10px;
        height: 10px;
    }

    .home-callback-section {
        padding: 40px 0px;
    }

    .home-callback-container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 40px;
        padding: 0px 50px;
        align-items: flex-start;
    }

    .home-callback-icon {
        flex: 0 0 120px;
        height: 140px;
        align-self: center;
        margin-left: 5px;
    }

    .home-callback-content {
        text-align: flex-start;
        flex: 1;
    }

    .home-callback-content h2 {
        font-size: 28px;
    }

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

    .home-callback-form {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        width: 90%;
        flex: 1;
        justify-content: space-between;
    }

    .home-callback-form input {
        display: block;
        justify-content: center;
        flex: 1 1 40%;
        font-size: 16px;
    }

    .home-callback-form select {
        display: block;
        justify-content: center;
        flex: 1 1 100%;
        font-size: 16px;
    }

    .home-callback-form button {
        align-items: center;
        padding: 10px;
        font-size: 16px;
        width: 40%;
        margin-top: 10px;
    }

    .home-callback-message {
        font-size: 16px;
        padding: 14px;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .home-hero-section {
        height: auto;
        width: 100%;
        padding: 80px 0;
        background-size: cover;
        background-position: center top;
    }

    .home-hero-content {
        max-width: 50%;
        padding-left: 7%;
    }

    .home-hero-content h3 {
        font-size: 58px;
        margin-top: 10px;
    }

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

    .home-hero-content .btn {
        padding: 16px 32px;
        font-size: 18px;
    }

    .home-fade-in {
        animation-duration: 0.8s;
    }

    .home-fade-in.delay-1 {
        animation-delay: 0.3s;
    }

    .home-fade-in.delay-2 {
        animation-delay: 0.6s;
    }

    .home-connect-section {
        padding: 50px 0 0 0;
    }

    .home-section-title {
        font-size: 32px;
        padding: 0 40px;
    }

    .home-icon-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 35px;
        justify-content: space-evenly;
        margin-top: 50px;
    }

    .home-icon-item {
        flex: 0 0 25%;
        max-width: 25%;
        padding: 0 5%;
    }

    .home-icon-item h3 {
        font-size: 26px;
    }

    .home-icon-item p {
        font-size: 18px;
    }

    .home-icon-item .icon-bulb,
    .home-icon-item .icon-chart,
    .home-icon-item .icon-building {
        width: 90px;
        height: 90px;
    }

    .home-membership-description-section {
        padding: 50px 0;
    }

    .home-full-text {
        font-size: 20px;
        padding: 0 80px;
    }

    .home-membership-section {
        padding: 50px;
    }

    .home-membership-title {
        font-size: 32px;
    }

    .home-membership-text {
        font-size: 20px;
        padding: 0 25px;
    }

    .home-membership-text a {
        font-size: 18px;
    }

    .home-enrollment-grid-section {
        padding: 50px 0;
    }

    .home-membership-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding: 35px;
    }

    .home-membership-card {
        padding: 30px;
    }

    .home-card-image {
        height: 90px;
    }

    .home-card-title {
        font-size: 24px;
    }

    .home-card-title a {
        font-size: 24px;
    }

    .home-card-text {
        font-size: 20px;
        margin: 12px 0 25px 0;
    }

    .home-card-btn {
        padding: 10px 18px;
        font-size: 18px;
    }

    .home-faq-section {
        padding: 50px 0;
    }

    .home-faq-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .home-faq-container {
        flex-direction: row;
        gap: 40px;
        align-items: flex-start;
        padding: 0 10%;
    }

    .home-faq-column {
        width: 48%;
    }

    .home-faq-item {
        width: 100%;
        font-size: 18px;
    }

    .home-faq-question {
        padding: 25px;
    }

    .home-faq-question h3 {
        font-size: 18px;
    }

    .home-arrow-icon {
        font-size: 1.4rem;
    }

    .home-faq-answer {
        padding: 0 25px;
    }

    .home-faq-answer p {
        font-size: 18px;
        padding: 12px 25px;
    }

    .home-faq-answer li {
        font-size: 18px;
    }

    .home-faq-answer a {
        font-size: 18px;
    }

    .home-carousel-section {
        padding: 60px 0;
        overflow: visible;
    }

    .home-cover-flow-carousel {
        height: 380px;
        max-width: 90%;
        padding: 0 50px;
        perspective: 1500px;
        margin: 0 auto;
        overflow: hidden;
    }

    .home-cover-flow-card {
        width: 320px;
        height: 380px;
    }

    .home-cover-flow-card:before {
        border-radius: 20px;
    }

    .home-cover-flow-card .card-content {
        padding: 16px;
    }

    .home-cover-flow-card .card-image {
        border-radius: 20px;
    }

    .home-enroll-btn {
        padding: 10px 18px;
        font-size: 18px;
    }

    .home-cover-flow-card.center {
        transform: translateX(0) scale(1) rotateY(0deg);
    }

    .home-cover-flow-card.left {
        transform: translateX(-250px) scale(0.95) rotateY(12deg);
    }

    .home-cover-flow-card.right {
        transform: translateX(250px) scale(0.95) rotateY(-12deg);
    }

    .home-cover-flow-card.off-screen-left {
        transform: translateX(-500px) scale(0.85) rotateY(20deg);
    }

    .home-cover-flow-card.off-screen-right {
        transform: translateX(500px) scale(0.85) rotateY(-20deg);
    }

    .home-cover-flow-nav-btn.prev-btn {
        left: 7%;
    }

    .home-cover-flow-nav-btn.next-btn {
        right: 7%;
    }

    .home-carousel-dots {
        bottom: 18px;
    }

    .home-dot {
        width: 12px;
        height: 12px;
    }

    .home-callback-section {
        padding: 50px 40px;
    }

    .home-callback-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 50px;
        margin: auto;
    }

    .home-callback-icon {
        flex: 0 0 140px;
        height: 160px;
        align-self: center;
    }

    .home-callback-content {
        text-align: left;
        flex: 1;
    }

    .home-callback-content h2 {
        font-size: 28px;
    }

    .home-callback-content p {
        font-size: 20px;
    }

    .home-callback-form {
        display: flex;
        flex-direction: row;
        gap: 25px;
        width: 100%;
        justify-content: space-between;
        align-items: flex-start;
    }

    .home-callback-form input {
        width: 30%;
        font-size: 18px;
        padding: 8px 10px;
    }

    .home-callback-form select {
        width: 30%;
        font-size: 18px;
        padding: 10px 15px;
    }

    .home-callback-form button {
        padding: 10px 18px;
        font-size: 18px;
        width: 10%;
        align-self: flex-start;
    }

    .home-callback-message {
        font-size: 18px;
        padding: 16px;
    }
}

@media (min-width: 1441px) {
    .home-hero-section {
        height: auto;
        width: 100%;
        padding: 90px 0;
        background-size: cover;
        background-position: center top;
    }

    .home-hero-content {
        max-width: 50%;
        padding-left: 7%;
    }

    .home-hero-content h3 {
        font-size: 60px;
        margin-top: 10px;
    }

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

    .home-hero-content .btn {
        padding: 10px 18px;
        font-size: 18px;
    }

    .home-fade-in {
        animation-duration: 0.8s;
    }

    .home-fade-in.delay-1 {
        animation-delay: 0.3s;
    }

    .home-fade-in.delay-2 {
        animation-delay: 0.6s;
    }

    .home-connect-section {
        padding: 60px 0 0 0;
    }

    .home-section-title {
        font-size: 30px;
        padding: 0 60px;
    }

    .home-icon-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 40px;
        justify-content: space-evenly;
        margin-top: 60px;
    }

    .home-icon-item {
        flex: 0 0 20%;
        max-width: 20%;
    }

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

    .home-icon-item p {
        font-size: 20px;
    }

    .home-icon-item .icon-bulb,
    .home-icon-item .icon-chart,
    .home-icon-item .icon-building {
        width: 100px;
        height: 100px;
    }

    .home-membership-description-section {
        padding: 60px 30px;
    }

    .home-full-text {
        font-size: 20px;
        padding: 0 70px;
    }

    .home-membership-section {
        padding: 60px;
    }

    .home-membership-title {
        font-size: 30px;
    }

    .home-membership-text {
        font-size: 20px;
        padding: 0 30px;
    }

    .home-membership-text a {
        font-size: 20px;
    }

    .home-enrollment-grid-section {
        padding: 60px 0;
    }

    .home-membership-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
        padding: 40px;
    }

    .home-membership-card {
        padding: 10px;
    }

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

    .home-card-title {
        font-size: 28px;
    }

    .home-card-title a {
        font-size: 28px;
    }

    .home-card-text {
        font-size: 20px;
        margin: 15px 0 15px 0;
    }

    .home-card-btn {
        width: auto;
        padding: 10px 18px;
        font-size: 18px;
    }

    .home-faq-section {
        padding: 60px 0;
    }

    .home-faq-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .home-faq-container {
        flex-direction: row;
        gap: 50px;
        align-items: flex-start;
        padding: 0 7%;
    }

    .home-faq-column {
        width: 48%;
    }

    .home-faq-item {
        width: 100%;
        font-size: 20px;
    }

    .home-faq-question {
        padding: 20px;
    }

    .home-faq-question h3 {
        font-size: 20px;
    }

    .home-arrow-icon {
        font-size: 1.6rem;
    }

    .home-faq-answer {
        padding: 0 30px;
    }

    .home-faq-answer p {
        font-size: 20px;
        padding: 15px 30px;
    }

    .home-faq-answer li {
        font-size: 20px;
    }

    .home-faq-answer a {
        font-size: 20px;
    }

    .home-carousel-section {
        padding: 70px 0;
        overflow: visible;
    }

    .home-cover-flow-carousel {
        height: 420px;
        max-width: 90%;
        padding: 0 60px;
        perspective: 2000px;
        margin: 0 auto;
        overflow: hidden;
    }

    .home-cover-flow-card {
        width: 360px;
        height: 420px;
    }

    .home-cover-flow-card:before {
        border-radius: 25px;
    }

    .home-cover-flow-card .card-content {
        padding: 18px;
    }

    .home-cover-flow-card .card-image {
        border-radius: 25px;
    }

    .home-enroll-btn {
        padding: 10px 18px;
        font-size: 18px;
    }

    .home-cover-flow-card.center {
        transform: translateX(0) scale(1) rotateY(0deg);
    }

    .home-cover-flow-card.left {
        transform: translateX(-280px) scale(0.95) rotateY(10deg);
    }

    .home-cover-flow-card.right {
        transform: translateX(280px) scale(0.95) rotateY(-10deg);
    }

    .home-cover-flow-card.off-screen-left {
        transform: translateX(-560px) scale(0.85) rotateY(18deg);
    }

    .home-cover-flow-card.off-screen-right {
        transform: translateX(560px) scale(0.85) rotateY(-18deg);
    }

    .home-cover-flow-nav-btn.prev-btn {
        left: 7%;
    }

    .home-cover-flow-nav-btn.next-btn {
        right: 7%;
    }

    .home-carousel-dots {
        bottom: 22px;
    }

    .home-dot {
        width: 14px;
        height: 14px;
    }

    .home-callback-section {
        padding: 20px 20px;
    }

    .home-callback-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 60px;
        margin: auto;
    }

    .home-callback-icon {
        flex: 0 0 160px;
        height: 180px;
        align-self: center;
    }

    .home-callback-content {
        text-align: left;
        flex: 1;
    }

    .home-callback-content h2 {
        font-size: 28px;
    }

    .home-callback-content p {
        font-size: 20px;
    }

    .home-callback-form .form-group {

        flex-direction: row;
        gap: 30px;
        width: 100%;
        justify-content: space-between;
        align-items: flex-start;
    }

    .home-callback-form input {
        width: 30%;
        font-size: 18px;
        padding: 8px 10px;
    }

    .home-callback-form select {
        width: 30%;
        font-size: 18px;
        padding: 10px 15px;
    }

    .home-callback-form button {
        padding: 10px 18px;
        font-size: 18px;
        width: 10%;
        align-self: flex-start;
    }

    .home-callback-message {
        font-size: 18px;
        padding: 14px;
    }
}



/*=================================*/
/* Distinctions Page Styles */
/*==================================*/

.distinctions-intro {
    text-align: center;
    padding: 20px 400px;
}

.distinctions-intro h1 {
    font-size: 2.0rem;
    color: #333;
    font-weight: bold;
    margin: 20px 0;
}

.distinctions-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-top: 4px;
}

.distinctions-intro-underline {
    width: 150px;
    height: 4px;
    margin: 5px auto 20px auto;
    border-radius: 3px;
    background: linear-gradient(to right, #dfe2ecff, #426de2, #e6ebfaff);
}

.distinctions-intro-line {
    height: 2px;
    width: 80px;
    margin-top: 3px;
    background: linear-gradient(to right, #f5931d, #3ab549, #6c63ff);
}

.distinctions-highlight-gradient {
    background: linear-gradient(to right, #f5931d, #3ab549, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.distinctions-heading-divider {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 10px 0 20px;
}

.distinctions-heading-divider span {
    width: 10px;
    height: 10px;
    background: orange;
    border-radius: 50%;
}

.distinctions-intro .heading-divider span:nth-child(2) {
    background: #3ab549;
}

.distinctions-details {
    padding: 20px 20px;
    background-color: #f9f9f9;
}

.distinctions-details-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    gap: 30px;
    align-items: center;
}

.distinctions-details-text {
    flex: 1;
    min-width: 700px;

    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.distinctions-details-image {
    flex: 1;
    min-width: 300px;
}

.distinctions-details-image img {
    width: 100%;
    border-radius: 10px;
}

.distinctions-details-image img {
    height: 300px;
    object-fit: cover;
}

.distinctions-categories-of-distinction {
    padding: 25px;
    background: #fff;
    text-align: center;
}

.distinctions-categories-of-distinction h2 {
    font-size: 34px;
    font-weight: normal;
    margin-bottom: 10px;
    margin-top: 15px;
    color: #201759;
}

.distinctions-header-underline {
    width: 150px;
    height: 4px;
    margin: 0 auto 30px auto;
    border-radius: 3px;
    background: linear-gradient(to right, #ffebcf, #f5931d, #ffebcf);
}

.distinctions-intro {
    text-align: center;
    /* keeps H1 centered */
}

/* .distinction-btn {
    display: block;
    width: fit-content;
    margin: 10px auto 0 0;
} */

.distinction-btn {
    width: fit-content;
    display: block;
    margin: 10px 0 0 auto;
    background: #3f51b5;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.distinction-btn:hover {
    background: #303f9f;
}


.distinctions-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    width: 87%;
    margin: 0 auto;
}


.distinctions-category-card {
    background: #fff;
    border-radius: 12px;
    border-top: 6px solid transparent;
    background-image: linear-gradient(white, white),
        linear-gradient(to right, #f5931d, #3ab549, #6c63ff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.distinctions-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.distinctions-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.distinctions-icon-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #3f51b5;
    border-radius: 50%;
    animation: pulse-circle 1.5s infinite ease-in-out;
}

@keyframes pulse-circle {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.125);
        opacity: 0.8;
    }

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

.distinctions-icon i {
    font-size: 2rem;
    color: #3f51b5;
    z-index: 1;
}

.distinctions-category-card h3 {
    font-size: 1.5rem;
    padding: 10px;

    color: #201759;
    margin: 10px 0;
    line-height: 1.2;
}

.distinctions-category-card h3 .green {
    background: linear-gradient(to right, #38B549, #F6931D, #34305F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.distinctions-category-card p {
    font-size: 16px;
    text-align: left;
    color: #555;
    margin-top: auto;
}

.distinctions-category-card a {
    margin-top: auto;
    padding: 10px 20px;
    text-decoration: none;
    background-color: #26255f;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.distinctions-category-card a:hover {
    background-color: #1c1b4d;
}


@media (max-width: 480px) {
    .distinctions-intro {
        padding: 20px 20px;
    }

    .distinctions-intro h1 {
        font-size: 1.5rem;
    }

    .distinctions-intro p {
        font-size: 14px;
        margin: 1% 3%;
    }

    .distinctions-intro-underline {
        width: 100px;
    }

    .distinctions-intro-line {
        width: 60px;
    }

    .distinctions-details-container {
        flex-direction: column;
        align-items: center;
        margin: 0 3%;
    }

    .distinctions-details-text {
        min-width: 100%;
        text-align: center;
        font-size: 14px;
    }

    .distinctions-details-image {
        min-width: 100%;
    }

    .distinctions-categories-grid {
        grid-template-columns: 1fr;
    }

    .distinctions-category-card {
        height: auto;
        /* Allow cards to adjust height based on content */
    }

    .distinctions-category-card h3 {
        font-size: 1.2rem;
        /* Adjust title size for smaller screens */
    }

    .distinctions-category-card p {
        font-size: 0.9rem;
        /* Adjust text size for smaller screens */
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .distinctions-intro {
        padding: 20px 30px;
    }

    .distinctions-intro h1 {
        font-size: 1.5rem;
    }

    .distinctions-intro p {
        margin: 1% 5%;
        font-size: 14px;
    }

    .distinctions-intro-underline {
        width: 100px;
    }

    .distinctions-intro-line {
        width: 60px;
    }

    .distinctions-details-container {
        flex-direction: column;
        align-items: center;
        margin: 0 5%;
    }

    .distinctions-details-text {
        min-width: 100%;
        text-align: center;
        font-size: 16px;
    }

    .distinctions-details-image {
        min-width: 100%;
    }

    .distinctions-categories-grid {
        grid-template-columns: 1fr;
    }

    .distinctions-category-card {
        height: auto;
        /* Allow cards to adjust height based on content */
    }

    .distinctions-category-card h3 {
        font-size: 1.3rem;
        /* Adjust title size for smaller screens */
    }

    .distinctions-category-card p {
        font-size: 1rem;
        /* Adjust text size for smaller screens */
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .distinctions-intro {
        padding: 20px 50px;
    }

    .distinctions-intro h1 {
        font-size: 2rem;
    }

    .distinctions-intro p {
        margin: 1% 7%;
        font-size: 18px;
    }

    .distinctions-intro-underline {
        width: 150px;
    }

    .distinctions-intro-line {
        width: 60px;
    }

    .distinctions-details-container {
        align-items: center;
        flex-direction: column;
        margin: 0 7%;
    }

    .distinctions-details-text {
        min-width: 100%;
        text-align: left;
        font-size: 16px;
    }

    .distinctions-details-image {
        min-width: 70%;
        min-height: 50%;
    }

    .distinctions-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .distinctions-category-card {
        height: auto;
    }

    .distinctions-category-card h3 {
        font-size: 1.3rem;
    }

    .distinctions-category-card p {
        font-size: 1rem;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .distinctions-intro {
        padding: 20px 100px;
    }

    .distinctions-intro h1 {
        font-size: 2rem;
    }

    .distinctions-intro p {
        margin-top: 4px;
        font-size: 16px;
        margin: 0 7%;
    }

    .distinctions-intro-underline {
        width: 100px;
    }

    .distinctions-intro-line {
        width: 60px;
    }

    .distinctions-details-container {
        flex-direction: row;
        align-items: center;
        margin: 1% 7%;
        max-width: fit-content;
    }

    .distinctions-details-text {
        min-width: 55%;
        text-align: left;
        font-size: 16px;
    }

    .distinctions-details-image {
        min-width: 45%;
    }

    .distinctions-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .distinctions-category-card {
        height: auto;
    }

    .distinctions-category-card h3 {
        font-size: 1.4rem;
    }

    .distinctions-category-card p {
        font-size: 1.1rem;
    }
}

@media (min-width: 1441px) {
    .distinctions-intro {
        padding: 20px 100px;
    }

    .distinctions-intro h1 {
        font-size: 2rem;
    }

    .distinctions-intro p {
        margin-top: 4px;
        font-size: 16px;
        margin: 1% 7%;
    }

    .distinctions-intro-underline {
        width: 100px;
    }

    .distinctions-intro-line {
        width: 60px;
    }

    .distinctions-details-container {
        flex-direction: row;
        align-items: center;
        margin: 0% 7%;
        max-width: fit-content;
    }

    .distinctions-details-text {
        min-width: 55%;
        text-align: left;
        font-size: 16px;
    }

    .distinctions-details-image {
        min-width: 45%;
    }

    .distinctions-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .distinctions-category-card {
        height: auto;
    }

    .distinctions-category-card h3 {
        font-size: 1.4rem;
    }

    .distinctions-category-card p {
        font-size: 1.1rem;
    }
}


/*==================================*/
/* Digital Awards Page Styles */
/*==================================*/

.digital-awards-intro {
    padding: 30px 10px;
    background-color: #fff;
}

.intro-container .intro-text-col .h1-head {
    font-size: 37px;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: auto;
    color: #201759;
}

.digital-highlight-gradient {
    background: linear-gradient(to right, #f5931d, #3ab549, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.digital-awards-intro h2 {
    font-size: 18px;
    font-weight: 400;
    margin-top: 16px;
    color: #393185;
}

.digital-awards-intro .heading-divider {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 10px 0 20px;
}

.digital-awards-intro .heading-divider span {
    width: 8px;
    height: 8px;
    background: #201759;
    border-radius: 50%;
}

.digital-awards-intro .intro-text {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.6;
}

.digital-awards-intro .intro-text p {
    text-align: left;
}

.digital-awards-intro .award-features {
    text-align: left;
    max-width: 500px;
    margin: 30px auto 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.digital-awards-intro .award-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.digital-awards-intro .award-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #444;
}

.digital-awards-intro .award-features li i {
    color: #393185;
    margin-right: 10px;
}

.digital-awards-intro .award-features li strong {
    color: #201759;
}

.digital-awards-intro {
    background-color: #fff;
    padding: 40px 20px;
}

.digital-awards-intro .intro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.digital-awards-intro .intro-text-col {
    flex: 1.2;
    min-width: 320px;
}

.digital-awards-intro .intro-image-col {
    flex: 1;
    min-width: 260px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.digital-awards-intro .intro-image-col img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.digital-awards-details {
    padding: 10px;
    background-color: #ffffff;
}

.digital-awards-details h2 {
    font-size: 26px;
    font-weight: 600;
    color: #201759;
    text-align: left;
    margin-bottom: 10px;
    margin-top: 0px;
}

.details-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.details-left {
    flex: 10;
    margin-left: 180px;
}

/* Right button */
.details-right {

    display: flex;
    justify-content: flex-end;
}

/* Button style */
.award-top-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(90deg, #ff7f50, #ff1493);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
}

.digital-awards-details .details-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.digital-awards-details .details-text {
    flex: 1;
    min-width: 400px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.digital-awards-details .details-image {
    flex: 1;
    min-width: 400px;
}

.digital-awards-details .details-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.digital-awards-grid-section {
    padding: 40px 10px;
    background: #fff;
    text-align: center;
}

.digital-awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.digital-award-card {
    background: #fff;
    border-radius: 12px;
    background-image: linear-gradient(white, white),
        linear-gradient(to right, #f5931d, #3ab549, #6c63ff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.digital-award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.digital-award-card .icon {
    font-size: 2rem;
    color: #3ab549;
    margin-bottom: 15px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.digital-award-card h3 {
    font-size: 1.4rem;
    margin: 10px 0 5px 5px;
    line-height: 1.2;
    font-weight: 600;
    background: linear-gradient(to right, #f5931d, #3ab549, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.digital-award-card .highlight-text {
    font-size: 1rem;
    font-weight: 500;
    color: #393185;
    line-height: 1.4;
    margin-top: auto;
    margin-bottom: 15px;
}

.digital-award-card p {
    font-size: 0.95rem;
    text-align: left;
    color: #666;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.4;
}

.digital-award-card p strong {
    color: #201759;
    font-weight: 600;
}

.apply-btn {
    display: flex;
    align-items: center;
    margin: auto;
    padding: 10px 20px;
    background-color: #201759;
    color: #fff !important;
    width: fit-content;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.distnctions-form-btn {
    display: flex;
    align-items: center;
    margin: auto;
    padding: 10px 20px;
    background-color: #201759;
    color: #fff !important;
    width: fit-content;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.digital-apply-btn:hover {
    background-color: #1a154c;
}

.digital-fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.digital-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


.digital-text-green {
    color: #3ab549;
    font-size: 20px;
}

@media (max-width: 480px) {

    /* Intro Section */
    .digital-awards-intro {
        padding: 25px 12px;
    }

    .digital-awards-intro .intro-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        margin: 0% 5%;
    }

    .digital-awards-intro .intro-text-col,
    .digital-awards-intro .intro-image-col {
        min-width: 100%;
        justify-content: center;
    }

    .digital-awards-intro .intro-image-col img {
        max-width: 90vw;
    }

    .digital-awards-intro .h1-head {
        font-size: 26px;
        text-align: center;
    }

    .digital-awards-intro h2 {
        font-size: 16px;
        text-align: center;
    }

    .digital-awards-intro .intro-text {
        font-size: 1rem;
        padding: 0 10px;
    }

    .digital-awards-intro .award-features {
        padding: 15px;
        margin-top: 20px;
    }

    .digital-awards-intro .award-features li {
        font-size: 0.95rem;
    }

    /* Details Section */
    .digital-awards-details .details-container {
        flex-direction: column;
        gap: 20px;
        margin: 0% 5%;
    }

    .digital-awards-details .details-card {
        flex-direction: column;
        padding: 16px;
        text-align: center;
    }

    .digital-awards-details .details-text,
    .digital-awards-details .details-image {
        min-width: 100%;
    }

    .digital-awards-details h2 {
        font-size: 22px;
        text-align: center;
    }

    .digital-awards-details .details-text {
        font-size: 1rem;
    }

    .digital-awards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 0% 5%;
    }

    .digital-award-card {
        padding: 18px 14px;
    }

    .digital-award-card h3 {
        font-size: 1.15rem;
    }

    .digital-award-card .highlight-text {
        font-size: 0.85rem;
    }

    .digital-award-card p {
        font-size: 0.8rem;
    }

    .digital-apply-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .digital-text-green {
        font-size: 18px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {

    .details-container {
        flex-direction: column;
        text-align: center;
    }

    .details-right {
        justify-content: center;
        margin-top: 15px;
    }

    /* Intro Section */
    .digital-awards-intro {
        padding: 35px 16px;
    }

    .digital-awards-intro .intro-container {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .digital-awards-intro .intro-text-col,
    .digital-awards-intro .intro-image-col {
        min-width: 100%;
        justify-content: center;
    }

    .digital-awards-intro .intro-image-col img {
        max-width: 95%;
    }

    .digital-awards-intro .h1-head {
        font-size: 30px;
        text-align: center;
    }

    .digital-awards-intro h2 {
        font-size: 17px;
        text-align: center;
    }

    .digital-awards-intro .intro-text {
        font-size: 1.05rem;
        padding: 0 12px;
    }

    .digital-awards-intro .award-features {
        padding: 18px;
        margin-top: 25px;
    }

    .digital-awards-intro .award-features li {
        font-size: 1rem;
    }

    /* Details Section */
    .digital-awards-details .details-container {
        flex-direction: column;
        gap: 25px;
    }

    .digital-awards-details .details-card {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .digital-awards-details .details-text,
    .digital-awards-details .details-image {
        min-width: 100%;
    }

    .digital-awards-details h2 {
        font-size: 24px;
        text-align: center;
    }

    .digital-awards-details .details-text {
        font-size: 1.05rem;
    }

    /* Awards Grid Section */
    .digital-awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .digital-award-card {
        padding: 22px 16px;
    }

    .digital-award-card h3 {
        font-size: 1.25rem;
    }

    .digital-award-card .highlight-text {
        font-size: 0.9rem;
    }

    .digital-award-card p {
        font-size: 0.9rem;
    }

    .digital-apply-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .digital-text-green {
        font-size: 19px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    /* Intro Section */
    .digital-awards-intro {
        padding: 40px 30px;
    }

    .digital-awards-intro .intro-container {
        flex-direction: column;
        gap: 35px;
        text-align: left;
        width: fit-content;
        margin: 0% 5%;
    }

    .digital-awards-intro .intro-text-col {
        flex: 1.2;
        min-width: 320px;
    }

    .digital-awards-intro .intro-image-col {
        flex: 1;
        min-width: 280px;
        justify-content: center;
    }

    .digital-awards-intro .intro-image-col img {
        max-width: 100%;
    }

    .digital-awards-intro .h1-head {
        font-size: 32px;
    }

    .digital-awards-intro h2 {
        font-size: 18px;
    }

    .digital-awards-intro .intro-text {
        font-size: 1.1rem;
    }

    .digital-awards-intro .award-features {
        padding: 20px;
        margin-top: 30px;
    }

    .digital-awards-intro .award-features li {
        font-size: 1rem;
    }

    /* Details Section */
    .digital-awards-details .details-container {
        flex-direction: row;
        gap: 30px;
        flex-wrap: wrap;
        margin: 0% 5%;
    }

    .digital-awards-details .details-card {
        flex-direction: row;
        padding: 20px;
    }

    .digital-awards-details .details-text,
    .digital-awards-details .details-image {
        min-width: 45%;
    }

    .digital-awards-details h2 {
        font-size: 26px;
    }

    .digital-awards-details .details-text {
        font-size: 1.1rem;
    }

    /* Awards Grid Section */
    .digital-awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        margin: 0% 5%;
    }

    .digital-award-card {
        padding: 25px 18px;
    }

    .digital-award-card h3 {
        font-size: 1.3rem;
    }

    .digital-award-card .highlight-text {
        font-size: 1rem;
    }

    .digital-award-card p {
        font-size: 0.95rem;
    }

    .digital-apply-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .digital-text-green {
        font-size: 20px;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {

    /* Intro Section */
    .digital-awards-intro {
        padding: 50px 40px;
    }

    .digital-awards-intro .intro-container {
        gap: 40px;
    }

    .digital-awards-intro .h1-head {
        font-size: 36px;
    }

    .digital-awards-intro h2 {
        font-size: 19px;
    }

    .digital-awards-intro .intro-text {
        font-size: 1.15rem;
    }

    .digital-awards-intro .award-features {
        padding: 22px;
        max-width: 600px;
    }

    .digital-awards-intro .award-features li {
        font-size: 1.05rem;
    }

    /* Details Section */
    .digital-awards-details .details-container {
        gap: 35px;
    }

    .digital-awards-details .details-card {
        padding: 25px;
    }

    .digital-awards-details .details-text {
        font-size: 1.15rem;
    }

    .digital-awards-details .details-image img {
        max-width: 100%;
    }

    /* Awards Grid Section */
    .digital-awards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .digital-award-card {
        padding: 28px 22px;
    }

    .digital-award-card h3 {
        font-size: 1.4rem;
    }

    .digital-award-card .highlight-text {
        font-size: 1rem;
    }

    .digital-award-card p {
        font-size: 1rem;
    }

    .digital-apply-btn {
        padding: 12px 24px;
        font-size: 1.05rem;
    }

    .digital-text-green {
        font-size: 21px;
    }
}

@media (min-width: 1441px) {

    /* Intro Section */
    .digital-awards-intro {
        padding: 60px 80px;
    }

    .digital-awards-intro .intro-container {
        max-width: 95%;
        gap: 50px;
    }

    .digital-awards-intro .h1-head {
        font-size: 40px;
    }

    .digital-awards-intro h2 {
        font-size: 20px;
    }

    .digital-awards-intro .intro-text {
        font-size: 1.2rem;
        max-width: 900px;
    }

    .digital-awards-intro .award-features {
        max-width: 650px;
        padding: 24px;
    }

    .digital-awards-intro .award-features li {
        font-size: 1.1rem;
    }

    /* Details Section */
    .digital-awards-details .details-container {
        max-width: 1100px;
        gap: 40px;
    }

    .digital-awards-details .details-card {
        padding: 28px;
    }

    .digital-awards-details .details-text {
        font-size: 1.2rem;
    }

    .digital-awards-details .details-image img {
        max-width: 100%;
    }

    /* Awards Grid Section */
    .digital-awards-grid {
        max-width: 88%;
        grid-template-columns: repeat(3, 1fr);
        gap: 45px;
    }

    .digital-award-card {
        padding: 30px 25px;
    }

    .digital-award-card h3 {
        font-size: 1.5rem;
    }

    .digital-award-card .highlight-text {
        font-size: 1.05rem;
    }

    .digital-award-card p {
        font-size: 1.05rem;
    }

    .digital-apply-btn {
        padding: 14px 28px;
        font-size: 1.1rem;
    }

    .digital-text-green {
        font-size: 22px;
    }
}


/*=====================================
            Job-Board Styles
======================================*/
/* Cards section */
.job-cards-section {
    padding: 40px 20px;
    background-color: #ffffff;
}

.job-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.job-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.job-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.job-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #3ab549, #f5931d, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.job-card h3 i {
    font-size: 1.8rem;
    margin-right: 15px;
    color: #3ab549;
}

.job-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.job-card .card-image {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    height: 220px;
}

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

.job-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #201759;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.job-btn:hover {
    background-color: #1a154c;
}

.job-fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.job-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 480px) {

    /* Section padding */
    .job-cards-section {
        padding: 30px 12px;
    }

    /* Grid: single column on small screens */
    .job-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Card styling adjustments */
    .job-card {
        padding: 20px;
    }

    .job-card h3 {
        font-size: 1.3rem;
    }

    .job-card h3 i {
        font-size: 1.6rem;
        margin-right: 10px;
    }

    .job-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .job-card .card-image {
        height: 160px;
        margin-top: 16px;
    }

    .job-card .card-image img {
        height: 100%;
        object-fit: cover;
    }

    .job-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {

    /* Section padding */
    .job-cards-section {
        padding: 35px 16px;
    }

    /* Grid: single column layout for better readability */
    .job-cards-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Card styling */
    .job-card {
        padding: 25px;
    }

    .job-card h3 {
        font-size: 1.4rem;
    }

    .job-card h3 i {
        font-size: 1.7rem;
        margin-right: 12px;
    }

    .job-card p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .job-card .card-image {
        height: 190px;
        margin-top: 18px;
    }

    .job-card .card-image img {
        height: 100%;
        object-fit: cover;
    }

    .job-btn {
        padding: 11px 22px;
        font-size: 0.95rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    /* Section padding */
    .job-cards-section {
        padding: 50px 30px;
    }

    /* Grid: 2 columns */
    .job-cards-container {
        width: 100%;
        margin: 0% 1%;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Card styling */
    .job-card {
        padding: 28px;
    }

    .job-card h3 {
        font-size: 1.5rem;
    }

    .job-card h3 i {
        font-size: 1.8rem;
        margin-right: 14px;
    }

    .job-card p {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .job-card .card-image {
        height: 220px;
        margin-top: 20px;
    }

    .job-card .card-image img {
        height: 100%;
        object-fit: cover;
    }

    .job-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {

    /* Section padding */
    .job-cards-section {
        padding: 60px 40px;
    }

    /* Grid: keep 2 columns, increase gap slightly */
    .job-cards-container {
        width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 35px;
        margin: 0% 2%;
    }

    /* Card styling */
    .job-card {
        padding: 32px;
    }

    .job-card h3 {
        font-size: 1.6rem;
    }

    .job-card h3 i {
        font-size: 1.9rem;
        margin-right: 14px;
    }

    .job-card p {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .job-card .card-image {
        height: 240px;
        margin-top: 22px;
    }

    .job-card .card-image img {
        height: 100%;
        object-fit: cover;
    }

    .job-btn {
        padding: 14px 28px;
        font-size: 1.05rem;
    }
}

@media (min-width: 1441px) {

    /* Section padding */
    .job-cards-section {
        padding: 70px 60px;
    }

    /* Grid: maintain 2 columns, more generous gap */
    .job-cards-container {
        max-width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin: 0% 1%;
    }

    /* Card styling */
    .job-card {
        padding: 36px;
    }

    .job-card h3 {
        font-size: 1.7rem;
    }

    .job-card h3 i {
        font-size: 2rem;
        margin-right: 16px;
    }

    .job-card p {
        font-size: 1.15rem;
        line-height: 1.8;
    }

    .job-card .card-image {
        height: 260px;
        margin-top: 24px;
    }

    .job-card .card-image img {
        height: 100%;
        object-fit: cover;
    }

    .job-btn {
        padding: 14px 30px;
        font-size: 1.1rem;
    }
}


/*=============================================
            ISBN Services
===============================================*/
/* Intro Section */
.isbn-intro {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
}

.isbn-intro h1 {
    font-size: 2.0rem;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 5px;
    color: #201759;
}

.isbn-intro h2 {
    font-size: 18px;
    font-weight: 500;
    margin-top: auto;
    margin-bottom: auto;
    color: #393185;
}

.isbn-intro .heading-divider {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 10px 0 20px;
}

.isbn-intro .intro-text {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.6;
}

.isbn-intro .highlight-gradient {
    background: linear-gradient(to right, #f5931d, #3ab549, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cards section */
.isbn-cards-section {
    padding: 40px 20px;
    background-color: #ffffff;
}

.isbn-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.isbn-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.isbn-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #3ab549, #f5931d, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.isbn-card h3 i {
    font-size: 20px;
    margin-right: 15px;
    color: #3ab549;
}

.isbn-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.isbn-card .card-content {
    flex-grow: 1;
}

.isbn-card a,
.isbn-apply-btn {
    display: block;
    margin: 20px auto 0 auto;
    text-align: center;
    width: fit-content;
    background-color: #201759;
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.isbn-card a:hover,
.isbn-apply-btn:hover {
    background-color: #1a154c;
}

.isbn-fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.isbn-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 480px) {

    /* Intro Section */
    .isbn-intro {
        padding: 30px 18px;
        text-align: center;
    }

    .isbn-intro h1 {
        font-size: 24px;
    }

    .isbn-intro h2 {
        font-size: 16px;
    }

    .isbn-intro .intro-text {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 5px;
    }

    .isbn-intro .heading-divider {
        margin: 8px 0 16px;
    }

    /* Cards Section */
    .isbn-cards-section {
        padding: 30px 18px;
    }

    .isbn-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .isbn-card {
        padding: 16px;
        border-radius: 10px;
    }

    .isbn-card h3 {
        font-size: 1.2rem;
    }

    .isbn-card h3 i {
        font-size: 18px;
        margin-right: 10px;
    }

    .isbn-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .isbn-card a,
    .isbn-apply-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
        margin-top: 16px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {

    /* Intro Section */
    .isbn-intro {
        padding: 35px 16px;
        text-align: center;
    }

    .isbn-intro h1 {
        font-size: 26px;
    }

    .isbn-intro h2 {
        font-size: 17px;
    }

    .isbn-intro .intro-text {
        font-size: 15px;
        line-height: 1.6;
        padding: 0 10px;
    }

    .isbn-intro .heading-divider {
        margin: 10px 0 18px;
    }

    /* Cards Section */
    .isbn-cards-section {
        padding: 35px 16px;
    }

    .isbn-cards-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .isbn-card {
        padding: 24px;
        border-radius: 10px;
    }

    .isbn-card h3 {
        font-size: 1.3rem;
    }

    .isbn-card h3 i {
        font-size: 19px;
        margin-right: 12px;
    }

    .isbn-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .isbn-card a,
    .isbn-apply-btn {
        font-size: 0.95rem;
        padding: 11px 22px;
        margin-top: 18px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    /* Intro Section */
    .isbn-intro {
        padding: 50px 30px;
    }

    .isbn-intro h1 {
        font-size: 32px;
    }

    .isbn-intro h2 {
        font-size: 18px;
    }

    .isbn-intro .intro-text {
        font-size: 16px;
        line-height: 1.7;
        max-width: 670px;
    }

    .isbn-intro .heading-divider {
        margin: 12px 0 20px;
    }

    /* Cards Section */
    .isbn-cards-section {
        padding: 50px 40px;
    }

    .isbn-cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .isbn-card {
        padding: 28px;
        border-radius: 12px;
    }

    .isbn-card h3 {
        font-size: 1.5rem;
    }

    .isbn-card h3 i {
        font-size: 20px;
        margin-right: 14px;
    }

    .isbn-card p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .isbn-card a,
    .isbn-apply-btn {
        font-size: 1rem;
        padding: 12px 25px;
        margin-top: 20px;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {

    /* Intro Section */
    .isbn-intro {
        padding: 50px 40px;
    }

    .isbn-intro h1 {
        font-size: 36px;
    }

    .isbn-intro h2 {
        font-size: 20px;
    }

    .isbn-intro .intro-text {
        font-size: 17px;
        line-height: 1.75;
        max-width: 93%;
    }

    .isbn-intro .heading-divider {
        margin: 15px 0 25px;
    }

    /* Cards Section */
    .isbn-cards-section {
        padding: 60px 40px;
    }

    .isbn-cards-container {
        max-width: 50%;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .isbn-card {
        padding: 32px;
        border-radius: 12px;
    }

    .isbn-card h3 {
        font-size: 1.6rem;
    }

    .isbn-card h3 i {
        font-size: 22px;
        margin-right: 14px;
    }

    .isbn-card p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .isbn-card a,
    .isbn-apply-btn {
        font-size: 1.05rem;
        padding: 14px 28px;
        margin-top: 22px;
    }
}

@media (min-width: 1441px) {

    /* Intro Section */
    .isbn-intro {
        padding: 50px 40px;
    }

    .isbn-intro h1 {
        font-size: 40px;
    }

    .isbn-intro h2 {
        font-size: 22px;
    }

    .isbn-intro .intro-text {
        font-size: 18px;
        line-height: 1.8;
        max-width: 93%;
    }

    .isbn-intro .heading-divider {
        margin: 18px 0 30px;
    }

    /* Cards Section */
    .isbn-cards-section {
        padding: 20px 60px;
    }



    .isbn-cards-container {
        max-width: 50%;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .isbn-card {
        padding: 36px;
        border-radius: 14px;
    }

    .isbn-card h3 {
        font-size: 1.7rem;
    }

    .isbn-card h3 i {
        font-size: 24px;
        margin-right: 16px;
    }

    .isbn-card p {
        font-size: 1.15rem;
        line-height: 1.85;
    }

    .isbn-card a,
    .isbn-apply-btn {
        font-size: 1.1rem;
        padding: 15px 30px;
        margin-top: 24px;
    }
}




/*================================================
                Partner Section
====================================================*/
/* Form Section */
.partner-form-section {
    padding: 40px 20px;
    background-color: #f0f2f5;
}

.partner-form-container {
    max-width: 1150px;
    margin: 0 auto;
    background: linear-gradient(90deg, #5f88a3, #245475);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.partner-form-container h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #201759;
    margin-bottom: 30px;
    text-align: center;
}

.partner-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.partner-form-field {
    display: flex;
    flex-direction: column;
    position: relative;
}

.partner-form-field label {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.partner-form-field input,
.partner-form-field select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 21px;
    font-size: 1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.partner-form-field input:focus,
.partner-form-field select:focus {
    border-color: #595617ff;
    outline: none;
}

.partner-form-field.error input,
.partner-form-field.error select {
    border-color: black;
}

.partner-form-field small.error-message {
    color: black;
    font-size: 1rem;
    margin-top: 5px;
    display: none;
}

.partner-form-field.error small.error-message {
    display: block;
}

.partner-submit-button {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.partner-submit-button button {
    padding: 10px 40px;
    background-color: #ddd;
    color: #201759;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.partner-submit-button button:hover {
    background-color: #fff;
}

.partner-file-upload-wrapper {
    display: flex;
    align-items: center;
    border: 1px dashed #ccc;
    padding: 10px;
    border-radius: 6px;
}

.partner-file-upload-wrapper label {
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
}

.partner-file-upload-wrapper input[type="file"] {
    display: none;
}

.partner-file-upload-wrapper .custom-file-upload {
    padding: 10px 15px;
    background-color: #f0f2f5;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 10px;
    font-size: 0.9rem;
}

.partner-file-upload-wrapper .file-name {
    font-size: 0.9rem;
    color: #333;
}

.partner-file-upload-wrapper input[type="file"]:focus+.custom-file-upload {
    border-color: #201759;
}

@media (max-width: 480px) {
    .partner-form-section {
        padding: 20px 10px;
    }

    .partner-form-container {
        padding: 15px;
        max-width: 83%;
        border-radius: 10px;
    }

    .partner-form-container h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .partner-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .partner-form-field label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .partner-form-field input,
    .partner-form-field select {
        padding: 8px 10px;
        font-size: 0.85rem;
        border-radius: 16px;
    }

    .partner-submit-button {
        margin-top: 15px;
    }

    .partner-submit-button button {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .partner-file-upload-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 8px;
    }

    .partner-file-upload-wrapper label {
        font-size: 0.8rem;
    }

    .partner-file-upload-wrapper .custom-file-upload {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .partner-file-upload-wrapper .file-name {
        font-size: 0.8rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .partner-form-section {
        padding: 30px 15px;
    }

    .partner-form-container {
        padding: 18px 20px;
        max-width: 83%;
        border-radius: 12px;
    }

    .partner-form-container h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
        text-align: center;
    }

    .partner-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partner-form-field label {
        font-size: 0.95rem;
        margin-bottom: 7px;
    }

    .partner-form-field input,
    .partner-form-field select {
        padding: 10px 14px;
        font-size: 1rem;
        border-radius: 20px;
    }

    .partner-submit-button {
        margin-top: 18px;
        justify-content: center;
    }

    .partner-submit-button button {
        padding: 12px 35px;
        font-size: 1.05rem;
    }

    .partner-file-upload-wrapper {
        flex-direction: row;
        align-items: center;
        padding: 10px;
        gap: 10px;
    }

    .partner-file-upload-wrapper label {
        font-size: 0.9rem;
    }

    .partner-file-upload-wrapper .custom-file-upload {
        padding: 9px 14px;
        font-size: 0.9rem;
    }

    .partner-file-upload-wrapper .file-name {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .partner-form-section {
        padding: 40px 30px;
    }

    .partner-form-container {
        max-width: 83%;
        padding: 25px 30px;
        border-radius: 14px;
    }

    .partner-form-container h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
        text-align: center;
    }

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

    .partner-form-field label {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .partner-form-field input,
    .partner-form-field select {
        padding: 14px 16px;
        font-size: 1.05rem;
        border-radius: 21px;
    }

    .partner-submit-button {
        margin-top: 25px;
        justify-content: center;
    }

    .partner-submit-button button {
        padding: 14px 45px;
        font-size: 1.1rem;
    }

    .partner-file-upload-wrapper {
        padding: 12px;
        border-radius: 8px;
        gap: 15px;
    }

    .partner-file-upload-wrapper label {
        font-size: 1rem;
    }

    .partner-file-upload-wrapper .custom-file-upload {
        padding: 12px 18px;
        font-size: 1rem;
    }

    .partner-file-upload-wrapper .file-name {
        font-size: 1rem;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .partner-form-section {
        padding: 50px 40px;
    }

    .partner-form-container {
        max-width: 1100px;
        padding: 30px 40px;
        border-radius: 16px;
    }

    .partner-form-container h2 {
        font-size: 2rem;
        margin-bottom: 35px;
        text-align: center;
    }

    .partner-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .partner-form-field label {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .partner-form-field input,
    .partner-form-field select {
        padding: 15px 18px;
        font-size: 1.1rem;
        border-radius: 24px;
    }

    .partner-submit-button {
        margin-top: 30px;
        justify-content: center;
    }

    .partner-submit-button button {
        padding: 14px 50px;
        font-size: 1.15rem;
    }

    .partner-file-upload-wrapper {
        padding: 15px;
        border-radius: 10px;
        gap: 18px;
    }

    .partner-file-upload-wrapper label {
        font-size: 1.1rem;
    }

    .partner-file-upload-wrapper .custom-file-upload {
        padding: 14px 20px;
        font-size: 1.1rem;
    }

    .partner-file-upload-wrapper .file-name {
        font-size: 1.1rem;
    }
}

@media (min-width: 1441px) {
    .partner-form-section {
        padding: 50px 40px;
    }

    .partner-form-container {
        max-width: 83%;
        padding: 30px 40px;
        border-radius: 16px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    }

    .partner-form-container h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
        text-align: center;
    }

    .partner-form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .partner-form-field label {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .partner-form-field input,
    .partner-form-field select {
        padding: 18px 22px;
        font-size: 1.2rem;
        border-radius: 28px;
    }

    .partner-submit-button {
        margin-top: 35px;
        justify-content: center;
    }

    .partner-submit-button button {
        padding: 16px 60px;
        font-size: 1.25rem;
    }

    .partner-file-upload-wrapper {
        padding: 18px;
        border-radius: 12px;
        gap: 20px;
    }

    .partner-file-upload-wrapper label {
        font-size: 1.2rem;
    }

    .partner-file-upload-wrapper .custom-file-upload {
        padding: 16px 25px;
        font-size: 1.2rem;
    }

    .partner-file-upload-wrapper .file-name {
        font-size: 1.2rem;
    }
}


/*==============================================
                         Apply Page                          
==============================================*/
/* Application Section */
.apply-section {
    padding: 60px 20px;
    background: #fff;
}

.apply-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    grid-template-areas:
        "form award";
}

.apply-form {
    grid-area: form;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.apply-award-details {
    grid-area: award;
    position: relative;
    background: #f9fafc;
    padding-right: 50px;
    padding-left: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* @media(max-width: 1024px) {
    .apply-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .award-details,
    .apply-form {
        padding: 20px;
    }
}

@media(max-width: 768px) {
    .apply-container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "award"
            "form";
    }

    .apply-award-details {
        order: 1;
        padding: 20px;
    }

    .apply-form {
        order: 2;
        padding: 20px;
    }
} */

.apply-form {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.apply-form h2 {
    margin-bottom: 20px;
}

.apply-form-step {
    display: none;
}

.apply-form-step.active {
    display: block;
}

.apply-form-step.active label {
    display: block;
    margin: 10px 0 5px;
    font-weight: 500;
}

.apply-form-step.active input,
.apply-form-step.active select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    margin-bottom: 15px;
}

.apply-form-step label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
}

.apply-form-step label input[type="checkbox"] {
    margin: 0;
    width: 25px;
}

.apply-form-step.active .checkbox {
    display: flex;
    align-items: left;
    margin-bottom: 15px;
}

.apply-form-step.active small {
    color: #666;
    display: block;
    margin-bottom: 15px;
}

.apply-form-buttons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.apply-next-btn,
.apply-prev-btn,
.apply-pay-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
}

.apply-next-btn {
    background: #201759;
    color: #fff;
}

.apply-prev-btn {
    background: #2d197c;
    color: #fff;
}

.apply-pay-btn {
    flex: 1;
    background: #2d197c;
    color: #fff;
    font-weight: 600;
}

/* Declaration Box */
.apply-declaration-box {
    background: #fdfdfd;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
}

.apply-declaration-box ol {
    padding-left: 20px;
    margin: 10px 0;
}

/* Award Details */
.apply-award-details {
    position: relative;
    background: #f9fafc;
    padding-right: 50px;
    padding-left: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.apply-award-icon {
    text-align: center;
    font-size: 50px;
    color: #1e88e5;
    margin-bottom: 10px;
}

.apply-award-details h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: normal;
}

.apply-award-info {
    font-size: 16px;
    color: #666;
    text-align: left;
    margin-top: 10px;
    padding: 20px 50px 30px 20px;
}

.apply-award-info strong {
    color: #201759;
    display: block;
    margin-bottom: 5px;
}

.apply-award-info p {
    margin-bottom: 20px;
}

.apply-award-details::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #38B549, #F6931D, #393185);
    border-radius: 4px 0 0 4px;
}

.apply-highlight-gradient {
    background: linear-gradient(to right, #f5931d, #3ab549, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hidden {
    display: none;
}

@media (max-width: 480px) {
    .apply-section {
        padding: 20px 20px;
    }

    .apply-container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "award"
            "form";
        gap: 20px;
    }

    .apply-form,
    .apply-award-details {
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .apply-form h2,
    .apply-award-details h2 {
        font-size: 1.3rem;
        text-align: center;
    }

    .apply-form-step.active label {
        font-size: 0.95rem;
    }

    .apply-form-step.active input,
    .apply-form-step.active select {
        padding: 10px;
        font-size: 0.95rem;
        border-radius: 18px;
    }

    .apply-form-step.active small {
        font-size: 0.85rem;
    }

    .apply-form-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .apply-next-btn,
    .apply-prev-btn,
    .apply-pay-btn {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }

    .apply-award-icon {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .apply-award-info {
        font-size: 0.95rem;
        padding: 15px 20px;
    }

    .apply-award-info p {
        margin-bottom: 15px;
    }

    .apply-declaration-box {
        padding: 12px;
        font-size: 0.95rem;
    }

    .apply-declaration-box ol {
        padding-left: 18px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .apply-section {
        padding: 40px 20px;
    }

    .apply-container {
        width: 95%;
        grid-template-columns: 1fr;
        grid-template-areas:
            "award"
            "form";
        gap: 25px;
    }

    .apply-form,
    .apply-award-details {
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
    }

    .apply-form h2,
    .apply-award-details h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .apply-form-step.active label {
        font-size: 1rem;
    }

    .apply-form-step.active input,
    .apply-form-step.active select {
        padding: 12px;
        font-size: 1rem;
        border-radius: 18px;
    }

    .apply-form-step.active small {
        font-size: 0.9rem;
    }

    .apply-form-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }

    .apply-next-btn,
    .apply-prev-btn,
    .apply-pay-btn {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }

    .apply-award-icon {
        font-size: 45px;
        margin-bottom: 10px;
    }

    .apply-award-info {
        font-size: 1rem;
        padding: 20px;
    }

    .apply-award-info p {
        margin-bottom: 18px;
    }

    .apply-declaration-box {
        padding: 15px;
        font-size: 1rem;
    }

    .apply-declaration-box ol {
        padding-left: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .apply-section {
        padding: 40px 20px;
    }

    .apply-container {
        width: 95%;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        grid-template-areas:
            "form award";
    }

    .apply-form,
    .apply-award-details {
        padding: 25px;
        border-radius: 18px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .apply-form h2,
    .apply-award-details h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .apply-form-step.active label {
        font-size: 1rem;
    }

    .apply-form-step.active input,
    .apply-form-step.active select {
        padding: 12px;
        font-size: 1rem;
        border-radius: 20px;
    }

    .apply-form-step.active small {
        font-size: 0.95rem;
    }

    .apply-form-buttons {
        flex-direction: row;
        gap: 15px;
        margin-top: 20px;
    }

    .apply-next-btn,
    .apply-prev-btn,
    .apply-pay-btn {
        padding: 12px 20px;
        font-size: 1rem;
        flex: 1;
    }

    .apply-award-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .apply-award-info {
        font-size: 1rem;
        padding: 20px 30px;
    }

    .apply-award-info p {
        margin-bottom: 20px;
    }

    .apply-declaration-box {
        padding: 18px;
        font-size: 1rem;
    }

    .apply-declaration-box ol {
        padding-left: 22px;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .apply-section {
        padding: 50px 40px;
    }

    .apply-container {
        max-width: 97%;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        grid-template-areas:
            "form award";
    }

    .apply-form,
    .apply-award-details {
        padding: 30px;
        border-radius: 20px;
    }

    .apply-form h2,
    .apply-award-details h2 {
        font-size: 2rem;
    }

    .apply-form-step.active label {
        font-size: 1rem;
    }

    .apply-form-step.active input,
    .apply-form-step.active select {
        padding: 14px;
        font-size: 1rem;
    }

    .apply-form-buttons {
        gap: 20px;
        margin-top: 25px;
    }

    .apply-next-btn,
    .apply-prev-btn,
    .apply-pay-btn {
        padding: 14px 25px;
        font-size: 1.05rem;
    }

    .apply-award-icon {
        font-size: 52px;
        margin-bottom: 20px;
    }

    .apply-award-info {
        font-size: 1rem;
        padding: 25px 40px 30px 25px;
    }

    .apply-award-info p {
        margin-bottom: 22px;
    }

    .apply-declaration-box {
        padding: 20px;
        font-size: 1rem;
        border-radius: 8px;
    }

    .apply-declaration-box ol {
        padding-left: 25px;
    }
}

@media (min-width: 1441px) {
    .apply-section {
        padding: 50px 40px;
    }

    .apply-container {
        max-width: 97%;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        grid-template-areas:
            "form award";
    }

    .apply-form,
    .apply-award-details {
        padding: 40px;
        border-radius: 24px;
    }

    .apply-form h2,
    .apply-award-details h2 {
        font-size: 2.2rem;
    }

    .apply-form-step.active label {
        font-size: 1.05rem;
    }

    .apply-form-step.active input,
    .apply-form-step.active select {
        padding: 16px;
        font-size: 1.05rem;
    }

    .apply-form-buttons {
        gap: 25px;
        margin-top: 30px;
    }

    .apply-next-btn,
    .apply-prev-btn,
    .apply-pay-btn {
        padding: 14px 28px;
        font-size: 1.1rem;
    }

    .apply-award-icon {
        font-size: 56px;
        margin-bottom: 25px;
    }

    .apply-award-info {
        font-size: 1.05rem;
        padding: 30px 60px 35px 30px;
    }

    .apply-award-info p {
        margin-bottom: 24px;
    }

    .apply-declaration-box {
        padding: 22px;
        font-size: 1.05rem;
        border-radius: 10px;
    }

    .apply-declaration-box ol {
        padding-left: 28px;
    }
}


/*==============================================
                         Post_Job Page                          
==============================================*/

.postjob-main-container {
    max-width: 1100px;
    margin: 0 auto;
}

.postjob-card-container {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.postjob-intro-section {
    text-align: left;
    margin-bottom: 2rem;
}

.postjob-intro-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: #2c3e50;
    margin-top: 10px;
    margin-bottom: 20px;
}

.postjob-intro-section p {
    font-size: 16px;
    color: #4b5563;
    max-width: 800px;
}

.postjob-text-gradient {
    background-image: linear-gradient(to right, #3ab549, #f5931d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.postjob-icon-pills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 1rem;
    margin-bottom: 2rem;
}

.postjob-icon-pill {
    width: fit-content;
    align-items: center;
    padding: 10px 15px;
    background-color: #f3f4f6;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    transition: background-color 0.3s ease;
}

.postjob-icon-pill i {
    margin-right: 0.5rem;
    color: #5b21b6;
}

.postjob-icon-pill:hover {
    background-color: #e5e7eb;
}

.postjob-offer-section {
    margin-top: 2rem;
}

.postjob-offer-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a3d62;
    margin-bottom: 1rem;
}

.postjob-offer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: left;
}

.postjob-offer-item {
    display: flex;
    align-items: center;
    background-color: #f9fafb;
    padding: 10px 15px;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    font-size: 16px;
    color: #4b5563;
}

.postjob-offer-item i {
    margin-right: 0.5rem;
    color: #4f46e5;
}

.postjob-price-text {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-top: 2rem;
    text-align: left;
}

.postjob-price-text strong {
    font-size: 18px;
    color: #0a3d62;
}

.postjob-form-section {
    margin-top: 3rem;
}

.postjob-form-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #0a3d62;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.postjob-form-group {
    margin-bottom: 1.5rem;
}

.postjob-form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #0a3d62;
    margin-bottom: 0.25rem;
}

.postjob-form-group input,
.postjob-form-group textarea,
.postjob-form-group select {
    display: block;
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #d1d5db;
    border-radius: 25px;
    font-size: 16px;
}

.postjob-form-group textarea {
    resize: vertical;
}

.postjob-form-group input:focus,
.postjob-form-group textarea:focus,
.postjob-form-group select:focus {
    border-color: #4f46e5;
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.postjob-form-submit-btn {
    display: block;
    margin: 2rem auto 0;
    padding: 0.75rem 2rem;
    background-color: #201759;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.postjob-form-submit-btn:hover {
    background-color: #1a154c;
}

.postjob-fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s, transform 0.7s;
}

.postjob-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.error-message {
    color: red;
    font-size: 14px;
}

@media (max-width: 480px) {
    .postjob-card-container {
        padding: 2rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .postjob-intro-section h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

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

    .postjob-icon-pill {
        font-size: 13px;
        padding: 6px 10px;
    }

    .postjob-offer-section h3 {
        font-size: 16px;
    }

    .postjob-offer-item {
        font-size: 13px;
        padding: 6px 10px;
    }

    .postjob-price-text {
        font-size: 13px;
        margin-top: 1.5rem;
    }

    .postjob-price-text strong {
        font-size: 16px;
    }

    .postjob-form-section {
        margin-top: 2rem;
    }

    .postjob-form-section h2 {
        font-size: 18px;
        margin-bottom: 0.75rem;
    }

    .postjob-form-group label {
        font-size: 14px;
    }

    .postjob-form-group input,
    .postjob-form-group textarea,
    .postjob-form-group select {
        font-size: 14px;
        padding: 0.5rem;
    }

    .postjob-form-submit-btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }

    .error-message {
        font-size: 13px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .postjob-card-container {
        padding: 1.5rem;
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .postjob-intro-section h2 {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .postjob-intro-section p {
        font-size: 15px;
    }

    .postjob-icon-pill {
        font-size: 14px;
        padding: 8px 12px;
    }

    .postjob-offer-section h3 {
        font-size: 17px;
    }

    .postjob-offer-item {
        font-size: 14px;
        padding: 8px 12px;
    }

    .postjob-price-text {
        font-size: 14px;
        margin-top: 1.75rem;
    }

    .postjob-price-text strong {
        font-size: 16px;
    }

    .postjob-form-section {
        margin-top: 2.5rem;
    }

    .postjob-form-section h2 {
        font-size: 20px;
        margin-bottom: 0.85rem;
    }

    .postjob-form-group label {
        font-size: 15px;
    }

    .postjob-form-group input,
    .postjob-form-group textarea,
    .postjob-form-group select {
        font-size: 15px;
        padding: 0.55rem;
    }

    .postjob-form-submit-btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }

    .error-message {
        font-size: 13.5px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .postjob-main-container {
        padding: 0 35px;
    }

    .postjob-card-container {
        padding: 2rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .postjob-intro-section h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .postjob-intro-section p {
        font-size: 16px;
    }

    .postjob-icon-pill {
        font-size: 15px;
        padding: 10px 14px;
    }

    .postjob-offer-section h3 {
        font-size: 18px;
    }

    .postjob-offer-item {
        font-size: 15px;
        padding: 10px 14px;
    }

    .postjob-price-text {
        font-size: 15px;
    }

    .postjob-price-text strong {
        font-size: 17px;
    }

    .postjob-form-section {
        margin-top: 3rem;
    }

    .postjob-form-section h2 {
        font-size: 22px;
        margin-bottom: 1rem;
    }

    .postjob-form-group label {
        font-size: 15px;
    }

    .postjob-form-group input,
    .postjob-form-group textarea,
    .postjob-form-group select {
        font-size: 15px;
        padding: 0.6rem;
    }

    .postjob-form-submit-btn {
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }

    .error-message {
        font-size: 14px;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .postjob-main-container {
        max-width: 1150px;
        padding: 0 40px;
    }

    .postjob-card-container {
        padding: 2rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .postjob-intro-section h2 {
        font-size: 30px;
    }

    .postjob-intro-section p {
        font-size: 17px;
    }

    .postjob-icon-pill {
        font-size: 16px;
        padding: 10px 15px;
    }

    .postjob-offer-section h3 {
        font-size: 18px;
    }

    .postjob-offer-item {
        font-size: 16px;
        padding: 10px 15px;
    }

    .postjob-price-text {
        font-size: 16px;
    }

    .postjob-price-text strong {
        font-size: 18px;
    }

    .postjob-form-section {
        margin-top: 3rem;
    }

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

    .postjob-form-group label {
        font-size: 16px;
    }

    .postjob-form-group input,
    .postjob-form-group textarea,
    .postjob-form-group select {
        font-size: 16px;
        padding: 0.6rem 1rem;
    }

    .postjob-form-submit-btn {
        font-size: 1rem;
        padding: 0.75rem 2.25rem;
    }

    .error-message {
        font-size: 14px;
    }
}

@media (min-width: 1441px) {
    .postjob-main-container {
        max-width: 1250px;
        padding: 0 40px;
    }

    .postjob-card-container {
        padding: 3rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 1.25rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .postjob-intro-section h2 {
        font-size: 36px;
        margin-top: 15px;
        margin-bottom: 25px;
    }

    .postjob-intro-section p {
        font-size: 18px;
        max-width: 900px;
    }

    .postjob-icon-pill {
        font-size: 18px;
        padding: 12px 18px;
    }

    .postjob-offer-section h3 {
        font-size: 20px;
    }

    .postjob-offer-item {
        font-size: 18px;
        padding: 12px 18px;
    }

    .postjob-price-text {
        font-size: 18px;
    }

    .postjob-price-text strong {
        font-size: 20px;
    }

    .postjob-form-section {
        margin-top: 4rem;
    }

    .postjob-form-section h2 {
        font-size: 26px;
    }

    .postjob-form-group label {
        font-size: 18px;
    }

    .postjob-form-group input,
    .postjob-form-group textarea,
    .postjob-form-group select {
        font-size: 18px;
        padding: 0.75rem 1.25rem;
    }

    .postjob-form-submit-btn {
        font-size: 1.2rem;
        padding: 1rem 3rem;
    }

    .error-message {
        font-size: 16px;
    }
}


/* ========================
   ABOUT SECTION
======================== */

.about {
    background: url("../images/image2.jpg") no-repeat center center/cover;
    padding: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about p {
    font-size: 60px;
    /*margin-bottom: 70px;*/
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.8s ease;
}

.about p.light {
    color: rgba(255, 255, 255, 0.3);
}

.about-content {
    background: white;
    color: #555;
    max-width: 1250px;
    margin: -50px auto 0;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
}

/* ========================
   WHAT WE DO SECTION
======================== */
.what-we-do {
    padding: 60px 60px;
}

.what-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 10px;
}

.what-left {
    flex: 1 1;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2;
    border-right: 2px solid #ddd;
    padding-right: -100px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
}

.what-left h2 {
    margin: 0;
    line-height: 1.1;
    text-align: center;
    margin-top: 100px;
}


.what-right {
    flex: 2 1;
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;

}

.what-right p {
    margin-top: 0;
    /*margin-right: 160px; */
}

.what-right ol {
    list-style-position: outside;
    padding-left: 20px;
    margin: 0;
}

.what-right li {
    margin-bottom: 8px;
    text-align: left;
}

.btn-purple {
    display: inline-block;
    background: #393185;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    margin-top: 15px;
    margin-left: 4px;
    margin-top: auto;
    /* pushes button down */
    margin-left: 0;
    /* align properly inside */
    align-self: flex-start;
    margin: 20px 10px;
}

.btn-purple:hover {
    background: #393185;
}

/* ========================
   CORE VALUES SECTION
======================== */
.core-values {
    background-color: #f8fdff;
    padding: 50px 60px;
}

.core-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: auto;
    gap: 30px;
}

.core-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: #0b1a0f;
    /* margin-bottom: 400px; */
}

.core-right {
    flex: 3;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
}

.value-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease,
        box-shadow 0.2s ease;
}

.value-card img {
    height: 80px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: bold;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
}

.value-card p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    text-align: justify;
    margin: 10px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
}

/* ========================
   RESPONSIVE DESIGN
======================== */

/* 📱 Mobile (Small devices: 320px–480px) */
@media (min-width: 320px) and (max-width: 480px) {

    /* ABOUT */
    .about {
        padding: 40px 15px;
        display: flex;
        margin-right: 10px;
        justify-items: center;
    }

    .about p {
        font-size: 32px;
        /* margin-bottom: 20px;*/
    }

    .about-content {
        margin: -20px 20px 0;
        padding: 15px;
        font-size: 14px;
        line-height: 1.5;
        text-align: justify;
    }

    /* WHAT WE DO */
    .what-we-do {
        padding: 25px 20px;
    }

    .what-container {
        flex-direction: column;
        text-align: center;

    }

    .what-left {
        border-right: none;
        padding: 0;

        font-size: 20px;
    }

    .what-left h2 {
        margin-top: 20px;
        font-size: 28px;
        margin-right: 10px;
        line-height: 1.3;
    }

    .what-left h2 br {
        display: none;
    }

    .what-right {
        margin: 0;
        margin-top: 10px;
        padding: 0;
        font-size: 14px;
        line-height: 1.5;
        text-align: left;
        flex: none;
    }

    .what-right p,
    .what-right li {
        margin-right: 0;
        font-size: 15px;
        text-align: justify;
    }

    /* CORE VALUES */
    .core-values {
        padding: 25px 15px;
    }

    .core-container {
        flex-direction: column;
        gap: 15px;
    }

    .core-left {
        font-size: 28px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .core-left h2 br {
        display: none;
    }

    .core-right {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 10px;
    }

    .value-card {
        padding: 20px;
    }

    .value-card img {
        height: 80px;
        margin-bottom: -10px;
    }

    .value-card h3 {
        font-size: 22px;
    }

    .value-card p {
        font-size: 14px;
        line-height: 1.4;
        text-align: justify;
    }
}

/* 📱 Tablet (481px–768px) */
@media (min-width: 481px) and (max-width: 768px) {

    /* ABOUT */
    .about {
        padding: 50px 20px;
    }

    .about p {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .about-content {
        padding: 20px;
        font-size: 16px;
        line-height: 1.6;
        max-width: 563px;
    }

    /* WHAT WE DO */
    .what-we-do {
        padding: 30px 30px;
    }

    .what-container {
        /*flex-direction: column;*/
        text-align: center;
        gap: 25px;
    }

    .what-left {
        font-size: 24px;

    }

    .what-left h2 {
        font-size: 40px;
        margin-top: 150px;
    }

    .what-right {
        font-size: 15px;
        line-height: 1.6;
    }

    /* CORE VALUES */
    .core-values {
        padding: 30px 30px;
    }

    .core-left {
        font-size: 32px;
    }

    .core-left h2 br {
        display: none;
    }

    .core-right {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .value-card {
        padding: 25px;
    }

    .value-card img {
        height: 90px;
    }

    .value-card h3 {
        font-size: 24px;
    }

    .value-card p {
        font-size: 15px;
    }
}

/* 💻 Small Laptop (769px–1024px) */
@media (min-width: 769px) and (max-width: 1024px) {

    /* ABOUT */
    .about {
        padding: 60px 30px;
    }

    .about p {
        font-size: 40px;
    }

    .about-content {
        padding: 25px;
        font-size: 18px;
        margin: 0px 60px;

    }

    /* WHAT WE DO */
    .what-container {
        flex-direction: row;
        gap: 30px;
        text-align: left;
    }

    .what-left h2 {
        font-size: 48px;
    }

    .what-right {
        font-size: 16px;
    }

    /* CORE VALUES */
    .core-left {
        font-size: 36px;
    }

    .core-left h2 br {
        display: none;
    }

    .core-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .value-card img {
        height: 100px;
    }

    .value-card h3 {
        font-size: 26px;
    }

    .value-card p {
        font-size: 16px;
    }
}

/* 🖥️ Desktop (1025px–1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {

    /* ABOUT */
    .about {
        padding: 80px 40px;
    }

    .about p {
        font-size: 48px;
    }

    .about-content {
        font-size: 20px;
        line-height: 1.8;
    }

    /* WHAT WE DO */
    .what-container {
        flex-direction: row;
        gap: 40px;
    }

    .what-left h2 {
        font-size: 55px;
    }

    .what-right {
        font-size: 18px;
    }

    /* CORE VALUES */
    .core-left {
        font-size: 40px;
    }

    .core-right {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .value-card img {
        height: 120px;
    }

    .value-card h3 {
        font-size: 28px;
    }

    .value-card p {
        font-size: 18px;
    }
}

/* 🖥️ Extra Large Screens (1441px and up) */
@media (min-width: 1441px) {
    .about p {
        font-size: 52px;
    }

    .about-content {
        font-size: 20px;
    }

    .what-left h2 {
        font-size: 60px;
    }

    .core-left {
        font-size: 40px;
    }

    .value-card h3 {
        font-size: 30px;
    }

    .value-card p {
        font-size: 18px;
    }
}

.content-fellowship {
    background: url("../images/image2.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-fellowship p {
    font-size: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.8s ease;
    font-weight: lighter;
}

.content-fellowship p.light {
    color: rgba(255, 255, 255, 0.3);
}

/* Tablet view */
@media (max-width: 1024px) {
    .content-fellowship p {
        font-size: 45px;
        margin-bottom: 40px;
    }
}

/* Mobile view */
@media (max-width: 768px) {
    .content-fellowship {
        padding: 20px;
    }

    .content-fellowship p {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

/* Very small mobile */
@media (max-width: 480px) {
    .content-fellowship {
        padding: 25px;
    }

    .content-fellowship p {
        font-size: 24px;
        margin-bottom: 24px;
    }
}


/* about page css end */
/* === Fellowship Section Styles === */
.fellowships {
    padding: 40px 90px;
    background: #f9fafb;

    color: #1f2937;
}

/* .fellowships .site-head {
    text-align: center;
    margin-bottom: 40px;
} */

.fellowships .site-head h1 {
    font-size: 28px;
    margin: 0;
    font-weight: 700;
    text-align: center;
}

.fellowships .site-head .tagline {
    font-size: 16px;
    color: #000000;
    margin: 8px 0;
}


.site-head {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    padding: 20px;
    position: relative;
}

.left-content {
    margin: 0 auto;
    /* THIS is the key */
    text-align: center;
}

.right-content {
    position: absolute;
    right: 20px;
}

.fellowship-btn {
    background: #2c63ff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .right-content {
        position: static;
        margin-top: 15px;
    }

    .site-head {
        flex-direction: column;
    }
}

.fellowship-btn:hover {
    background: #1a48c4;
}

.fellowships .fee-pill {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.fellowship-logo {
    text-align: center;
    margin-bottom: 12px;
}

.fellowship-logo img {
    width: 200px;
    height: 140px;
    border-radius: 8px;
}

/* Grid for fellowship cards */
.fellowship-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* Fellowship card */
.fellowship {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fellowship:hover {
    transform: translateY(-8px);
    /* slight lift */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    /* stronger shadow */
}

.fellowship-title {
    font-size: 22px;
    margin: 0;
    font-weight: 700;
    color: #111827;
    height: 60px;
}

/* .fellowship-details {
    height: 500px;
} */

.fellowship-subtitle {
    font-size: 17px;
    color: #6b7280;
    margin: 0 0 12px 0;
    line-height: 20px;
    height: 175px;
    overflow: visible;
    white-space: normal;
}

/* Fellowship details */
.fellowship-details h3 {
    font-size: 16px;
    margin: 10px 0 6px;
    font-weight: 600;
    color: #374151;
}

.fellowship-details p {
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 8px;
}

.fellowship-details ul {
    padding-left: 18px;
    margin: 0 0 12px;
}

.fellowship-details ul li {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 6px;
}

/* Mobile view (320px - 480px) */
@media (max-width: 480px) {
    .fellowships {
        padding: 20px;
        /* reduce padding */
    }

    .fellowships .site-head h1 {
        font-size: 20px;
        /* smaller heading */
    }

    .fellowships .site-head .tagline {
        font-size: 14px;
    }

    .fellowship-logo img {
        width: 140px;
        /* smaller logo */
    }

    .fellowship-cards {
        grid-template-columns: 1fr;
        /* stack cards */
        gap: 16px;
    }

    .fellowship {
        padding: 16px;
        border-radius: 10px;
    }

    .fellowship-title {
        font-size: 18px;
    }

    .fellowship-subtitle {
        font-size: 15px;
    }

    .fellowship-details h3 {
        font-size: 15px;
    }

    .fellowship-details p,
    .fellowship-details ul li {
        font-size: 14px;
    }
}


/* fellowship page css end */

/* summit award section start */
/* ===============================
   Awards Section
   =============================== */
/* ====== BASE STYLES ====== */
.award-section {
    padding: 25px 75px;
    background: #fff;
    border-bottom: 1px solid #eee;
    text-align: justify;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
}

.award-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

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

.award-text {
    flex: 1;
    max-width: 600px;
}

.award-text h2 {
    font-size: 28px;
    color: #1f2c4b;
    white-space: nowrap;
}

.fellowship-header h1,
.fellowship-header p {
    font-size: 30px;
    color: #1f2c4b;
    text-align: center;
    text-decoration: underline;
}

.fellowship-header p {
    font-size: 25px;
    text-decoration: none;
}

.award-text h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

.award-text p,
.award-text ul {
    font-size: 17px;
    line-height: 1.6;
    margin: 10px 0;
}

.award-text ul {
    padding-left: 20px;
}

.award-buttons .btn {
    text-decoration: none;
    background-color: #322673;
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    margin-right: 10px;
    font-size: 16px;
    display: inline-block;
}

.award-buttons .btn:hover {
    background-color: #1c164a;
}

.award-image {
    flex: 1;
    text-align: center;
}

.award-image img {
    max-width: 600px;
    height: auto;
}

/* ====== RESPONSIVE ====== */

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
    .award-content {
        flex-direction: column;
        text-align: center;
    }

    .award-content.reverse {
        flex-direction: column;
    }

    .award-image {
        order: 1;
    }

    .award-text {
        order: 2;
        max-width: 100%;
        padding: 10px;
        text-align: justify;
    }

    .award-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 90%;
        font-size: 14px;
    }

    .award-image img {
        max-width: 180px;
    }
}

/* Tablet (481px - 768px) */
@media (max-width: 768px) {
    .award-content {
        flex-direction: column;
        text-align: center;
    }

    .award-content.reverse {
        flex-direction: column;
    }

    .award-image {
        order: 1;
    }

    .award-text {
        order: 2;
        max-width: 100%;
        padding: 15px;
        text-align: justify;
    }

    .award-buttons .btn {
        display: block;
        margin: 12px auto;
        width: 80%;
        font-size: 15px;
    }

    .award-image img {
        max-width: 200px;
    }
}

/* Small Laptop (769px - 1024px) */
@media (max-width: 1024px) {
    .award-content {
        flex-direction: row;
        text-align: left;
    }

    .award-text {
        max-width: 500px;
        padding: 20px;
        margin-right: 30px;
    }

    .award-buttons .btn {
        font-size: 15px;
        padding: 10px 20px;
    }

    .award-image img {
        max-width: 260px;
    }
}

/* Desktop (1025px - 1440px) */
@media (min-width: 1025px) {
    .award-content {
        flex-direction: row;
        text-align: left;
    }

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

    .award-text {
        max-width: 600px;
        margin-right: 55px;
    }

    .award-buttons .btn {
        font-size: 16px;
        padding: 12px 24px;
    }

    .award-image img {
        max-width: 300px;
    }
}



/* summit awards section end */
.gradient-section {
    background: linear-gradient(to right, #f7931e, #39b54a);
    padding: 30px 0;
    text-align: center;
}

.gradient-section h2 {
    color: white;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 500;
}

.image-gallery {
    max-width: 1300px;
    margin: auto;
    padding: 40px;
    background: #ecf4fe;
}

.gallery-item {
    background: #fff;
    padding: 60px 60px;
    border-radius: 15px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

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

.image-box img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}

.image-name {
    margin-top: 18px;
    font-size: 22px;
    font-weight: bold;
}

.image-gallery hr {
    border: none;
    height: 2px;
    background: #ccc;
    margin: 20px 0;
    width: 100%;
    grid-column: 1 / -1;
}

/* 📱 Mobile View */
/* 📱 Mobile (320px - 480px) */
@media (min-width: 320px) and (max-width: 480px) {
    .gradient-section h2 {
        font-size: 1.2rem;
    }

    .image-gallery {
        padding: 20px;
    }

    .gallery-item {
        padding: 10px;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .image-box img {
        height: 400px;
        padding: 10px;
    }

    .image-name {
        font-size: 16px;
    }
}

/* 📱 Tablet (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .gradient-section h2 {
        font-size: 1.4rem;
    }

    .image-gallery {
        padding: 30px;
    }

    .gallery-item {
        padding: 15px 15px;
    }

    .image-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .image-box img {
        height: 450px;
        padding: 15px;
    }

    .image-name {
        font-size: 18px;
    }
}

/* 💻 Small Laptop (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .gradient-section h2 {
        font-size: 1.6rem;
    }

    .image-gallery {
        padding: 20px;
    }

    .gallery-item {
        padding: 18px;
    }

    .image-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 25px;
    }

    .image-box img {
        height: 500px;
        padding: 15px;
    }

    .image-name {
        font-size: 20px;
    }
}

/* 🖥️ Desktop (1025px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .gradient-section h2 {
        font-size: 2rem;
    }

    .image-gallery {
        padding: 30px;
    }

    .gallery-item {
        padding: 20px;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .image-box img {
        height: 550px;
        padding: 20px;
    }

    .image-name {
        font-size: 22px;
    }
}

.blog-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.blog {
    width: calc(50% - 40px);
    /* two cards per row */
    max-width: 500px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
    margin-top: 50px;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out forwards;
}

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

/* Hover Effect on Card */
.blog:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

}

/* Smooth image zoom */
.blog img {
    width: 100%;
    height: 350px;
    /* SAME height for all cards */
    object-fit: cover;
    /* Crop neatly without distortion */
    display: block;
    transition: transform 0.4s ease-in-out;
}

.blog:hover img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-content h3:hover {
    color: orange;
    text-decoration: underline;
}

.blog-content .date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content .description {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.blog-content .read-more {
    display: inline-block;
    padding: 8px 15px;
    color: black;
    border: 1px solid blue;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;

}

.blog-content .read-more:hover {
    background: #003f9e;
    color: white;
}


/* ✅ Mobile View */
@media (max-width: 768px) {
    .blog {
        max-width: 90%;
        margin: 20px auto;
    }

    .blog-content {
        padding: 12px;
    }

    .blog-content h3 {
        font-size: 1.05rem;
    }

    .blog-content .description {
        font-size: 0.9rem;
    }

    .blog-content .read-more {
        font-size: 0.85rem;
        padding: 7px 12px;
    }
}

/* blog card css end */

/* contact-us section start */
.contact-section {
    display: flex;
    align-items: flex-start;
    padding: 40px 90px;
    gap: 120px;
}

/* Left form section */
.contact-form {
    flex: 1;
    max-width: 600px;
}

.forms-manu {
    display: flex;
    gap: 10px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    font-weight: normal;
    /* text-align: justify; */
}

.contact-form input,
.contact-form textarea {

    padding: 18px 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 25px;
    outline: none;
    font-size: 14px;
}

.contact-form textarea {
    border-radius: 12px;
    resize: none;
    height: 120px;
}

.contact-form button {
    padding: 12px 25px;
    background: #3a1b9a;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.contact-form button:hover {
    background: #291472;
}

/* Right contact info */
.contact-info {
    flex: 1;
    margin-top: 40px;
}

/* Each contact box */
.info-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    /* padding: 15px; */
    border-radius: 8px;

}

/* Icon styling */
.info-box i {
    font-size: 22px;
    color: #3a1b9a;
    min-width: 28px;
    text-align: center;
    margin-top: 5px;
    /* keeps icon aligned with text */
}

/* Text container */
.info-text {
    flex: 1;
}

.info-text h3 {
    font-size: 21px;
    font-weight: 600;
    margin: 0;
    color: #222;
}

.info-text p,
.info-text a {
    margin: 5px 0 0;
    color: #444;
    font-size: 18px;
    text-decoration: none;
    line-height: 1.4;
}

.error {
    display: block;
    font-size: 14px;
    color: red;
}

input.error-field,
textarea.error-field {
    border: 1px solid red;
}

/* Mobile view */
/* 📱 Mobile (320px - 480px) */
@media (min-width: 320px) and (max-width: 480px) {
    .contact-section {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .contact-form,
    .contact-info {
        max-width: 100%;
    }

    .contact-form h2 {
        font-size: 16px;
        text-align: left;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 10px;
        font-size: 12px;
        border-radius: 12px;
    }

    .contact-form button {
        padding: 12px;
        font-size: 14px;
    }

    .info-box {
        flex-direction: row;
        align-items: center;
    }

    .info-box i {
        font-size: 18px;
        margin-top: 0;
    }

    .info-text h3 {
        font-size: 14px;
    }

    .info-text p,
    .info-text a {
        font-size: 12px;
    }
}

/* 📱 Tablet (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }

    .contact-form,
    .contact-info {
        max-width: 100%;
    }

    .contact-form h2 {
        font-size: 18px;
        text-align: left;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px 12px;
        font-size: 13px;
        border-radius: 15px;
    }

    .contact-form button {
        padding: 14px;
        font-size: 15px;
    }

    .info-box {
        flex-direction: row;
        align-items: center;
    }

    .info-box i {
        font-size: 20px;
        margin-top: 0;
    }

    .info-text h3 {
        font-size: 15px;
    }

    .info-text p,
    .info-text a {
        font-size: 13px;
    }
}

/* 💻 Small Laptop (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .contact-section {
        flex-direction: row;
        padding: 30px;
        gap: 40px;
    }

    .contact-form,
    .contact-info {
        max-width: 50%;
    }

    .contact-form h2 {
        font-size: 20px;
        text-align: left;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 15px 14px;
        font-size: 14px;
        border-radius: 16px;
    }

    .contact-form button {
        padding: 15px;
        font-size: 16px;
    }

    .info-box i {
        font-size: 22px;
    }

    .info-text h3 {
        font-size: 16px;
    }

    .info-text p,
    .info-text a {
        font-size: 14px;
    }
}

/* 🖥️ Desktop (1025px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .contact-section {
        flex-direction: row;
        padding: 40px;

    }

    .contact-form,
    .contact-info {
        max-width: 45%;
    }

    .contact-form h2 {
        font-size: 22px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 16px 14px;
        font-size: 15px;
        border-radius: 18px;
    }

    .contact-form button {
        padding: 16px;
        font-size: 17px;
    }

    .info-box i {
        font-size: 24px;
    }

    .info-text h3 {
        font-size: 18px;
    }

    .info-text p,
    .info-text a {
        font-size: 15px;
    }
}

/* contact-us section end */
/* privacy-policy section start */
.privacy-container {
    background: #f7fbfe;
    padding: 50px 90px;
    margin: 20px auto;
    /*max-width: 1100px; */
    border-radius: 10px;
}

.privacypolicy h3 {
    margin: 0 0 8px 0;
}

.intro-line {
    height: 3px;
    width: 50px;
    background-color: #39a4dc;
    transition: width 0.5s ease;
    border-radius: 2px;
}

/* Hover effect: border + expanding line */
.privacypolicy {
    background: #fff;
    border: 1px solid #39a4dc;
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    max-width: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.privacypolicy h6 {
    color: #1d9ce5;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: normal;
    position: relative;
    padding-bottom: 8px;
}

.privacypolicy h6::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: #1d9ce5;
    transform: scaleX(0);
    transform-origin: left;
}

.privacypolicy:hover h6::after {
    transform: scaleX(1);
}

.privacypolicy:hover .intro-line {
    width: 100%;
}

/* Heading style */
/* Paragraphs & lists */
.privacypolicy p,
.privacypolicy ul {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.privacypolicy ul {
    padding-left: 0;
    list-style: none;
}

.privacypolicy ul li {
    margin-bottom: 5px;
}

/* Mobile responsiveness */
/* 📱 Mobile (320px - 480px) */
@media (min-width: 320px) and (max-width: 480px) {
    .privacy-container {
        padding: 30px;
    }

    .privacypolicy {
        padding: 12px;
    }

    .privacypolicy h3 {
        font-size: 15px;
    }

    .privacypolicy p,
    .privacypolicy ul {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* 📱 Tablet (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .privacypolicy {
        padding: 15px;
    }

    .privacypolicy h3 {
        font-size: 16px;
    }

    .privacypolicy p,
    .privacypolicy ul {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* 💻 Small Laptop (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .privacypolicy {
        padding: 20px 40px;
    }

    .privacypolicy h3 {
        font-size: 18px;
    }

    .privacypolicy p,
    .privacypolicy ul {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* 🖥️ Desktop (1025px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .privacypolicy {
        padding: 30px 60px;
    }

    .privacypolicy h3 {
        font-size: 20px;
    }

    .privacypolicy p,
    .privacypolicy ul {
        font-size: 16px;
        line-height: 1.8;
    }
}


/* privacy-policy section end */
/* terms and conditions section start */
.terms-section {
    padding: 2rem;
    background: #f9f9f9;
}

.terms-container {
    max-width: 100%;
    padding: 0px 60px;
    margin: auto;
}

.terms-box {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.terms-box:hover {
    background: #f0f8ff;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.terms-box h2 {
    margin-bottom: 0.8rem;
    color: #5b7c97;
    font-size: 1.5rem;
    font-weight: none;
}

.terms-box p,
.terms-box ul {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.terms-box ul {
    padding-left: 1.2rem;
}

.terms-box ul li {
    margin-bottom: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .terms-section {
        padding: 1rem;
    }

    .terms-box {
        padding: 1rem;
    }

    .terms-box h2 {
        font-size: 1.2rem;
    }

    .terms-box p,
    .terms-box ul {
        font-size: 0.95rem;
    }
}

/* terms and conditions section end */
.gradient-banner {
    background: linear-gradient(to right, #f39c12, #27ae60);
    padding: 40px 20px;
    text-align: center;
}

.gradient-banner p {
    color: white;
    font-size: 24px;

    max-width: 1180px;
    margin: auto;
}

/* Heading Section */
.heading-section {
    background: #eaf3ff;
    padding: 10px 20px 0px 20px;
    text-align: center;

}

.heading-section h2 {
    font-size: 3rem;
    color: #0a2540;
    font-weight: normal;
    margin: 0;
}

.heading-section p {
    text-align: center;
    margin: auto;
}

/* Services Section */
.services-section {
    padding: 30px;
    background: white;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 20px;
    align-items: center;

}

.service-item h3 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a2540;
}

.service-item p {
    font-size: 17px;

    color: #333;
}

/* Responsive Styles */
/* Tablet View */
@media (max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .heading-section h2 {
        font-size: 1.8rem;
    }

    .gradient-banner p {
        font-size: 1.1rem;
    }
}

/* Mobile View */
@media (max-width: 600px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .heading-section h2 {
        font-size: 1.5rem;
    }

    .gradient-banner p {
        font-size: 1rem;
    }
}

/* summit awards payments css start */
.forms-div {
    max-width: 1000px;
    margin: 40px auto;
    padding: 2rem;
    background: #fafbfc;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.forms {
    padding: 18px 18px;
    background: #fafbfc;
    box-shadow: 0 5px 15px 2px #00000059;
    max-width: 1150px;
    margin: 40px auto;
    border-radius: 10px;
}

/* Heading styling */
.forms h2 {
    font-size: 30px;
    color: #08054c;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.forms h2 i {
    font-size: 28px;
    /* make icon a little bigger */
    color: #393185;
    /* purple theme (you can change) */
    vertical-align: middle;
}


/* Grid layout */
.forms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
    margin-bottom: 24px;
}

/* Label and input styling */
label {
    font-size: 1rem;
    color: #08054c;
    margin-bottom: 8px;
    display: block;
}

inputs::placeholder {
    font-size: 1rem;
    color: #a3a3b3;
    font-weight: 400;
    opacity: 1;
}

.inputs {
    width: 90%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1.15rem;
    outline: none;
}

.inputs:focus {
    border-color: #08054c;
    box-shadow: 0 0 0 3px rgba(8, 5, 76, 0.15);
}

.professional .inputs {
    width: 1100px;
}

.termcheckbox {
    display: flex;
    align-items: flex-start;
    flex-direction: column;

    font-size: 1.1rem;
}

.checkbox input[type="checkbox"] {
    margin-top: 20px;
    accent-color: #08054c;
    height: 17px;
    width: 35px;

}

.checkbox p {
    line-height: 1.6;
    color: #444444;
    font-size: 15px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
    text-align: justify;
}

.forms-group {
    margin-bottom: 24px;
}

.forms-group label {
    font-size: 1rem;
    margin-bottom: 8px;
    display: block;

}

.forms-group input[type="text"] {
    width: 96%;
    padding: 12px;
    border-radius: 10px;
    font-size: 1.15rem;
    border: none;
    background-color: #f0f3f9;
    margin-left: -9px;
    font-size: 1rem;
    color: grey;
    font-weight: 400;
    opacity: 1;
}

.forms-group input[type="text"]:hover {
    border: #1f2530;
}

/* Submit button styling */
/* Tablet / Small Laptop (max-width: 1028px) */
@media (max-width: 1028px) {
    .forms {
        width: 70%;
        padding: 20px 40px;
    }

    .forms-div {
        max-width: 90%;
        padding: 1.5rem;
    }

    .forms-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .forms h2 {
        font-size: 26px;
    }

    .inputs {
        font-size: 1rem;
        padding: 9px;
    }

    .professional .inputs {
        width: 150%;
    }
}

/* Mobile View (max-width: 768px) */
@media (max-width: 768px) {
    .forms-div {
        padding: 1rem;
    }

    .forms h2 {
        font-size: 22px;
        gap: 8px;
    }

    .icons {
        width: 24px;
        height: 24px;
    }

    .forms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .inputs {
        font-size: 1rem;
        padding: 8px;
    }

    .professional .inputs {
        width: 100%;
    }

    .forms-group input[type="text"] {
        width: 100%;
        margin-left: 0;
        font-size: 0.95rem;
    }

    .checkbox {
        font-size: 0.95rem;
        gap: 8px;
    }

    .checkbox input[type="checkbox"] {
        margin-top: 19px;
        width: 18px;
        height: 18px;
    }
}

.error {
    color: red;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.inputs.error-border {
    border: 1px solid #a94442;
    background-color: #fff5f5;
    border-radius: 5px;
}


@media (max-width: 480px) {
    .forms h2 {
        font-size: 20px;
    }

    .inputs {
        font-size: 0.9rem;
    }

    .checkbox {
        font-size: 0.85rem;
    }
}

.main-content {
    background-color: #fff;
    padding: 0px 25px;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out forwards;
}

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

.content-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 20px 80px;
    /* display: flex;
    flex-direction: column;
    gap: 30px; */
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.blog-post {
    width: 100%;
}

.title-sidebar-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.post-title {
    display: inline-block;
    max-width: 700px;
    ;
}

.post-meta {
    color: #7f8c8d;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 15px;
    font-size: 0.95rem;
}

.post-header {
    width: 1100px;
}

.post-meta span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 8px;
    font-size: 16px;
}

.post-meta i {
    margin-right: 8px;
    color: #555;
    font-size: 1.2em;
}

.post-card {
    flex: 3;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    align-self: flex-start;
    /* 🔥 IMPORTANT */
}

.sidebar-card {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    align-self: flex-start;
    /* 🔥 IMPORTANT */
}

.post-card,
.sidebar-card {
    height: auto;
}

.post-card,
.sidebar-card {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

@media (max-width: 900px) {
    .title-sidebar-wrapper {
        flex-direction: column;
    }

    .post-card,
    .sidebar-card {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 900px) {
    .title-sidebar-wrapper {
        flex-direction: column;
    }

    .post-card,
    .sidebar-card {
        flex: none;
        width: 100%;
    }
}

.related-posts h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1d3557;
    position: relative;
    padding-bottom: 8px;
    font-weight: normal;
}

.related-posts h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e63946, #ff9f1c);
    border-radius: 3px;
}

.related-posts p {
    font-size: 1rem;
    color: #7f8c8d;
    margin: 0;
}

/* Featured image (below title) */
.featured-image {
    width: 80%;
    max-width: 800px;
}

.featured-image img {
    width: 750px;
    margin-top: 50px;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Post content */
.post-content {
    width: 800px;
    margin-left: 0;
}

.post-content h2,
.post-content h3 {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.3;
    color: #333;
    text-align: justify;
}

.post-content h3 {
    border-left: none;
    padding-left: 0;
}

.post-content p {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    margin-right: 10px;
}

.post-content p a {
    text-decoration: none;
    cursor: pointer;
    color: #0056d5;
    font-weight: 700;
}

.post-content ul,
.post-content ol {
    margin-bottom: 20px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.blog-head {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #222;
}

.post-content ul li {
    margin-bottom: 10px;
}

.post-content ul.benefits-list {
    list-style-type: none;
}

.post-content ul.benefits-list li {
    position: relative;
    padding-left: 25px;
}

.post-content ul.benefits-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.post-content ol {
    list-style-type: decimal;
    padding-left: 25px;
}

.post-content ol li {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .title-sidebar-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        margin-top: 20px;
    }

    .featured-image {
        width: 100%;
    }

    .post-content {
        width: 100%;
    }

    .W100 {
        width: 100%;
    }
}

.award-text h2:hover {
    color: rgb(80, 152, 192);
    text-decoration: underline #06163a 1px solid;
}

.student-img {
    height: 40px;
}

.faq-section {
    background: #f8fafc;
    padding: 60px 20px;

}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-container h2 {
    text-align: center;
    font-size: 28px;
    color: #0b3d91;
    margin-bottom: 30px;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 15px 10px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #0b3d91;
}

.arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 10px;
}

.faq-answer p {
    margin: 10px 0 15px;
    color: #555;
    line-height: 1.6;
}

.faq-question.active .arrow {
    transform: rotate(180deg);
    color: #0b3d91;
}

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

.summitawards-header h1 {
    font-size: 30px;
    color: #1f2c4b;
    text-align: center;
    text-decoration: underline;
}

.summitawards-header p {
    font-size: 25px;
    text-decoration: none;
}

.content-container2 {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 20px 80px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}



.content-container2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 equal columns */
    gap: 20px;
    /* space between columns */
}


.program-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    font-family: "Segoe UI", Roboto, sans-serif;
    color: #333;
    line-height: 1.7;
}

.program-container h1 {
    text-align: center;
    color: #0a3d62;
    font-size: 2rem;
    margin-bottom: 25px;
}

.program-container h2 {
    color: #1a5276;
    border-left: 4px solid #1a5276;
    padding-left: 12px;
    margin-top: 40px;
    font-size: 1.5rem;
}

.program-container h3 {
    color: #145a32;
    border-left: 3px solid #27ae60;
    padding-left: 10px;
    margin-top: 35px;
}

.program-container h4 {
    color: #444;
    font-weight: 600;
    margin-top: 20px;
}

.program-container p {
    margin-top: 10px;
    font-size: 1rem;
    text-align: justify;
}

.program-container ul,
.program-container ol {
    margin-top: 15px;
    padding-left: 25px;
}

.program-container li {
    margin-bottom: 8px;
}

.program-container ol li::marker {
    color: #1a5276;
    font-weight: 600;
}

.program-container ul li::marker {
    color: #27ae60;
}

.content-container2 {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    display: grid;

    /* Responsive columns */
    gap: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Soft shadow for the whole container */
}

/* Column styling */
.column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.left-col,
.right-col {
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Soft shadow for each column */
}

/* Category block styling */
.category.block {
    background: #ffffff;
    /* White background for each block */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Soft shadow */
    transition: transform 0.3s ease-in-out;
    height: 200px;
}

/* Hover effect for category blocks */
.category.block:hover {
    transform: translateY(-5px);
    /* Lift the block on hover */
}

/* Heading styling inside each block */
.category .blog-head {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    /* Divider line under heading */
}

/* Styling for program list */
.program-list {
    list-style-type: none;
    padding: 0;
}

.program-list li {
    font-size: 14px;
    margin-bottom: 8px;
}

.program-list a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

.program-list a:hover {
    color: #0056b3;
}

.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 40px auto 30px;
    padding: 10px;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

/* Input field styling */
.search-bar input {
    width: 80%;
    padding: 12px 15px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    outline: none;
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
}

.search-bar input:focus {
    background-color: #fff;
}

/* Button styling */
.search-bar button {
    padding: 12px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-bar button:hover {
    background-color: #0056b3;
}

/* Main Container */
.content-container1 {
    max-width: 1000px;
    margin: 60px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

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

.powered-by {
    color: #555;
    font-size: 1rem;
    margin-bottom: 10px;
}

.headline {
    font-size: 1.8rem;
    font-weight: 700;
    color: #003366;
    margin: 15px 0;
}

.subtext {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 30px;
}

/* Buttons */
.link-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn.primary {
    background: #005fa3;
    color: #fff;
}

.btn.primary:hover {
    background: #003d70;
}

.btn.secondary {
    background: #e6f0ff;
    color: #005fa3;
}

.btn.secondary:hover {
    background: #d2e3ff;
}

/* Info Card */
.info-card {
    background: #f8faff;
    border: 1px solid #dfe9ff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
    font-size: 1rem;
}

/* Lists */
.steps-section ul,
.benefits-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    line-height: 1.8;
}

.steps-section li,
.benefits-section li {
    background: #f3f6fb;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
}

.steps-section h2,
.benefits-section h2 {
    color: #003366;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* --- Main How It Works Section --- */
.content-container1 {
    max-width: 950px;
    margin: 60px auto;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.howitworks-section {
    text-align: left;
}

.intro-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.steps-list {
    counter-reset: step;
    list-style: none;
    padding: 0;
}

.steps-list li {
    background: #f8fbff;
    border: 1px solid #e1ecff;
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 20px 25px;
    transition: 0.3s;
}

.steps-list li:hover {
    background: #f0f7ff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.blog-head {
    font-weight: 700;
    color: #003366;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.closing-text {
    margin-top: 30px;
    text-align: center;
    font-size: 1rem;
    color: #444;
}

/* --- Testimonials --- */
.testimonials {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e6f0ff;
}

.testimonials h3 {
    text-align: center;
    color: #003366;
    margin-bottom: 25px;
}

blockquote {
    background: #f8faff;
    border-left: 4px solid #0074cc;
    padding: 15px 20px;
    margin: 15px auto;
    border-radius: 8px;
    font-style: italic;
    max-width: 700px;
}

blockquote footer {
    text-align: right;
    font-style: normal;
    color: #555;
    margin-top: 10px;
}

/* --- FAQ Section --- */
.faq-section {
    background: #f4f8ff;
    padding: 60px 20px;
    margin-top: 60px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    text-align: center;
    color: #003366;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #fff;
    border: none;
    padding: 18px 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #003366;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-question:hover {
    background: #e9f3ff;
}

.faq-answer {
    display: none;
    padding: 0 20px 15px 20px;
    color: #333;
}

.faq-answer p {
    margin: 0;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .arrow {
    transform: rotate(45deg);
}

.arrow {
    transition: 0.3s;
    font-size: 1.3rem;
}


/* Responsiveness: Adjust layout for smaller screens */
@media (max-width: 768px) {

    .program-container {
        padding: 25px;
    }

    .program-container h1 {
        font-size: 1.6rem;
    }

    .program-container h2 {
        font-size: 1.3rem;
    }

    .content-fellowship p {
        font-size: 1.7rem;
    }

    .content-container1 {
        padding: 25px 20px;
    }

    .steps-list li {
        padding: 15px;
    }

    .content-container2 {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        /* Adjust for smaller screens */
    }

    .left-col,
    .right-col {
        padding: 10px;
    }

    .category.block {
        padding: 12px;
        border-radius: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
        height: auto;
    }

    .search-bar {
        width: 90%;
        padding: 10px 15px;
        margin-top: 30px;
    }

    .search-bar input {
        width: 70%;
    }

    .search-bar button {
        padding: 10px 18px;
    }

    .headline {
        font-size: 1.5rem;
    }

    .content-container1 {
        padding: 20px;
    }

    .btn {
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .content-container2 {
        grid-template-columns: 1fr;
        /* Switch to single column */
    }

    .left-col,
    .right-col {
        padding: 10px;
    }

    .search-bar {
        width: 100%;
        padding: 10px;
        margin-top: 25px;
    }

    .search-bar input {
        width: 75%;
        padding: 10px;
    }

    .search-bar button {
        padding: 10px 16px;
    }
}

@media (max-width: 768px) {

    .footer-col table,
    .footer-col tbody,
    .footer-col tr,
    .footer-col td {
        display: block;
        width: 100%;
    }

    .footer-col td {
        text-align: left;
        border: none;
        padding-bottom: 8px;
    }
}


/* About Banner */
.about-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 14, 59, 0.5)), url('/banner-honor.jpg') center/cover no-repeat;
    position: relative;
    padding: 65px 0;
    text-align: center;
    color: #fff;
}

.about-banner .overlay {
    background: rgba(24, 51, 110, 0.44);
    padding: 30px 10px;
    border-radius: 10px;
    display: inline-block;
}

.about-banner h1 {
    font-size: 2.6em;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 800;
}

.about-banner .para-text {
    font-size: 1.15em;
    margin-top: 0;
}

.about-banner a {
    color: #ffd866;
    text-decoration: underline;
}



.table-tabs {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
}

table-tabs::-webkit-scrollbar {
    height: 6px;
}

.tab-btn {
    padding: 8px 22px;
    background: #eff4fa;
    color: #2a3d6d;
    border: none;
    border-radius: 6px 6px 0 0;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.22s, color 0.22s;
}

.tab-btn.active,
.tab-btn:focus {
    background: #3662e0;
    color: #fff;
}

/* Honor Wall Container */
.honor-wall-container {
    max-width: 1100px;
    margin: 36px auto;
    padding: 22px 16px 38px 16px;
    background: #f8fafc;
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(9, 45, 93, 0.14);
}

.honor-wall-header-text {
    margin-bottom: 20px;
}

.honor-wall-header-text p {
    font-size: 1.07em;
    color: #21335d;
    font-weight: 600;
}

/* Controls */
.honor-wall-data-table {
    background: #fff;
    padding: 28px 20px 18px 20px;
    border-radius: 14px;
    box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.04);
}

.controls {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 12px;
}

.entries-per-page,
.search-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 1em;
}

#entries,
.search {
    border: 1px solid #cdd8ee;
    border-radius: 5px;
    padding: 6px 11px;
    background: #f4f7fa;
    transition: border-color 0.2s;
    font-size: 1em;
}

#entries:focus,
.search:focus {
    border-color: #4a90e2;
    outline: none;
}

/* Table Styling */
.honor-data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.honor-data-table thead {
    background: #edf2fb;
}

.honor-data-table th,
.honor-data-table td {
    text-align: left;
    padding: 10px 12px;
    font-size: 1em;
}

.honor-data-table th {
    font-weight: 700;
    color: #183169;
    border-bottom: 2px solid #dee7f4;
    letter-spacing: 0.5px;
    padding: 12px 14px;
    background: #f5f8ff;
    font-size: 0.95em;
}

.honor-data-table td {
    padding: 12px 14px;
    font-size: 0.95em;
    vertical-align: middle;
    border-bottom: 1px solid #edf2fa;
}

.honor-data-table tr:last-child td {
    border-bottom: none;
}

.honor-data-table img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
}

@media (max-width: 650px) {

    .honor-data-table th,
    .honor-data-table td {
        padding: 8px 10px;
        font-size: 0.85em;
    }

    .honor-data-table img {
        width: 40px;
        height: 40px;
    }
}

/* Table Footer and Pagination */
.table-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

.entry-info {
    font-size: 0.99em;
    color: #54637e;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.pagination button {
    border: 1px solid #4a90e2;
    background: #fff;
    color: #254478;
    padding: 4px 14px;
    margin: 1px 0;
    border-radius: 5px;
    font-size: 0.98em;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}

.pagination button.active,
.pagination button:focus {
    background: #4a90e2;
    color: #fff;
    font-weight: bold;
    border-color: #4a90e2;
}

/* Utility for empty state / loading */
.honor-data-table td.no-data {
    text-align: center;
    color: #c7c7c7;
    font-style: italic;
}

/* Responsive rounding */
/* @media (max-width: 500px) {

    .honor-wall-container,
    .honor-wall-data-table {
        padding: 10px 2px;
    }
} */
.honor-data-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
    background: #fff;
}


@media (max-width: 768px) {
    .table-tabs {
        gap: 10px;
    }


}

.tagline {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
    font-style: italic;
    text-align: center;
    height: 40px;
    line-height: 20px;
    overflow: visible;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.award-top-btn {
    display: inline-block;
    padding: 8px 14px;
    background: #3f51b5;
    color: #fff;
    border-radius: 6px;
    margin-top: -180px;
    margin-bottom: 50px;
    font-size: 20px;
    text-decoration: none;
}

.award-top-btn-dist {
    display: inline-block;
    padding: 8px 14px;
    background: #3f51b5;
    color: #fff;
    border-radius: 6px;

    margin-bottom: 50px;
    font-size: 20px;
    text-decoration: none;
}

.award-buttons a {
    margin-right: 10px;
}

.award-image {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.award-image img {
    max-width: 300px;
    width: 100%;
}

.author-btn-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

/* Blue Button */
.author-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #007bff;
    /* Blue */
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
}

.author-btn:hover {
    background-color: #0056b3;
    /* Darker blue */
}

.table-tabs {
    display: none !important;
}


.collapse-text {
    --lines: 10;
    display: -webkit-box;
    -webkit-line-clamp: var(--lines);
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.collapse-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.toggle-btn {
    margin-top: 8px;
    background: none;
    border: none;
    color: #6a0dad;
    font-weight: 600;
    cursor: pointer;
}

.form-container {
    position: relative;
    margin: 40px auto;
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

h1 {
    text-align: left;
    margin-bottom: 3px;
}

h5 {
    text-align: left;
    font-size: 20px;
    /* margin-bottom: 10px; */
}

.subtitle {
    font-size: 20px;
    text-align: left;
    color: #000;
    margin-bottom: 30px;
    font-style: italic;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

label {
    font-weight: 600;
    /* margin-top: 15px; */
    display: block;
}

.form-container input,
textarea,
select {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

*/ textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkbox-row {
    display: flex;
    align-items: center;
    /* keeps same line */
    gap: 20px;
}

.checkbox-row .question {
    min-width: 320px;
    /* keeps alignment neat */
    font-weight: 600;
}

.checkbox-row .options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    /* wraps nicely on small screens */
}

.checkbox-row label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-weight: 500;
}

.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

button {
    padding: 10px 22px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
}

.btn-prev {
    background: #ccc;
}

.btn-next {
    background: #0073aa;
    color: #fff;
}

.btn-submit {
    background: #28a745;
    color: #fff;
}

.progress {
    display: flex;
    margin-bottom: 25px;
}

.progress div {
    flex: 1;
    height: 6px;
    margin-right: 6px;
    background: #ddd;
    border-radius: 3px;
}

.progress div.active {
    background: #0073aa;
}

.quality-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.quality-table th,
.quality-table td {
    border: 1px solid #ddd;
    padding: 12px;
    vertical-align: top;
}

.quality-table th {
    background-color: #f4f6f8;
    text-align: left;
    font-weight: 600;
}

.quality-table label {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
}

.quality-table input[type="text"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

label {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
}

.declaration-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.declaration-table th,
.declaration-table td {
    border: 1px solid #ddd;
    padding: 12px;
    vertical-align: middle;
}

.declaration-table th {
    background-color: #f4f6f8;
    text-align: left;
    font-weight: 600;
}

.declaration-table input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

.icp-body {
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.icp-header {
    background: linear-gradient(120deg, #1d4ed8, #2563eb);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.icp-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.icp-header p {
    max-width: 850px;
    margin: auto;
    font-size: 1.1rem;
    opacity: 0.95;
}

section {
    padding: 30px 8%;
}

.icp-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.icp-section-title h2 {
    font-size: 2.2rem;
    color: #1d3557;
    margin-bottom: 10px;
}

.icp-section-title p {
    color: #64748b;
    max-width: 700px;
    margin: auto;
}

.icp-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.icp-card {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.icp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.icp-card h3 {
    margin-bottom: 10px;
    color: #1d3557;
}

.icp-card p {
    color: #64748b;
    font-size: 0.95rem;
}

.highlight {
    background: #eef2ff;
    border-left: 5px solid #1d3557;
    padding: 25px;
    border-radius: 12px;
}

.icp-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-box {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.price-box h3 {
    color: #1d3557;
    margin-bottom: 15px;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 15px 0;
}

.price span {
    font-size: 1rem;
    color: #64748b;
}

.icp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    border-radius: 40px;
    background: #1d3557;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.icp-btn:hover {
    background: #1d3557;
    transform: translateY(-2px);
}



@media(max-width: 768px) {
    .icp-header h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 50px 6%;
    }
}


.ucp-body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f6f8fb;
    color: #333;
    line-height: 1.6;
}

.ucp-container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

/* Flex layout */
.ucp-header {
    display: flex;
    justify-content: space-between;
    /* left & right */
    align-items: center;
    /* vertical center */
    gap: 20px;
}

/* Left content */
.ucp-text h1 {
    font-size: 34px;
    color: #1d3557;
    margin-bottom: 8px;
}

.ucp-text .subtitle {
    font-size: 18px;
    color: #555;
}

/* Button styling */
.institute-list-btn {
    background-color: #0b1f3a;
    /* dark navy blue */
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s ease;
}

.institute-list-btn:hover {
    background-color: #142f5f;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .ucp-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .institute-list-btn {
        margin-top: 15px;
    }
}

.institute-list {
    padding: 40px 20px;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
    color: #1d3557;
}

/* .institute-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
} */

/* .institute-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 30px;
} */

/* Card */
.institute-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.institute-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Image section */
.card-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

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

.institute-card:hover .card-image img {
    transform: scale(1.15);
}

/* Dark overlay */
.card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

/* Content */
.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 1.2rem;
    color: #0f172a;
}

.card-body p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    flex-grow: 1;
}

/* Button */
.view-btn {
    align-self: flex-start;
    text-decoration: none;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.35);
}

.view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.5);
}

/* Smooth entry animation */
.institute-card {
    animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ================================
   Institute Details Page Styling
================================ */
/* GRID WRAPPER */
.institute-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    background: #f7f9fc;
    align-items: stretch;
}

/* CARD */
.institute-card {
    max-width: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.institute-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.institute-card:hover img {
    transform: scale(1.1);
}

/* BODY */
.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-body h3 {
    font-size: 1.2rem;
    color: #1e1e1e;
}

.card-body p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* BUTTON */
.view-btn {
    margin-top: auto;
    align-self: flex-start;
    text-decoration: none;
    background: linear-gradient(135deg, #2b5cff, #003cb3);
    color: white;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(43, 92, 255, 0.4);
}

/* MOBILE */
@media (max-width: 768px) {
    .card-image {
        height: 160px;
    }
}

/* Wrapper */
.institute-wrapper1 {
    background: #f7f9fc;
    padding: 40px 20px;
}

/* Header Card */
.institute-header {
    max-width: 900px;
    margin: auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Logo */
.logo-box img {
    max-height: 130px;
    margin-bottom: 15px;
}

/* Description */
.description {
    max-width: 650px;
    margin: 0 auto 25px;
    color: #666;
}

/* Button */
.enquiry-toggle-btn {
    background: linear-gradient(135deg, #2b5cff, #003cb3);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
}

/* FORM SECTION */
.enquiry-wrapper {
    display: none;
    justify-content: center;
    margin-top: 40px;
}

/* Form Card */
.enquiry-card {
    background: #fff;
    max-width: 600px;
    width: 100%;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Inputs */
.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* Submit */
.submit-btn {
    background: linear-gradient(135deg, #2b5cff, #003cb3);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
}

/* Mobile */
@media (max-width: 768px) {
    .institute-header {
        padding: 25px;
    }

    .enquiry-card {
        padding: 25px;
    }
}

.section {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.section h2 {
    margin-bottom: 15px;
    font-size: 26px;
}

.section p {
    margin-bottom: 15px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.offer-card {
    background: #f9fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #1d3557;
}

.offer-card h3 {
    margin-top: 0;
    font-size: 18px;
    color: #1d3557;
}

.fees-box {
    background: #f1f5ff;
    padding: 25px;
    border-radius: 8px;
    border-left: 6px solid #1d3557;
}

.fees-box strong {
    color: #1d3557;
}

.cta {
    text-align: center;
    margin-top: 40px;
}

.cta a {
    display: inline-block;
    margin: 10px;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-primary {
    background: #1d3557;
    color: #fff;
}

.btn-primary:hover {
    background: #14243d;
}

.btn-outline {
    display: inline-block;
    padding: 20px 26px;
    border: 2px solid #1d3557;
    color: #1d3557;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline:hover {
    background: #1d3557;
    color: #fff;
}

.btn-inline {
    display: inline-block;
    padding: 20px 26px;
    border: 2px solid #1d3557;
    background: #1d3557;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-inline:hover {
    background: #fff;
    color: #1d3557;
}

.application-form {
    max-width: 700px;
    margin: 30px auto 0;
    padding: 0 15px;
    /* mobile padding */
}

/* Form Groups */
.form-group1 {
    margin-bottom: 18px;
}

.form-group1 label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 15px;
}

.form-group1 input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
    box-sizing: border-box;
}

/* Payment Box */
.payment-box {
    background: #f5f7fa;
    padding: 18px;
    border-radius: 8px;
    margin: 25px 0;
}

.payment-box h4 {
    margin-bottom: 8px;
    font-size: 17px;
}

/* Subtitle */
.subtitle1 {
    margin-bottom: 25px;
    color: #555;
    font-size: 15px;
}

/* Tablet responsiveness */
@media (max-width: 768px) {
    .application-form {
        max-width: 90%;
    }

    .payment-box {
        padding: 15px;
    }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .application-form {
        margin-top: 20px;
    }

    .form-group1 label {
        font-size: 14px;
    }

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

    .payment-box h4 {
        font-size: 16px;
    }

    .subtitle1 {
        font-size: 14px;
    }
}

.error-text {
    color: red;
    font-size: 13px;
    margin-top: 4px;
    display: block;
}

.success-msg {
    color: green;
    margin-top: 15px;
    font-weight: 500;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}



.highlight-card {

    max-width: 280px;
    width: 100%;
    position: relative;
    justify-self: center;

    border: 3px solid #6b21a8;
    background: linear-gradient(135deg, #f5f3ff, #ffffff);
    box-shadow: 0 15px 40px rgba(107, 33, 168, 0.25);
    transform: scale(1.02);
}

/* Optional label */
.highlight-card::before {
    content: "★ Featured";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #6b21a8;
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.cards-section {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/* Section heading */
.cards-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #333;
}

/* Grid layout */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* Card */
.profile-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    display: flex;
    flex-direction: column;
    height: 90%;

    align-items: center;
    text-align: center;

}

.profile-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Profile image */
.profile-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 4px solid #eaeaea;
}

/* Name */
.profile-card h3 {
    margin: 10px 0 5px;
    font-size: 20px;
    color: #222;
}

/* Designation */
.profile-card p.designation {
    font-size: 16px;
    color: #000;
    margin-bottom: 15px;
    font-style: 600;
}

/* Button */
.profile-card a {
    margin-top: auto;
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 20px;
    text-decoration: none;
    background: #1d4ed8;
    color: #fff;
}

.profile-card a:hover {
    background: #163fa3;
}

/* ========================= */
/* Responsive Styles */
/* ========================= */

/* Tablets */
@media (max-width: 992px) {
    .cards-section h2 {
        font-size: 28px;
    }

    .profile-card img {
        width: 110px;
        height: 110px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .cards-section {
        padding: 30px 15px;
    }

    .cards-section h2 {
        font-size: 24px;
    }

    .profile-card {
        padding: 20px 15px;
    }

    .profile-card img {
        width: 100px;
        height: 100px;
    }

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

    .profile-card p.designation {
        font-size: 13px;
    }

    .profile-card a {
        font-size: 13px;
        padding: 7px 16px;
    }
}

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

.related-item {
    margin-bottom: 14px;
}

.related-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    align-items: center;
}

.related-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.related-info {
    display: flex;
    flex-direction: column;
}

.related-title {
    font-size: 14px;
    font-weight: 600;
    color: #14365d;
    line-height: 1.3;
}

.related-link:hover .related-title {
    color: #ed4e14;
}

.related-info .date {
    font-size: 12px;
    color: #777;
    margin-top: 3px;
}

.national-body {
    margin: 0;
    padding: 0;
    background-color: #f0f8ff;
    color: #6c757d;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

/* National-header Styles */
.national-header {
    background: linear-gradient(to right, #1a5f7a, #2a9d8f);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.national-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo i {
    font-size: 2.5rem;
}

.logo-text h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.tagline {
    text-align: center;
    font-style: italic;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
    color: #000;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 95, 122, 0.9), rgba(42, 157, 143, 0.9)), url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #e63946;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.cta-button:hover {
    background-color: #c1121f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
}

/* Main Content */
.content-section {
    margin-bottom: 3rem;
}

.main-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.main-info>div {
    flex: 1;
    min-width: 300px;
}

.card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #1a5f7a;
    height: 100%;
}

.card h3 {
    color: #1a5f7a;
    margin-bottom: 1rem;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.card h4 {
    color: #2a9d8f;
    margin-bottom: 0.5rem;
}

.highlight-box {
    background-color: rgba(26, 95, 122, 0.1);
    border-left: 4px solid #1a5f7a;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.benefits-list {
    list-style-type: none;
}

.benefits-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    color: #2a9d8f;
    margin-right: 10px;
}

.fee-box {
    background: linear-gradient(to right, #1a5f7a, #2a9d8f);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin: 1.5rem 0;
}

.fee-box .fee {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px 0;
}

.fee-box .note {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Awards Section */
.national-awards-section {
    text-align: center;
    margin: 4rem 0;
}

.national-section-title {
    color: #1a5f7a;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.national-section-title:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #1a5f7a, #2a9d8f);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.awards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* Award Card Styles */
.national-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 5px solid #2a9d8f;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    display: flex;
    flex-direction: column;

}

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

.award-national-header {
    background: linear-gradient(to right, #2a9d8f, #2a9d8fcc);
    color: white;
    padding: 1.5rem;
    text-align: center;
    height: 170px;
}

.award-national-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.award-national-header p {
    font-style: italic;
    opacity: 0.9;
    font-size: 0.95rem;
}

.award-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.award-body p {
    margin-bottom: 1rem;
}

.eligibility {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #e63946;
}

.deliverables {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.deliverable-item {
    padding: 0.5rem;
}

.deliverable-item i {
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 5px;
}

.deliverable-item li {
    font-size: 0.9rem;
    margin: 0;
}

.award-fee {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #1a5f7a;
    margin: 1rem 0;
}

.national-btn {
    display: block;
    width: 100%;
    background-color: #1a5f7a;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    text-decoration: none;
    margin-top: auto;

}

.national-btn:hover {
    background-color: #2a9d8f;
}



/* Responsive Design */
@media (max-width: 768px) {
    .national-header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .deliverables {
        flex-direction: column;
        gap: 1rem;
    }

    .awards-container {
        flex-direction: column;
        align-items: center;
    }

    .national-card {
        max-width: 100%;
    }
}

.featured-row {
    padding: 0px 300px;
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    margin-bottom: 40px;
    justify-items: center;
    gap: 16px;
    grid-column: 1 / -1;
    /* ✅ THIS IS THE KEY FIX */
}

/* Mobile: stack featured cards */
@media (max-width: 768px) {
    .featured-row {
        grid-template-columns: 1fr;
    }
}


.vibrant-body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

/* Header Styles */
.vibrant-header {
    background: linear-gradient(135deg, #000080 0%, #138808 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.vibrant-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff9933, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #000080;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.header-text h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.header-text p {
    font-size: 14px;
    opacity: 0.9;
}

/* Awards Grid */
.awards-section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    color: #000080;
    margin-bottom: 10px;
    display: inline-block;
    padding: 0 20px;
    background-color: #f9f9f9;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #ff9933, #138808);
    z-index: -1;
}

.section-title p {
    color: #757575;
    max-width: 800px;
    margin: 0 auto;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.award-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #ff9933;
}

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

.award-card-content {
    padding: 25px;
}

.award-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4caf50, #1a237e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 24px;
}

.award-name {
    font-size: 20px;
    color: #000080;
    margin-bottom: 10px;
    font-weight: 600;
    min-height: 60px;
}

.award-for {
    font-size: 15px;
    color: #757575;
    margin-bottom: 20px;
    min-height: 80px;
}

.proceed-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #000080, #1a237e);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.proceed-btn:hover {
    background: linear-gradient(to right, #1a237e, #ff9933);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalFade 0.3s ease;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.modal-header {
    background: linear-gradient(to right, #000080, #138808);
    color: white;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 22px;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    padding: 30px;
}

.award-description {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #ff9933;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000080;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff9933;
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.vibrant-checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.vibrant-checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.courier-details {
    margin-top: 20px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: none;
}

.declaration {
    background-color: #fff8e1;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid #ffd700;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #138808, #4caf50);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background: linear-gradient(to right, #4caf50, #ff9933);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/* Responsive Styles */
@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

    .award-name {
        min-height: auto;
    }

    .award-for {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .modal-body {
        padding: 20px;
    }

    .modal-header h3 {
        font-size: 18px;
    }
}

/* Sponsorship Section Styles */
.sponsorship-section {
    margin-top: 10px;
    max-height: 350px;
    /* adjust height as needed */
    overflow-y: auto;
    padding-right: 5px;
    /* avoids scrollbar overlap */
}

.sponsorship-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.sponsor-item {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.sponsor-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #4CAF50;
}

.sponsor-logo {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
    filter: grayscale(0%);
}

.sponsorship-cta {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.sponsorship-cta p {
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.sponsorship-link {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sponsorship-link:hover {
    background: #3d8b40;
    transform: translateY(-2px);
}

.sponsorship-section::-webkit-scrollbar {
    width: 6px;
}

.sponsorship-section::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 10px;
}

.sponsorship-section::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .sponsorship-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

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

   .sponsor-logo {
        max-height: 80px;
    }
}

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

.hall-nav-left {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}
.hall-nav-left {
    position: sticky;
    top: 20px;
    z-index: 10;
}

.hall-nav-btn {
    padding: 10px 18px;
    background-color: #5a2ca0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.hall-nav-btn:hover {
    background-color: #431f7a;
}

.ambassador-body {
    color: #222222;
    background-color: #ffffff;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

/* Header Styles */
.ambassador-header {
    background: linear-gradient(135deg, #1a3c8b 0%, #2a56c6 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.logo-icon {
    font-size: 2.5rem;
    margin-right: 15px;
    color: #d4af37;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.ambassador-tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Introduction Section */
.intro {
    padding: 3rem 0;
    background-color: #f9fafc;
    border-bottom: 1px solid #e1e5f0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro h2 {
    color: #1a3c8b;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.intro p {
    font-size: 1.1rem;
    color: #444444;
    margin-bottom: 1.5rem;
}

.ambassador-highlight-box {
    background-color: #e8efff;
    border-left: 4px solid #d4af37;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 8px 8px 0;
    text-align: left;
}

/* Ambassadors Grid */
.ambassadors-section {
    padding: 3rem 0;
}

.ambassadors-section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #1a3c8b;
    font-size: 2rem;
    position: relative;
}

.ambassadors-section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #d4af37;
    margin: 10px auto;
    border-radius: 2px;
}

.ambassadors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.ambassador-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(26, 60, 139, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e1e5f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ambassador-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 60, 139, 0.15);
}

.card-header {
    background-color: #1a3c8b;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: #d4af37;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
}

.ambassadors-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-purpose {
    font-size: 0.95rem;
    color: #444444;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.card-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    margin-bottom: 0.8rem;
    display: flex;
}

.detail-label {
    font-weight: 600;
    color: #1a3c8b;
    min-width: 120px;
}

.detail-value {
    color: #666666;
}

.card-footer {
    margin-top: auto;
    text-align: center;
}

.ambassadors-btn {
    display: inline-block;
    background-color: #1a3c8b;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

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

/* Hall of Ambassadors */
.hall-section {
    padding: 3rem 0;
    background-color: #f9fafc;
    border-top: 1px solid #e1e5f0;
}

.hall-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: #444444;
}

.hall-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(26, 60, 139, 0.08);
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
}

.hall-table th {
    background-color: #1a3c8b;
    color: white;
    padding: 1.2rem 1rem;
    text-align: left;
    font-weight: 600;
}

.hall-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid #e1e5f0;
    color: #444444;
}

.hall-table tr:last-child td {
    border-bottom: none;
}

.hall-table tr:hover {
    background-color: #e8efff;
}

.photo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e8efff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a3c8b;
    font-size: 1.5rem;
}

/* Footer */


/* Modal for Ambassador Details */
.ambassadors-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.ambassadors-modal-content {
    background-color: white;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.ambassadors-modal-overlay.active .ambassadors-modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666666;
}

.ambassadors-modal-header {
    background-color: #1a3c8b;
    color: white;
    padding: 1.5rem;
    border-radius: 8px 8px 0 0;
    margin: -2.5rem -2.5rem 2rem;
}

.ambassadors-modal-body h3 {
    color: #1a3c8b;
    margin: 1.5rem 0 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e8efff;
}

.ambassadors-modal-body p {
    margin-bottom: 1rem;
    color: #444444;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .ambassador-tagline {
        font-size: 1rem;
    }

    .ambassadors-grid {
        grid-template-columns: 1fr;
    }

    .hall-table {
        display: block;
        overflow-x: auto;
    }

    .ambassadors-modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .ambassadors-modal-header {
        margin: -1.5rem -1.5rem 1.5rem;
    }
}