* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #ffffff66;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(19, 35, 62);
}

/* Header/NavBar */

.header-container {
    background-color: rgba(19, 35, 62, 0.8);
    border-bottom: 1px solid #ffffff66;
    backdrop-filter: blur(5px);
    position: fixed;
    z-index: 998;
    border-radius: 0 0 16px 16px;
    top: 0;
    left: 0;
    width: 100%;
}

.my-container {
    max-width: 1320px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

@media (max-width: 991px) {
    .my-container {
        padding: 30px 15px !important;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-logo {
    width: 175px;
}

.secondary-logo {
    width: 70px;
}

.menu-container {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.menu-items {
    display: flex;
    gap: 24px;
    list-style: none;
}

.menu-item,
.contact-item {
    display: flex;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
}

@media (max-width: 768px) {

    .contact-item,
    .menu-item {
        font-size: 12px;
    }
}

.menu-icon {
    width: 20px;
    margin-right: 8px;
}

.whatsapp-button {
    background-color: transparent;
    border: 1px solid #ffffff66;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;

    .whatsapp-icon {
        width: 20px;
    }
}

/* Dropdown Menu */
.dropdown-content {
    display: none;
    position: fixed;
    background-color: rgba(19, 35, 62, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    top: 108px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1191px;
    min-width: 600px;
    z-index: 999;
    border-radius: 0px 0px 16px 16px;
    border: 1px solid #ffffff66;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    border-radius: 0px 0px 16px 16px;
    max-height: 60vh;
    overflow-y: auto;
}

.left-column .span-both {
    grid-column: span 2;
    width: 100%;
}

.dropdown-content ul {
    list-style: none;
    padding: 0;
}

.dropdown-content li a {
    border: 1px solid #ffffff66;
    color: #fff;
    padding: 18px 24px;
    text-decoration: none;
    display: block;
    font-weight: 600;
}

.span-both {
    grid-column: 1 / span 2;
    color: #fff;
    padding: 18px 24px;
    text-decoration: none;
    font-weight: 600;
    border-top: 1px solid #ffffff66;
}

@media (max-width: 481px) {
    .span-both {
        border: 1px solid #ffffff66;
        padding: 8px;
    }
}

.dropdown-content li a:hover {
    background-color: #333;
}

.dropdown-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.menu-item.show-icon .dropdown-icon {
    transform: rotate(180deg);
}

.program-section {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
}

.program-btn {
    border-radius: 6px;
    padding: 18px 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 16.8px;
    border: 1px solid #ffffff66;
    background-color: transparent;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .program-section {
        overflow-x: auto;
        padding: 16px;
        gap: 10px;
    }

    .program-btn {
        height: 75px;
        width: 150px;
    }
}

@media (max-width: 768px) {
    .program-section {
        overflow-x: auto;
        padding: 16px 10px;
        gap: 10px;
    }
}

.program-btn a {
    color: #fff;
    text-decoration: none;
}

.program-btn:hover {
    background-color: #e74c3c;
}

.program-btn.program-btn-active {
    background-color: #e74c3c;
    color: #fff;
    border: none;
}

.show-more-btn {
    border-radius: 6px;
    padding: 18px 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 16.8px;
    border: 1px solid #ffffff66;
    background-color: transparent;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
}

.show-more-btn:hover {
    background-color: #e74c3c;
}

.show {
    display: flex;
    flex-direction: column;
}

.show-icon {
    display: flex;
}

/* Responsive styling */
@media (max-width: 710px) {
    .dropdown-content {
        min-width: 100%;
        top: 150px;
    }

    .dropdown-grid {
        display: flex;
        flex-direction: column;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .dropdown-content {
        padding: 10px;
    }

    .dropdown-content ul {
        padding: 0;
    }

    .dropdown-content li a {
        padding: 8px;
    }
}

/* Hero Section */

.hero-section {
    position: relative;
    height: auto;
    justify-content: flex-start;
    padding: 180px 0px 110px 0px;
    background-size: cover;
    object-fit: fill;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../images/herosection.webp");
}

@media (max-width: 649px) {
    .hero-section {
        height: auto;
        padding-bottom: 88px !important;
    }
}

.admission-text {
    border-radius: 10px;
    background-color: #fff;
    padding: 18px 24px;
}

.highlight-red {
    color: #fb4b50;
}

.highlight-white {
    color: #fff;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.diverse-learning-section {
    background: var(--St-Tropaz-950, #13233e);
    padding: 64px 80px;
    text-align: center;
}

@media (max-width: 991px) {
    .diverse-learning-section {
        padding: 30px !important;
    }
}

.diverse-section-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.96px;
    text-transform: capitalize;
}

.highlight {
    color: rgba(245, 44, 49, 1);
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
    max-width: 1280px;
}

@media (max-width: 991px) {
    .stats-container {
        justify-content: center;
        gap: 35px;
    }
}

.stat-item {
    flex: 1;
    flex-basis: 0%;
}

.stat-number {
    color: #fff;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.92px;
}

.stat-description {
    color: var(--gray-100, #f3f4f6);
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    margin-top: 24px;
}

@media (max-width: 991px) {

    /* Header */
    .header-content {
        padding: 12px 20px;
        gap: 10px;
        justify-content: center;
    }

    .stat-number {
        font-size: 42px;
        font-weight: 700;
    }

    .logo-wrapper {
        justify-content: center;
    }

    .menu-container {
        justify-content: center;
    }

    .menu-items {
        justify-content: center;
        gap: 16px;
    }

    /* Hero section */

    .hero-section {
        padding: 170px 20px 88px;
    }

    .hero-content {
        max-width: 100%;
    }
}

/* alumni */

.alumni-section {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 775px;
    overflow: hidden;
    padding: 96px 90px;
}

.background-image {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.alumni-content-wrapper {
    position: relative;
    align-self: center;
    display: flex;
    width: 1206px;
    max-width: 100%;
    flex-direction: column;
    font-family: Orkney, sans-serif;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.subtitle {
    font-size: 32px;
    letter-spacing: 0.96px;
    text-transform: capitalize;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 16px;
}

.highlight {
    color: rgba(251, 75, 80, 1);
}

.alumni-grid {
    position: relative;
    display: flex;
    margin-top: 64px;
    width: 100%;
    align-items: start;
    gap: 40px 42px;
    justify-content: center;
    flex-wrap: wrap;
}

.alumni-card {
    display: flex;
    flex-direction: column;
    width: 216px;
    position: relative;
}

.alumni-image {
    aspect-ratio: 0.72;
    object-fit: contain;
    object-position: center;
    width: 216px;
}

.company-logo-wrapper {
    border-radius: 12px 12px 0 0;
    background-color: #fff;
    align-self: end;
    display: flex;
    width: 114px;
    max-width: 100%;
    flex-direction: column;
    overflow: hidden;
    justify-content: center;
    padding: 6px;
    margin-top: -47px;
}

.company-logo {
    aspect-ratio: 3.92;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.alumni-info {
    border-radius: 12px 0 12px 12px;
    background-color: #fff;
    display: flex;
    width: 100%;
    flex-direction: column;
    overflow: hidden;
    font-family: Orkney, sans-serif;
    justify-content: center;
    padding: 10px;
}

.alumni-name {
    color: #111928;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.alumni-position {
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.42px;
}

.mb-16 {
    margin-bottom: 16px;
}

@media (max-width: 991px) {
    .alumni-section {
        padding: 0 20px;
    }

    .subtitle {
        max-width: 100%;
    }

    .main-title {
        max-width: 100%;
        font-size: 28px;
        line-height: 36px;
    }

    .subtitle {
        font-size: 24px;
        letter-spacing: 0.96px;
        text-transform: capitalize;
    }

    .alumni-grid {
        max-width: 100%;
        margin-top: 40px;
    }
}

/* ignite-section */

.ignite-section {
    align-items: center;
    background: var(--St-Tropaz-950, #13233e);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: Orkney, sans-serif;
    line-height: 1;
    justify-content: start;
    padding: 96px 90px;
    position: relative;
}

.ignite-section-img {
    position: absolute;
    top: 18px;
    max-height: 311px;
    max-width: 311px;
    height: 100%;
    width: 100%;
}

.content-wrapper {
    display: flex;
    width: 916px;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.main-heading {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.highlight-red {
    color: var(--Torch-Red-400, #fb4b50);
}

.sub-heading {
    color: var(--New-folder-White, #fff);
    font-size: 20px;
    font-weight: 400;
    margin-top: 16px;
}

.cta-button {
    border-radius: 6px;
    border: 1px solid #00000066;
    background: var(--Torch-Red-400, #fb4b50);
    margin-top: 24px;
    font-size: 24px;
    color: var(--gray-900, #111928);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.72px;
    padding: 18px 24px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .ignite-section {
        padding: 20px 20px;
    }

    .main-heading,
    .sub-heading {
        max-width: 100%;
    }

    .cta-button {
        padding: 18px 20px;
    }
}

/* awards-rating-section */

.awards-rating-section {
    align-items: center;
    background: var(--St-Tropaz-950, #13233e);
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 96px 80px;
}

@media (max-width: 991px) {
    .awards-rating-section {
        padding: 0 20px;
    }
}

.awards-rating-image-wrapper {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.award-rating-bg-image {
    max-width: 381px;
    width: 100%;
    height: 341px;
    opacity: 0.5;
}

.awards-section-title {
    align-self: stretch;
    color: var(--New-folder-White, #fff);
    text-align: center;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    font-size: 48px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .awards-section-title {
        max-width: 100%;
        font-size: 30px;
    }
}

.awards-container {
    display: flex;
    margin-top: 48px;
    max-width: 100%;
    width: 1280px;
    align-items: center;
    gap: 36px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 1;
}

.awards-image {
    cursor: pointer;
}

@media (max-width: 991px) {
    .awards-container {
        margin-top: 40px;
    }
}

.award-image {
    object-fit: contain;
    object-position: center;
    align-self: stretch;
    margin: auto 0;
}

.award-image-1 {
    width: 66px;
    aspect-ratio: 0.94;
}

.award-image-2 {
    width: 85px;
    aspect-ratio: 1.21;
}

.award-image-3 {
    width: 160px;
    aspect-ratio: 2.28;
}

.award-image-4 {
    width: 164px;
    aspect-ratio: 2.34;
}

.award-image-5 {
    width: 98px;
    aspect-ratio: 1.4;
}

.award-image-6 {
    width: 189px;
    aspect-ratio: 2.7;
}

.award-image-7 {
    width: 158px;
    aspect-ratio: 2.26;
}

.rankings-container {
    display: flex;
    margin-top: 48px;
    max-width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    color: var(--New-folder-White, #fff);
    text-align: center;
    letter-spacing: 0.6px;
    justify-content: center;
    font: 700 20px/125% Orkney, sans-serif;
}

@media (max-width: 991px) {
    .rankings-container {
        margin-top: 40px;
        flex-wrap: wrap;
        margin-top: 20px;
    }
}

.ranking-image {
    object-fit: contain;
    object-position: center;
    align-self: stretch;
    margin: auto 0;
}

@media (max-width: 1025px) {
    .ranking-image {
        display: none;
    }
}

.ranking-image-1 {
    width: 85px;
    aspect-ratio: 0.47;
}

.ranking-image-2 {
    width: 86px;
    aspect-ratio: 0.48;
}

.ranking-item {
    align-self: stretch;
    width: 240px;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ranking-title {
    font-weight: 300;
    line-height: 25px;
}

.ranking-score {
    font-size: 30px;
    line-height: 28px;
    letter-spacing: 1.2px;
}

.ranking-source {
    font-weight: 400;
    line-height: 25px;
}

/* industry-associations */

.industry-associations {
    align-self: stretch;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 90px;
}

@media (max-width: 991px) {
    .industry-associations {
        padding: 0 20px;
    }
}

.industry-associations-container {
    display: flex;
    justify-content: space-between;
    gap: 48px;
}

@media (max-width: 991px) {
    .industry-associations-container {
        flex-direction: column;
    }
}

.industry-content-wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: start;
    gap: 84px;
}

.accreditation-logos {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.recognitions-approvals-container {
    width: 150%;
}

@media (max-width: 991px) {
    .recognitions-approvals-container {
        width: 100%;
    }
}

.title-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    color: #111928;
    text-align: center;
    text-transform: uppercase;
    justify-content: start;
    font-size: 36px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .title-container {
        max-width: 100%;
        font-size: 30px;
    }
}

.membership-container {
    width: 70%;
}

.title {
    width: 100%;
    font-weight: bold;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .title {
        max-width: 100%;
        font-size: 30px;
        line-height: 40px;
    }

    .membership-container {
        width: 100%;
    }
}

.industry-logo-container {
    display: flex;
    margin-top: 48px;
    width: 100%;
    align-items: start;
    gap: 36px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .industry-logo-container {
        max-width: 100%;
        margin-top: 40px;
    }
}

.logo-group {
    display: flex;
    min-width: 240px;
    align-items: center;
    gap: 36px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .logo-group {
        max-width: 100%;
    }
}

.logo {
    object-fit: contain;
    object-position: center;
    align-self: stretch;
    margin: auto 0;
}

.logo-1 {
    aspect-ratio: 1.72;
    width: 103px;
}

.logo-2 {
    aspect-ratio: 0.02;
    width: 1px;
}

.logo-3 {
    aspect-ratio: 1.75;
    width: 140px;
}

.logo-4 {
    aspect-ratio: 0.02;
    width: 1px;
}

.logo-5 {
    aspect-ratio: 2.45;
    width: 196px;
}

.logo-6 {
    aspect-ratio: 0.02;
    width: 1px;
}

.logo-7 {
    aspect-ratio: 1.23;
    width: 98px;
}

.logo-8 {
    aspect-ratio: 0.02;
    width: 1px;
}

.logo-9 {
    aspect-ratio: 1.29;
    width: 103px;
}

.logo-10 {
    aspect-ratio: 0.02;
    width: 1px;
}

.logo-11 {
    aspect-ratio: 1.75;
    width: 140px;
}

.logo-12 {
    aspect-ratio: 2.87;
    width: 230px;
}

.logo-13 {
    aspect-ratio: 0.02;
    width: 1px;
}

.logo-14 {
    aspect-ratio: 0.93;
    width: 74px;
}

.logo-15 {
    aspect-ratio: 0.02;
    width: 1px;
}

.logo-16 {
    aspect-ratio: 0.93;
    width: 74px;
}

.image-hidden {
    display: block;
}

.industry-divider {
    height: 60px;
    width: 1px;
    background-color: #b1b4b9;
}

@media (max-width: 991px) {

    .image-hidden,
    .industry-divider {
        display: none;
    }
}

@media (max-width: 991px) {

    .logo-1,
    .logo-3,
    .logo-5,
    .logo-7,
    .logo-9,
    .logo-11,
    .logo-13,
    .logo-15 {
        width: 120px;
    }
}

/* excellence-section */

.excellence-section {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 656px;
    justify-content: center;
    padding: 96px 90px;
    align-items: center;
}

@media (max-width: 991px) {
    .excellence-section {
        padding: 0 20px;
    }
}

.excellence-background-image {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.excellence-section-title {
    position: relative;
    color: #ffffff;
    text-align: center;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    font: 700 48px/60px Orkney, sans-serif;
    text-align: center;
    max-width: 1260px;
}

@media (max-width: 991px) {
    .excellence-section-title {
        max-width: 100%;
        font-size: 40px;
        line-height: 56px;
        padding-top: 20px;
    }
}

.excellence-logo-container {
    position: relative;
    display: flex;
    margin-top: 48px;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
}

@media (max-width: 991px) {
    .excellence-logo-container {
        max-width: 100%;
        margin-top: 30px;
    }
}

.logo-row {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .logo-row {
        max-width: 100%;
    }
}

.excellence-logo-wrapper {
    align-items: center;
    border-radius: 6px;
    border: 1px solid rgba(19, 35, 62, 0.6);
    background: var(--New-folder-White, #fff);
    backdrop-filter: blur(7.55px);
    display: flex;
    gap: 18px;
    justify-content: flex-start;
}

.excellence-logo-wrapper img {
    border-radius: 6px;
}

.logo-image {
    aspect-ratio: 1.38;
    object-fit: contain;
    object-position: center;
    width: 55px;
}

.logo-text {
    aspect-ratio: 2.79;
    object-fit: contain;
    object-position: center;
    width: 106px;
    align-self: flex-start;
    max-width: 100%;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.programs-section {
    background: var(--gray-100, #f3f4f6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: Orkney, sans-serif;
    padding: 96px 90px;
}

.programs-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
}

.programs-header {
    display: flex;
    width: 100%;
    flex-direction: column;
    color: var(--gray-900, #111928);
    text-align: center;
}

.programs-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.44px;
    text-transform: uppercase;
}

.programs-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    align-self: center;
    margin-top: 24px;
    width: 768px;
    color: #6b7280;
}

.highlight-black {
    color: #000;
    font-weight: 700;
}

.unique-programs {
    display: flex;
    margin-top: 48px;
    width: 100%;
    flex-direction: column;
    font-weight: 700;
}

.unique-programs-title {
    color: var(--gray-900, #111928);
    text-align: center;
    font-size: 32px;
    letter-spacing: 0.96px;
    text-transform: capitalize;
    font-weight: bold;
}

.partner-companies {
    display: flex;
    margin-top: 16px;
    width: 100%;
    text-align: center;
    flex-direction: column;
    font-size: 20px;
    color: var(--gray-300, #d1d5db);
    letter-spacing: 0.6px;
}

.company-list {
    color: #4b5563;
    width: 100%;
}

.vertical-divider {
    width: 1px;
    height: 20px;
    color: #d1d5db;
}

.program-types {
    align-self: center;
    display: flex;
    margin-top: 48px;
    align-items: start;
    font-size: 14px;
    color: var(--gray-600, #4b5563);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.42px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .program-types {
        display: none;
    }

    .program-types-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        gap: 10px;
        align-items: center;
        justify-content: center;
        text-wrap: nowrap;
    }
}

.program-type {
    border: 1px solid #00000066;
    padding: 10px 16px;
    cursor: pointer;
    text-decoration: none;
    color: #4b5563;
}

.program-type:nth-child(1) {
    border-radius: 6px 0 0 6px;
}

.program-type:last-child {
    border-radius: 0 6px 6px 0;
}

@media (max-width: 991px) {
    .program-type {
        border-radius: 6px;
    }

    .program-type:nth-child(1) {
        border-radius: 6px;
    }

    .program-type:last-child {
        border-radius: 6px;
    }
}

.program-type-active {
    background: var(--Torch-Red-500, #f52c31);
    color: var(--New-folder-White, #fff);
}

.features-grid {
    display: flex;
    margin-top: 48px;
    width: 100%;
    flex-direction: column;
    color: var(--primary-950, #14273d);
    font: 400 24px/1 Poppins, sans-serif;
}

.feature-row {
    display: flex;
    width: 100%;
    align-items: start;
    gap: 24px;
    justify-content: start;
    flex-wrap: wrap;
    margin-top: 24px;
}

.feature-card {
    align-items: center;
    border-radius: 12px;
    border: 1px solid var(--gray-300, #d1d5db);
    background: var(--white, #fff);
    display: flex;
    min-width: 240px;
    gap: 24px;
    overflow: hidden;
    justify-content: start;
    flex-wrap: wrap;
    flex: 1;
    flex-basis: 0%;
    padding: 12px;
}

.feature-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 50px;
    align-self: stretch;
    margin: auto 0;
}

.feature-title {
    align-self: stretch;
    flex: 1;
    flex-basis: 0%;
    margin: auto 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}

@media (max-width: 991px) {
    .programs-section {
        padding: 0 20px;
    }

    .programs-content,
    .programs-header,
    .programs-title,
    .programs-description,
    .unique-programs,
    .unique-programs-title,
    .partner-companies,
    .company-list,
    .program-types,
    .features-grid,
    .feature-row,
    .feature-card,
    .feature-title {
        max-width: 100%;
    }

    .feature-title {
        font-size: 20px;
    }

    .features-grid {
        font: 400 18px/1 Poppins, sans-serif;
    }

    .programs-title {
        font-size: 40px;
    }

    .unique-programs {
        margin-top: 40px;
    }

    .program-types {
        margin-top: 40px;
    }

    .features-grid {
        margin-top: 40px;
    }

    .feature-icon {
        width: 40px;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.facilities-content {
    align-items: center;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: start;
    padding: 64px 90px;
}

@media (max-width: 991px) {
    .facilities-content {
        padding: 0 20px;
    }
}

.facilities-header {
    display: flex;
    max-width: 100%;
    flex-direction: column;
    font-family: Orkney, sans-serif;
    text-align: center;
    line-height: 1;
    justify-content: center;
    padding-bottom: 20px;
    padding-top: 30px;
}

.facilities-title {
    color: #000;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1.44px;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .facilities-title {
        max-width: 100%;
        font-size: 40px;
    }
}

.facilities-subtitle {
    color: #6b7280;
    font-size: 20px;
    font-weight: 400;
    align-self: center;
    margin-top: 16px;
}

@media (max-width: 991px) {
    .facilities-subtitle {
        max-width: 100%;
    }
}

.facilities-gallery {
    display: flex;
    margin-top: 48px;
    width: 100%;
    max-width: 1248px;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.facilities-gallery img {
    border-radius: 10px;
}

@media (max-width: 991px) {
    .facilities-gallery {
        max-width: 100%;
        margin-top: 40px;
    }
}

.gallery-grid {
    display: flex;
    width: 100%;
    align-items: start;
    gap: 24px;
    justify-content: start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .gallery-grid {
        max-width: 100%;
    }
}

.gallery-column {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    justify-content: start;
    width: 301px;
    gap: 24px;
}

@media (max-width: 991px) {
    .gallery-column {
        max-width: 500px;
        width: 100%;
    }
}

.gallery-image {
    aspect-ratio: 1.64;
    object-fit: contain;
    object-position: center;
    width: 100%;
    min-height: 184px;
}

.gallery-image-tall {
    aspect-ratio: 1.15;
    object-fit: contain;
    object-position: center;
    width: 100%;
    min-width: 240px;
    flex: 1;
    flex-basis: 0%;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .gallery-image-tall {
        max-width: 100%;
    }
}

.gallery-column-wide {
    display: flex;
    min-width: 240px;
    flex-direction: column;
    justify-content: start;
    flex: 1;
    flex-basis: 0%;
}

@media (max-width: 991px) {
    .gallery-column-wide {
        max-width: 100%;
    }
}

.gallery-column img,
.gallery-column-wide img,
.gallery-image-tall {
    border-radius: 10px;
}

.gallery-row {
    display: flex;
    width: 100%;
    align-items: start;
    gap: 24px;
    justify-content: start;
}

@media (max-width: 991px) {
    .gallery-row {
        max-width: 100%;
    }
}

.gallery-image-square {
    aspect-ratio: 1.15;
    object-fit: contain;
    object-position: center;
    width: 212px;
    flex: 1;
    flex-basis: 0%;
}

@media (max-width: 991px) {
    .gallery-image-square {
        max-width: 100%;
        min-width: 160px;
    }
}

.gallery-image-wide {
    aspect-ratio: 2.44;
    object-fit: contain;
    object-position: center;
    width: 100%;
    margin-top: 24px;
}

@media (max-width: 991px) {
    .gallery-image-wide {
        max-width: 100%;
    }
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.student-swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-top: 100px;
}

.swiper-container-small {
    width: 100%;
    height: 100%;
    margin-bottom: 4rem;
    display: none;
}

@media (max-width: 1024px) {
    .swiper-container-small {
        display: block;
    }
}

.swiper-container-small .swiper-wrapper {
    align-items: center;
}

@media (max-width: 1024px) {
    .swiper-container {
        display: none;
    }
}

.swiper-container .swiper-slide-prev {
    opacity: 0;
}

.swiper-container .swiper-slide-next {
    opacity: 0;
}

.swiper-container-small .swiper-slide-prev {
    opacity: 0;
}

.swiper-container-small .swiper-slide-next {
    opacity: 0;
}

.international-students-swiper .swiper-slide-prev {
    opacity: 0;
}

.international-students-swiper .swiper-slide-next {
    opacity: 0;
}

.international-students-swiper {
    max-width: 584px;
    width: 100%;
    height: 100%;
}

.international-students-swiper img {
    border-radius: 10px;
}

.international-students-swiper .two-image {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 991px) {
    .international-students-swiper .single-image {
        width: 100%;
        height: 400px;
        border-radius: 10px;
    }
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.student-swiper-mobile .swiper-slide {
    display: flex;
    justify-content: center;
}

.swiper-pagination,
.mobile-swiper-pagination,
.students-swiper-pagination {
    display: block !important;
    position: relative !important;
    z-index: 10;
    margin-top: 1rem;
}

.swiper-pagination,
.mobile-swiper-pagination,
.student-swiper-pagination {
    display: flex !important;
    position: relative !important;
    z-index: 10;
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullet,
.students-swiper-pagination {
    width: 10px;
    height: 10px;
    background-color: #c5d7f2;
    border-radius: 50%;
    opacity: 0.4;
    margin: 0 8px;
    transition: opacity 0.3s;
}

.swiper-pagination-bullet-active,
.students-swiper-pagination {
    width: 28px;
    height: 10px;
    background-color: #1e4986;
    opacity: 1;
    border-radius: 1rem;
}

.swiper-small-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.placement-opportunity-section {
    align-items: center;
    background-color: #f3f6fc;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: start;
    padding: 64px 90px;
}

.placement-opportunity-section .header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1260px;
    font-size: 36px;
}

.swiper-row1,
.swiper-row2 {
    width: 110%;
    height: 100%;
}

.swiper-row1 img,
.swiper-row2 img {
    border-radius: 12px;
}

.placement-opportunity-section .swiper-row1,
.placement-opportunity-section .swiper-row2 {
    height: 120px;
    margin-top: 20px;
}

.swiper-row1 .swiper-slide,
.swiper-row2 .swiper-slide {
    width: 150px !important;
    overflow: hidden;
    background-position: top;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.swiper-row1 .swiper-wrapper,
.swiper-row2 .swiper-wrapper {
    transition-timing-function: linear !important;
}

.placement-logo-img {
    width: 160px;
    height: auto;
}

.footer-section {
    width: 100%;
    padding: 96px 90px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 64px;
    overflow: hidden;
}

.footer-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.footer-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: -1;
    scale: 1.01;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(86.7% 79% at 100% 100%, rgba(0, 0, 0, 0.315) 0%, rgb(0, 0, 0) 100%);
    z-index: -1;
}

.footer-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 46px;
    z-index: 1;
}

.footer-logo-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 48px;
}

@media (max-width: 991px) {
    .footer-logo-row {
        flex-direction: column;
    }
}

.footer-logo-container {
    height: 83px;
}

.footer-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 839px;
    width: auto;
    text-align: center;
}

.description-text {
    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
}

.hashtags {
    display: flex;
    gap: 22px;
}

.hashtag {
    display: flex;
    gap: 5px;
    align-items: center;
}

.red {
    color: #fb4b50;
    font-size: 34px;
    font-weight: 700;
}

.white {
    color: white;
    font-size: 27px;
    font-weight: 700;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.location-info,
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 507px;
    width: auto;
}

.info-header {
    display: flex;
    gap: 16px;
    align-items: center;
}

.map-icon,
.contact-icon {
    width: 48px;
    height: 48px;
}

.info-title {
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.address,
.phone-info p,
.email-info p {
    color: white;
    font-size: 20px;
    font-weight: 400;
}

.phone-info,
.email-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.phone-info img,
.email-info img {
    width: 30px;
    height: 30px;
}

.national-admissions,
.international-admissions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.national-admissions h4,
.international-admissions h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.03em;
    color: white;
    border-bottom: 1px solid white;
    width: fit-content;
}

.social-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.social-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-transform: 48px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    background: none;
}

@media (max-width: 991px) {
    .footer-section {
        padding: 20px 0px;
    }

    .footer-logo-row {
        flex-direction: column;
        gap: 32px;
    }

    .footer-description {
        max-width: 100%;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 24px;
    }

    .location-info,
    .contact-info {
        max-width: 100%;
    }

    .address,
    .phone-info p,
    .email-info p {
        font-size: 16px;
    }

    .description-text {
        font-size: 18px;
    }

    .red {
        font-size: 28px;
    }

    .white {
        font-size: 24px;
    }

    .hashtags {
        flex-direction: column;
        gap: 10px;
    }

    .national-admissions h4,
    .international-admissions h4 {
        font-size: 18px;
    }
}

/* international-students */
.international-students {
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.section-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 0.03em;
    text-align: center;
    text-transform: uppercase;
}

.highlight {
    color: red;
}

.student-info-container {
    display: flex;
    gap: 64px;
    justify-items: center;
    align-items: center;
}

.main-image {
    height: 568px;
    width: 584px;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flags-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.flags-row {
    display: flex;
    gap: 24px;
    align-items: center;
}

.flag-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.flag-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.flag-group-border {
    border-right: 1px solid #b1b4b9;
    padding-right: 15px;
}

@media (max-width: 425px) {
    .flag-grid {
        gap: 5px;
    }

    .flag-group-border {
        padding-right: 5px;
    }
}

.flag-image {
    width: 112px;
    height: 80px;
}

.country-name {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
}

.divider {
    border-left: 1px solid #b1b4b9;
    height: 72px;
}

@media (max-width: 1240px) {
    .student-info-container {
        flex-direction: column;
    }
}

@media (max-width: 991px) {
    .section-heading {
        font-size: 32px;
        line-height: 30px;
    }

    .main-image {
        width: 400px;
        height: 400px;
    }

    .flag-image {
        width: 80px;
        height: 60px;
    }

    .flag-group {
        gap: 10px;
    }

    .flags-row {
        gap: 20px;
        width: 100%;
    }
}

/* testimonials */

.testimonials-container {
    align-items: center;
    background-color: #F3F6FC;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: start;
    padding: 64px 90px;
}

.testimonials-background {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
}

@media (max-width: 991px) {
    .testimonials-container {
        padding: 0px;
    }
}

.background-overlay {
    width: 533.27px;
    height: 533.67px;
    position: absolute;
    background-image: url("../images/Group.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.background-inner {
    width: 533.27px;
    height: 477.7px;
    position: absolute;
    background: #13233e;
}

.background-circle {
    width: 152.93px;
    height: 152.93px;
    position: absolute;
    top: 0;
    left: 195.89px;
    background: #13233e;
}

.testimonials-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.heading-title {
    text-transform: uppercase;
}

.heading-main {
    color: #111928;
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 1.44px;
}

.heading-highlight {
    color: #f52c31;
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 1.44px;
}

@media (max-width: 991px) {

    .heading-main,
    .heading-highlight {
        font-size: 30px;
        line-height: 32px;
    }
}

.heading-subtitle {
    color: #6b7280;
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
}

.testimonial-card {
    position: relative;
    width: 384px;
    height: 350px;
    padding: 24px;
    gap: 24px;
    border-radius: 16px;
    border: 1px solid #d1d5db;
    background-color: white;
}

.desktop-slider {
    display: block;
}

.mobile-slider {
    display: none;
}

@media (max-width: 1260px) {
    .desktop-slider {
        display: none;
    }

    .mobile-slider {
        display: block;
    }
}

.student-image-wrapper {
    position: absolute;
    left: 20px;
    top: -60px;
}

.student-image {
    width: 140px;
    height: 140px;
    border-radius: 16px;
}

.testimonial-content {
    padding-top: 70px;
}

.testimonial-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    color: #6b7280;
    height: 150px;
}

.student-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
}

.student-name {
    color: #111928;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
}

.student-origin {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
}

.student-course {
    font-size: 10px;
    font-weight: 400;
    line-height: 12px;
    text-align: left;
}

.info-request-card {
    max-width: 434px;
    width: 100%;
    border: 1px solid;
    max-height: 580px;
    height: 100%;
    background-color: rgba(19, 35, 62, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 18px;
}

.info-request-header {
    border-bottom: 4px solid #ff5722;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    flex-direction: column;
}

.info-request-title {
    color: #D3D3D3;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
}

.info-request-subtitle {
    color: #D3D3D3;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: left;
}

.faculty-card {
    align-items: center;
    border-radius: 12px;
    border: 1px solid var(--gray-300, #d1d5db);
    background: var(--white, #fff);
    display: flex;
    min-width: 240px;
    overflow: hidden;
    justify-content: start;
    flex-wrap: wrap;
    flex: 1;
    flex-basis: 0%;
    /* padding: 12px; */
}

.faculty-header {
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    user-select: none;
    width: 100%;
    padding: 12px;
}

.faculty-icon {
    width: 40px;
    height: 40px;
}

.faculty-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.program-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    display: none;

}

.program-item {
    padding: 12px;
    border-bottom: 1px solid #E9E9E9;
    font-size: 16px;
    color: #555;
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
}

.program-item:last-child {
    border-bottom: none;
}

.program-item:first-child {
    border-top: 1px solid #E9E9E9;
}

@media (max-width: 991px) {
    .program-item {
        font-size: 15px;
    }
}


.enroll-area {
    display: flex;
    align-items: center;
    gap: 40px 48px;
    justify-content: start;
    flex-wrap: wrap;
}

.content-box {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    flex-direction: column;
    font-family: Orkney, sans-serif;
    justify-content: start;
    flex: 1;
    flex-basis: 48px;
    margin: auto 0;
}

@media (max-width: 991px) {
    .content-box {
        max-width: 100%;
    }
}

.primary-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: start;
}

@media (max-width: 991px) {
    .primary-content {
        max-width: 100%;
    }
}

.uni-heading {
    color: #fff;
    font-size: 70px;
    line-height: 84px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .uni-heading {
        max-width: 100%;
        font-size: 40px;
        line-height: 36px;
        margin-top: 10px;
    }
}

.accent {
    color: #fb4b50;
}

.info-container {
    display: flex;
    margin-top: 56px;
    width: 100%;
    flex-direction: column;
    font-size: 24px;
    color: #fb4b50;
    font-weight: 400;
    letter-spacing: 0.72px;
    line-height: 32px;
    justify-content: center;
}

@media (max-width: 991px) {
    .info-container {
        max-width: 100%;
        margin-top: 20px;
    }
}

.info-text {
    display: flex;
    max-width: 100%;
    width: 743px;
    align-items: start;
    gap: 8px;
    justify-content: start;
}

.uni-intro {
    align-self: stretch;
    flex: 1;
    min-width: 240px;
    width: 743px;
    gap: 24px;
    color: white;
}

@media (max-width: 991px) {
    .uni-intro {
        max-width: 100%;
    }
}

.tag-area {
    align-self: start;
    display: flex;
    margin-top: 46px;
    align-items: center;
    gap: 24px;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.68px;
    justify-content: start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .tag-area {
        max-width: 100%;
        margin-top: 40px;
        gap: 0;
        margin-top: 20px;
    }
}

.tag-item {
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    align-self: stretch;
    margin: auto 0;
}

.tag-symbol {
    font-size: 29px;
    color: #fb4b50;
}

.tagline {
    color: white;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.72px;
    margin-top: 46px;
}

@media (max-width: 991px) {
    .tagline {
        max-width: 100%;
        margin-top: 40px;
    }
}

.admission-details {
    display: flex;
    margin-top: 46px;
    width: 100%;
    flex-direction: column;
    font-size: 16px;
    color: #363636;
    font-weight: 500;
    line-height: 2;
    justify-content: start;
}

@media (max-width: 991px) {
    .admission-details {
        max-width: 100%;
        margin-top: 40px;
    }
}

.admission-notice {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

@media (max-width: 991px) {
    .admission-notice {
        max-width: 100%;
    }
}

.notice-text {
    align-self: stretch;
    border-radius: 10px;
    background: #fff;
    gap: 10px;
    padding: 18px 24px;
    max-width: 294px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 991px) {
    .notice-text {
        padding: 18px 20px;
    }
}

.enrollment-form {
    border-radius: 12px;
    background-color: rgba(19, 35, 62, 0.7);
    align-self: stretch;
    display: flex;
    min-width: 240px;
    flex-direction: column;
    justify-content: start;
    width: 434px;
    /* height: 580px; */
    margin: auto 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(3px);
}

@media (max-width: 991px) {
    .enrollment-form {
        padding: 24px 20px;
    }
}

.form-intro {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    font-family: Orkney, sans-serif;
    justify-content: start;
}

.form-heading {
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.form-subheading {
    color: #d1d5db;
    font-size: 14px;
    font-weight: 400;
    margin-top: 6px;
}

.industry-main-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 40px;
}

.hidden-div {
    display: block;
}

@media (max-width: 768px) {
    .hidden-div {
        display: none;
    }
}

.industry-logo-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

.industry-logo-grid-item-without-border {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

.industry-logo-grid-item img,
.industry-logo-grid-item-without-border img {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.industry-logo-grid-item p {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
}

.industry-logo-grid-item::after {
    content: "";
    position: absolute;
    background-color: #ccc;
}

.industry-logo-grid-item::after {
    width: 1px;
    height: 50%;
    right: 0;
    top: 40px;
    display: flex;
    align-items: center;
}

.industry-main-container>.industry-logo-grid-item:nth-child(4n)::after {
    display: none;
}

.industry-main-container>.industry-logo-grid-item:nth-last-child(-n + 4)::before {
    display: none;
}

@media (max-width: 1025px) {
    .industry-logo-grid-item::after {
        display: none;
    }
}

@media (max-width: 1024px) {
    .industry-main-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .industry-main-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .industry-main-container {
        grid-template-columns: 1fr;
    }
}

.membership-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 40px;
    max-width: 800px;
}

.membership-item-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

.membership-item-box img {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.membership-item-box p {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
}

.membership-item-box::after {
    content: "";
    position: absolute;
    background-color: #ccc;
}

.membership-item-box::after {
    width: 1px;
    height: 50%;
    right: 0;
    top: 40px;
    display: flex;
    align-items: center;
}

.membership-grid-container>.membership-item-box:nth-child(2n)::after {
    display: none;
}

.membership-grid-container>.membership-item-box:nth-last-child(-n + 2)::before {
    display: none;
}

@media (max-width: 768px) {
    .membership-grid-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1025px) {
    .membership-item-box::after {
        display: none;
    }
}

h2.industries-accociation-title {
    font-weight: bold;
    line-height: 1.5;
}

