/* ===============================================
   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;
}

/* Base styles */
.header-main-header {
    padding: 0 80px;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background-color: #fff;
}

.header-container {
    display: flex;
    justify-content: space-between;
    width: auto;
    padding: 0px 0px;
}

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

.header-header-left {
    justify-content: center;
}

.header-header-center {
    box-sizing: border-box;
    padding: 20px;
    justify-content: flex-end;
    flex: 1;
}

.header-header-right {
    display: flex;
}

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

.header-main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.header-nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0px 10px;
    border-radius: 4px;
    font-size: 18px;
    line-height: 24px;
    transition: all 0.3s ease;
    position: relative;
}

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

/* Dropdown styles */
.header-dropdown {
    position: static;
}

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

/* Dropdown menu (desktop default) */
.header-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 90%;
    margin: 0 auto;
    background: #fff;
    padding: 20px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.header-dropdown:hover .header-dropdown-menu,
.header-dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.header-dropdown-item {
    display: flex;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
    width: 100%;
}

.header-dropdown-item:hover {
    background: #f5f5f5;
    color: #0066cc;
}

/* Mobile Controls */
.header-mobile-controls {
    display: none;
    align-items: center;
    gap: 10px;
}

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

.header-mobile-contact-info {
    display: none;
}

.header-desktop-search {
    display: block;
}

.header-desktop-search i,
.header-mobile-search-btn i {
    font-size: 22px;
}

/* ===============================================
   Media Queries
=============================================== */

/* Small mobile */
@media (max-width: 480px) {
    .header-main-header {
        padding: 0 20px;
    }

    .header-container {
        flex-wrap: wrap;
        width: 100%;
    }

    .header-logo {
        height: 40px;
    }

    .header-header-center {
        padding: 0 5px 0 10px;
    }

    .header-main-nav {
        display: none;
        position: fixed;
        top: 50px;
        left: 0;
        width: 95%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 1001;
        gap: 8px;
    }

    .header-main-nav.active {
        transform: translateY(0);
        display: flex;
    }

    .header-nav-link {
        font-size: 15px;
        padding: 0px 6px;
    }

    .header-dropdown {
        position: relative;
    }

    .header-dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        width: 80% !important;
        padding: 0;
        margin-top: 10px;
    }

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

    .header-dropdown-item {
        font-size: 13px;
        padding: 5px 0;
        justify-content: flex-start;
    }

    .header-mobile-contact-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background-color: #0066cc;
        padding: 10px;
        border-radius: 4px;
        width: 95%;
        box-sizing: border-box;
    }

    .header-mobile-contact-info div,
    .header-mobile-contact-info a {
        color: #fff;
    }

    .header-mobile-contact-info a {
        text-decoration: none;
    }

    .header-mobile-contact-info a:hover {
        text-decoration: underline;
    }

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

    .header-desktop-search {
        display: none;
    }
}

/* 481px - 768px */
@media (min-width: 481px) and (max-width: 768px) {
    .header-main-header {
        padding: 0 30px;
    }

    .header-logo {
        height: 50px;
    }

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

    .header-dropdown-menu {
        grid-template-columns: repeat(4, 1fr);
        transform: translateX(-17%) !important;
        width: 80% !important;
        margin: 0 auto;
    }

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

    .header-desktop-search {
        display: none;
    }
}

/* 769px - 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-main-header {
        padding: 0 40px;
    }

    .header-logo {
        height: 60px;
    }

    .header-nav-link {
        font-size: 18px;
        padding: 0px 8px;
    }

    .header-dropdown-menu {
        grid-template-columns: repeat(4, 1fr);
        transform: translateX(-17%) !important;
        width: 80% !important;
        margin: 0 auto;
    }

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

/* 1025px - 1440px (Fixed to look like static) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .header-main-header {
        padding: 0 80px;
    }

    .header-container {
        width: 100%;
    }

    .header-logo {
        height: 80px;
    }

    .header-header-center {
        padding: 0 10px 0 20px;
    }

    .header-main-nav {
        gap: 5px;
    }

    .header-nav-link {
        font-size: 18px;
        padding: 0px 5px;
    }

    /* ✅ dropdown aligned like static version */
    .header-dropdown-menu {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-17%) !important;
        width: 80% !important;
        margin: 0 auto !important;
        grid-template-columns: repeat(4, 1fr) !important;
        background: #fff !important;
        padding: 20px 30px !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
        border-radius: 0 !important;
        top: 100% !important;
        z-index: 1000 !important;
    }

    .header-dropdown-item {
        font-size: 16px;
    }
}

/* 1441px and above */
@media (min-width: 1441px) {
    .header-main-header {
        padding: 0 120px;
    }

    .header-logo {
        height: 90px;
    }

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

    .header-dropdown-menu {
        grid-template-columns: repeat(4, 1fr);
        transform: translateX(-17%) !important;
        width: 80% !important;
        margin: 0 auto;
        max-width: 1600px;
    }
}

/*===============================================
                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;
    font-family: "Arial", sans-serif;
}

.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-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;
}

.digital-awards-details .details-container {
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.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) {

    /* 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: 80px 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;
    font-family: "Inter", Arial, sans-serif;
    color: #1f2937;
}

.fellowships .site-head {
    text-align: center;
    margin-bottom: 40px;
}

.fellowships .site-head h1 {
    font-size: 28px;
    margin: 0;
    font-weight: 700;
}

.fellowships .site-head .tagline {
    font-size: 16px;
    color: #6b7280;
    margin: 8px 0;
}

.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;
    /* adjust size */
    height: auto;
    border-radius: 8px;
    /* optional rounded corners */
}

/* 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;
}

.fellowship-subtitle {
    font-size: 17px;
    color: #6b7280;
    margin: 0 0 12px 0;
}

/* 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: 300px;
    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 {
    width: 100%;
    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-left: 90px;
    margin-top: 50px;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out forwards;
    margin-bottom: 50px;
}

@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: auto;
    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;
    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;
    gap: 12px;

    margin-top: 15px;
    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: 100%;
        padding: 0px 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;
}

/* Extra Small Devices (max-width: 480px) */
@media (max-width: 480px) {
    .forms h2 {
        font-size: 20px;
    }

    .inputs {
        font-size: 0.9rem;
    }

    .checkbox {
        font-size: 0.85rem;
    }
}

/* summit awards payments css end */
.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 Section */
.blog-post {
    width: 100%;
}

/* Wrapper for title + sidebar */
.title-sidebar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.post-header {
    flex: 3;
}

.post-title {
    font-size: 3.0rem;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 20px;
    width: 85%;
}

.post-meta {
    color: #7f8c8d;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 15px;
    font-size: 0.95rem;
}

.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;
}

/* Sidebar beside title */
.sidebar {
    flex: 1;
}

.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: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Post content */
.post-content {
    width: 63%;
    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;
    font-family: "Poppins", sans-serif;
}

.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;
}