* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 0;
    background-color: #00165C;
}

.logo-mobile {
    display: none;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 22, 92, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 20px 50px;
    top: 0;
    left: 0;
}

.nav-list nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.nav-list nav a {
    position: relative;
    text-decoration: none;
    font-family: 'Figtree';
    font-weight: 600;
    text-align: center;
    color: #FFFFFF;
    font-size: 24px;
}

.nav-list nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: #FFFFFF;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-list nav a:hover::after {
    width: 100%;
}


.logo-desktop {
    width: 178px;
    height: 38px;
}

.nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #CCD7FA21;
    padding: 10px 20px;
    border-radius: 8px;
    min-width: 250px;
    position: relative;
}

.search-icon {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-family: 'Figtree';
    font-size: 12px;
    width: 100%;
}

.search-input::placeholder {
    color: #FFFFFF80;
}


.search-results-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 22, 92, 0.25);
    max-height: 320px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-results-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 22, 92, 0.06);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(11, 67, 230, 0.08);
}

.search-result-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0B43E6 0%, #0038E6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-result-icon svg {
    width: 18px;
    height: 18px;
    stroke: white;
    fill: none;
}

.search-result-content {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #000B2E;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-category {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #6B7280;
    margin: 0;
}

.search-no-results {
    padding: 20px 16px;
    text-align: center;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    color: #6B7280;
}

.search-result-highlight {
    background: rgba(11, 67, 230, 0.15);
    border-radius: 2px;
    padding: 0 2px;
}

.search-results-dropdown.mobile {
    position: fixed;
    top: 70px;
    left: 16px;
    right: 16px;
    min-width: unset;
    width: calc(100% - 32px);
    z-index: 1002;
}

.login-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 12px;
}

.login-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    /* controls border thickness */
    background: linear-gradient(70.71deg,
            rgba(255, 255, 255, 0.05) -12.93%,
            rgba(255, 255, 255, 0.76) 66.6%,
            rgba(255, 255, 255, 0.05) 121.78%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


.login-link {
    display: inline-block;
    font-family: 'Figtree';
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.login-link:hover {
    border-color: #002db3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 56, 230, 0.4);
}

.mobile-icons {
    display: none;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: flex-end;
}

.mobile-search-wrapper {
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 999px;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-search-wrapper.active {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 15px;
    flex: 1;
    margin: 0 10px;
    border-radius: 999px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    overflow: visible;
}

.mobile-search-wrapper.active .mobile-search-btn {
    display: none;
}

.mobile-search-input {
    display: none;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 400;
    outline: none;
    width: 100%;
    margin-left: 0;
}

.mobile-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    font-size: 12px;
}

.mobile-search-wrapper.active .mobile-search-input {
    display: block;
}

.mobile-search-btn,
.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-btn {
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    width: 32px;
    height: 32px;
    box-sizing: border-box;
}

.mobile-menu-btn svg {
    width: 18px;
    height: 18px;
}

.mobile-search-btn:hover,
.mobile-menu-btn:hover {
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.05);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #FFFFFF;
    z-index: 1001;
    transition: right 0.3s ease;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-nav-content {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
}

.mobile-nav-logo {
    height: 32px !important;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-nav-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close:hover {
    opacity: 0.7;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 56px;
    flex-grow: 0;
}

.mobile-nav-link {
    font-family: 'Figtree';
    font-weight: 500;
    font-size: 20px;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #0B43E6;
}

.mobile-enroll-btn {
    background: #0B43E6;
    color: #FFFFFF;
    text-align: center;
    padding: 18px 32px;
    border-radius: 12px;
    font-family: 'Figtree';
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 56px;
    display: block;
    width: 100%;
}

.mobile-enroll-btn:hover {
    background: #002db3;
    transform: translateY(-2px);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.main {
    width: 100%;
    background: #00165C;
    padding: 100px 50px;
    padding-bottom: 0px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.main-head h1 {
    font-family: 'Figtree';
    font-weight: 700;
    font-style: Bold;
    color: rgba(255, 255, 255, 1);
    width: 698px;
    font-size: 60px;
}

.main-head p {
    font-family: 'Figtree';
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    color: rgba(199, 199, 199, 1);
    width: 674px;
    font-size: 20px;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn-1 {
    width: 259px;
    gap: 10px;
    border-radius: 100px;
    padding: 12px 24px;
    border-width: 1px;
    border: 1px solid #FFFFFF;
    font-family: 'Satoshi';
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    text-align: center;
    gap: 15px;
}

.btn-2 {
    width: 250px;
    gap: 10px;
    border-radius: 12px;
    padding: 12px 24px;
    background: #0038E6;
    box-shadow: 0px 2px 4px 0px #FFFFFF40 inset;
    font-family: 'Satoshi';
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    text-decoration: none;
    color: #FFFFFF;
    text-align: center;
    transition: transform 0.2s ease;
}

.btn-2:hover {
    transform: scale(0.95);
}

.main-vid {
    position: relative;
    width: 608px;
    height: 548px;
    max-width: 800px;
    aspect-ratio: 16/10;
    padding: 30px;
    border-radius: 40px;
    padding-top: 60px;
}

.main-vid::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 80px;
    background: #00165C;
    border-bottom-left-radius: 40px;
    z-index: 1;
}

.main-vid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 80px;
    background: #00165C;
    border-top-right-radius: 40px;
    z-index: 1;
}

.hero-slider-wrapper {
    display: flex;
    gap: 20px;
    width: 550px;
    height: 520px;
    overflow: hidden;
    position: relative;
    background: #001a4d;
}

.hero-column {
    flex: 1;
    height: 100%;
    position: relative;
}

.hero-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-image-item {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
}

.hero-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #00165C);
    pointer-events: none;
    z-index: 10;
}

.trusted-section {
    background: #00165C;
    padding-top: 0px;
    padding: 80px 50px;
    position: relative;
}

.trusted-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: 'Figtree';
    font-weight: 300;
    font-style: Light;
    font-size: 24px;
    text-align: center;
    color: #CFCFCF;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.logo-item {
    height: 40px;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    object-fit: contain;
    width: 100%;
    height: 30px;
}

.featured-title {
    font-family: 'Figtree';
    font-weight: 300;
    font-style: Light;
    font-size: 24px;
    text-align: center;
    color: #CFCFCF;
}

.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.featured-logos img {
    width: 80px;
    /* change this value */
    height: auto;
    /* keeps ratio */
    object-fit: contain;
}

.featured-item img {
    object-fit: cover;
    width: 100%;
    height: 30px;
}

.featured-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.behance-icon {
    background: #1769ff;
    color: white;
}

.ux-icon {
    background: white;
    color: #000;
}

.switchup-icon {
    background: #ff4438;
    color: white;
}

.featured-text {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.collaborate-section {
    background: #00165C;
    padding: 80px 50px;
    position: relative;
}

.collaborate-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.guidance-container {
    position: fixed;
    bottom: 20px;
    right: 50px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}



.guidance-expert-info {
    background: white;
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 11, 46, 0.2);
    position: relative;
    max-width: 400px;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.guidance-form-container {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 11, 46, 0.2);
    position: relative;
    width: 350px;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.close-guidance {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #000B2E;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.close-guidance:hover {
    opacity: 1;
}

.open-form-btn {
    background: #0038E6;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}

.open-form-btn:hover {
    background: #002db3;
}

.guidance-form-container h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #000B2E;
    font-family: 'Figtree', sans-serif;
    font-size: 22px;
}

#expert-question-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#expert-question-form input,
#expert-question-form textarea {
    padding: 12px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
}

#expert-question-form textarea {
    height: 100px;
    resize: none;
}

.send-message-btn {
    background: #0038E6;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.send-message-btn:hover {
    background: #002db3;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tooltip-content {
    background: transparent;
    padding: 0;
    box-shadow: none;
    font-family: 'Figtree';
    font-size: 18px;
    font-weight: 400;
    color: #000B2E;
    line-height: 1.5;
    max-width: 100%;
}

.tooltip-content strong {
    color: #0038E6;
    font-family: 'Figtree';
    font-weight: 700;
    font-size: 20px;
}

.tooltip-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.tooltip-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collaborate-container h1 {
    color: #FFFFFF;
    font-family: 'Figtree';
    font-weight: 700;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.collaborate-container p {
    color: #CFCFCF;
    font-family: 'Figtree';
    font-weight: 400;
    font-size: 20px;
    line-height: 1.7;
    max-width: 608px;
    margin: 0 auto;
}

.showcase-container {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    perspective: 1500px;
    text-align: center;
    margin-left: -450px;
}

.image-stack-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    gap: 20px;
}

.image-stack {
    position: relative;
    width: 650px;
    height: 390px;
    margin: 0 auto;
    transform-style: preserve-3d;
    transform: rotateY(-25deg) rotateX(10deg) rotateZ(-5deg);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.collaborate-section:hover .image-stack {
    transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg);
}

.stack-img {
    position: absolute;
    width: 650px;
    height: 390px;
    margin: 0 auto;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.img-1 {
    z-index: 4;
    transform: translateZ(100px);
}

.img-2 {
    z-index: 3;
    transform: translateZ(50px) translateX(130px);
    opacity: 0.8;
}

.img-3 {
    z-index: 2;
    transform: translateZ(20px) translateX(260px);
    opacity: 0.6;
}

.research-section {
    background: #00165C;
    padding: 80px 50px;
    padding-top: 0px;
}



.section-tit {
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    font-family: 'Figtree';
    font-style: Bold;
    font-size: 60px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 50px;
    width: 978px;
}

.content-grid {
    display: grid;
    grid-template-columns: 397px 1fr 397px;
    gap: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-box {
    width: 397px;
    height: 450px;
    position: relative;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.text-box {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
}

.text-box p {
    color: #5E5E5E;
    line-height: 1.7;
    text-align: center;
    font-family: 'Figtree';
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

.experts-section {
    background: #00165C;
    padding: 80px 50px;
}

.experts-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}



.experts-container h1 {
    color: #FFFFFF;
    font-family: 'Figtree';
    font-weight: 700;
    font-size: 60px;
    font-style: bold;
    line-height: 1.2;
    width: 767px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 60px;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.expert-card {
    background: #000B2EB5;
    border: 8px solid #FFFFFF26;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.expert-card:hover {
    box-shadow: 0 0 0 2px #0038E6;
}

.expert-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-name {
    color: #FFFFFF;
    font-family: 'Figtree';
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.expert-specialty {
    color: #FFFFFF;
    font-family: 'Figtree';
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 12px;
}

.expert-bio {
    color: #FFFFFF;
    font-family: 'Figtree';
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 60px;
}

.expert-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(176.93deg,
            #FEEB77 -19.54%,
            #0B43E6 82.34%) border-box;
    border: 5px solid transparent;
    transition: transform 0.3s ease;
}


.social-icon-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 56, 230, 0.4);
}

.social-icon-btn img {
    width: 20px;
    height: 20px;
}

.experts-carousel-wrapper {
    display: none;
}

.experts-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.experts-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.experts-nav-arrow svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

.experts-nav-arrow.left {
    left: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(-20px);
}

.experts-nav-arrow.left.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.experts-nav-arrow.right {
    right: 10px;
    opacity: 1;
    visibility: visible;
}

.experts-nav-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.student-work-section {
    background: #00165C;
    padding: 80px 50px;
}

.student-work-container {
    max-width: 1400px;
    margin: 0 auto;
}

.student-work-container h1 {
    color: #FFFFFF;
    font-family: 'Figtree';
    font-weight: 700;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
}

.student-work-grid {
    display: flex;
    gap: 20px;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.student-work-grid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(0, 22, 92, 0) 0%, #00165C 100%);
    pointer-events: none;
    z-index: 10;
}

.work-column {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.work-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.work-column-left .work-track {
    animation: scrollDown 30s linear infinite;
}

.work-column-middle .work-track {
    animation: scrollUp 35s linear infinite;
}

.work-column-right .work-track {
    animation: scrollDown 32s linear infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollUp {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

.work-card {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 11, 46, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 16/10;
    flex-shrink: 0;
}

.work-card:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-card.tall {
    aspect-ratio: 16/20;
}

.network-section {
    background: #00165C;
    position: relative;
    overflow: hidden;
    padding: 50px 50px;
}



.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.text-cont p {
    color: #FFFFFF;
    line-height: 1.6;
    width: 608px;
    font-family: 'Figtree';
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    margin-bottom: 100px;
}

.network-diagram {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.programs-section {
    background: #00165C;
    padding: 80px 50px;
}



.section-header {
    margin-bottom: 50px;
}

.section-header h1 {
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-family: 'Figtree';
    font-style: Bold;
    font-size: 60px;
    text-align: center;
}

.section-header p {
    font-size: 20px;
    color: #CFCFCF;
    line-height: 1.7;
    width: 608px;
    font-family: 'Figtree';
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin: 0 auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.program-card {
    background: #000B2EB2;
    border: 1px solid #757575B2;
    border-radius: 24px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    border: 1px solid #9b9b9b;
}

.program-image {
    width: 100%;
    height: 289px;
    position: relative;
    margin-bottom: 10px;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    background: #000B2EB2;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
}

.image-wrapper::before,
.image-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000B2EB2;
    border-radius: 12px;
    transition: all 0.4s ease;
    opacity: 0;
}

.image-wrapper::before {
    top: 0;
    left: 0;
    z-index: -1;
}

.image-wrapper::after {
    top: 0;
    left: 0;
    z-index: -2;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.program-title {
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    font-family: 'Figtree';
    font-style: Bold;
    font-size: 32px;
}

.beg {
    font-family: 'Figtree';
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #E6E6E6;
    display: flex;
    gap: 10px;
    align-items: center;
}

.program-description {
    color: #CFCFCF;
    line-height: 1.5;
    font-family: 'Figtree';
    font-weight: 300;
    font-style: Light;
    font-size: 20px;
}

.program-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.rii {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #CFCFCF;
    font-family: 'Figtree';
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 10px;
    cursor: pointer;
}

.program-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.program-footer p {
    font-family: 'Figtree';
    font-weight: 700;
    font-style: bold;
    font-size: 20px;
    color: #FFFFFF;
}

.tag {
    color: #CFCFCF;
    padding: 8px 10px;
    border-radius: 20px;
    border: 1px solid #757575;
    font-family: 'Figtree';
    font-weight: 300;
    font-style: Light;
    font-size: 20px;
}

.learning-section {
    margin-bottom: 20px;
}

.learning-title {
    font-size: 14px;
    font-weight: 600;
    color: #CFCFCF;
    margin-bottom: 10px;
    font-family: 'Figtree';
    font-style: Bold;
    font-size: 20px;
}

.learning-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.learning-tag {
    background: transparent;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid #757575;
    font-family: 'Figtree';
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #CFCFCF;
}

.learning-tagg {
    font-family: 'Figtree';
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #CFCFCF;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.apply-btn {
    width: 181px;
    padding: 12px 24px;
    background: transparent;
    color: #FFFFFF;
    position: relative;
    border-radius: 12px;
    border: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    font-family: 'Figtree';
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    margin-top: auto;
}

.apply-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    /* controls border thickness */
    background: linear-gradient(70.71deg,
            rgba(255, 255, 255, 0.05) -12.93%,
            rgba(255, 255, 255, 0.76) 66.6%,
            rgba(255, 255, 255, 0.05) 121.78%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.apply-btn:hover {
    background: white;
    color: #001451;
}

.show-more-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.show-more-btn {
    padding: 16px 40px;
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Figtree';
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    width: 360px;
}

.show-more-btn:hover {
    background: #FFFFFF;
    color: #00165C;
}

.show-more-btn:active {
    transform: translateY(0);
}


.process-section {
    background: #00165C;
    padding: 80px 50px;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-titl {
    color: #FFFFFF;
    margin-bottom: 60px;
    font-family: 'Figtree';
    font-weight: 700;
    font-style: Bold;
    font-size: 60px;
    margin: 0 auto;
    text-align: center;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-item {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    padding: 30px 0;
    border-bottom: 1px solid #CFCFCF;
    align-items: center;
}

.process-number-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.process-number {
    font-size: 24px;
    color: #FFFFFF;
    font-family: 'Figtree';
    font-weight: 700;
    font-style: Bold;
}

.process-title {
    font-family: 'Figtree';
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    color: #FFFFFF;
}

.process-description {
    color: #FFFFFF;
    width: 714px;
    font-family: 'Figtree';
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

.case-studies-section {
    background: #00165C;
    padding: 80px 50px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.main-title {
    color: #FFFFFF;
    margin-bottom: 50px;
    font-family: 'Figtree';
    font-weight: 700;
    font-style: Bold;
    font-size: 60px;
}

.cases-wrapper {
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
    scrollbar-width: thin;
}

.case-card-large {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.case-card-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.card-header {
    margin-bottom: 30px;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.phone-screens {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.phone-mockup {
    width: 150px;
    height: 300px;
    background: #2d5a3d;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #2d5a3d;
    border-radius: 12px;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-card-small {
    width: 105px;
    height: 492px;
    gap: 56px;
    background: #0B43E6;
    border-radius: 24px;
    padding: 30px 20px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.card-text-vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    font-family: 'Figtree';
    font-weight: 700;
    font-style: Bold;
}

.case-info {
    margin-top: 30px;
}

.case-name {
    color: #CFCFCF;
    margin-bottom: 8px;
    font-family: 'Figtree';
    font-weight: 600;
    font-style: Bold;
    font-size: 32px;
}

.case-description {
    font-size: 16px;
    color: #CFCFCF;
    font-family: 'Figtree';
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

.blog-slider-section {
    --blog-bg: #00165C;
    --blog-blue: #0038E6;
    --blog-yellow: #FFDC24;
    background-color: var(--blog-bg);
    color: white;
    padding: 100px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    font-family: sans-serif;
}

.blog-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1400px;
    align-items: center;
    gap: 60px;
}

.blog-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.blog-title {
    font-family: 'Figtree';
    font-weight: 700;
    font-style: Bold;
    font-size: 60px;
    margin: 0;
    line-height: 1.1;
}

.blog-button-center {
    display: none;
}

.blog-btn {
    padding: 12px 24px;
    border: 1px solid #FFFFFF;
    border-radius: 999px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
    font-family: 'Satoshi';
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    transform: rotate(4deg);
}

.blog-btn:hover {
    background: white;
    color: var(--blog-bg);
}

.blog-right {
    width: 100%;
    position: relative;
}

.blog-card-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.blog-slide {
    position: relative;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: transform 0.3s ease;
    background: #000B2EB2;
    border-radius: 24px;
    overflow: hidden;
    padding: 20px;
    border: 1px solid #FFFFFF40;
    display: flex;
    flex-direction: column;
}

.blog-slide:hover {
    box-shadow: 0 0 0 2px #1e53f4;
}

.blog-slide.active {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.blog-image-grid {
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    flex: 1;
}

.blog-card-title {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 0;
    margin-bottom: 12px;
}

.blog-card-description {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #CFCFCF;
    margin: 0;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: #E0E0E0;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
}

.author-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #757575;
}

.meta-dot {
    width: 4px;
    height: 4px;
    background: #757575;
    border-radius: 50%;
}

/* Navigation */
.blog-dots {
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blog-dot {
    width: 12px;
    height: 12px;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-dot:hover {
    transform: scale(1.2);
}

.blog-dot.active {
    background: white;
}

.blog-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #757575;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.blog-arrow:hover {
    border-color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.blog-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.blog-arrow svg {
    color: #FFFFFF;
}

.blog-arrow-left {
    left: -60px;
}

.blog-arrow-right {
    right: -60px;
}


.contact-section {
    background: radial-gradient(50% 162.64% at 50% 50%, #0B43E6 0%, #0830A3 100%);
    padding: 80px 50px 120px;
    min-height: 100vh;
}

.form-container {
    max-width: 1000px;
}

.section-heading {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    width: 554px;
    font-family: 'Figtree';
    background: linear-gradient(270deg,
            #FEEB77,
            #B1C4FB,
            #FEEB77);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientMove 7s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.section-description {
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 60px;
    font-family: 'Figtree';
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    width: 554px;
}

.form-section {
    margin-bottom: 50px;
}

.form-label {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
    display: block;
    font-family: 'Figtree';
    font-weight: 600;
    font-style: Bold;
}

.options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

#guidance-btn,
#guidance-expert-info {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.option-btn {
    background: #FFFFFF;
    color: #525252;
    border: 2px solid white;
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Figtree';
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    gap: 4px;
}

.ask-expert-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0038E6;
    color: white;
    padding: 12px 20px;
    border-radius: 999px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 56, 230, 0.3);
    transition: all 0.3s ease;
}


.ask-expert-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.option-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.option-btn.selected {
    background: #FEE134;
    color: #000B2E;
    border-color: #FEE134;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-label {
    color: #D9D9D9;
    margin-bottom: 15px;
    font-family: 'Figtree';
    font-weight: 500;
    font-style: Medium;
    font-size: 32px;
}

.text-input {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    color: #D9D9D9;
    font-size: 16px;
    padding: 8px 0;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'figtree';
}

.text-input:focus {
    border-bottom-color: white;
}

.text-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.textarea-group {
    margin-bottom: 40px;
    max-width: 100%;
}

.text-area {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    color: #D9D9D9;
    font-size: 16px;
    padding: 8px 0;
    outline: none;
    resize: none;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'figtree';
    margin-top: 15px;
}

.submit-btn {
    width: 361px;
    gap: 4px;
    border-radius: 999px;
    padding-top: 16px;
    padding-right: 147px;
    padding-bottom: 16px;
    padding-left: 147px;
    background-color: #FFFFFF;
    color: #252B37;
    font-family: 'Figtree';
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    cursor: pointer;
    border: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #FEE134;
    color: #000B26;
    transform: translateY(-2px);
}

.text-area:focus {
    border-bottom-color: white;
}

.text-area::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-section {
    background: #00165C;
    padding: 60px 50px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.logo-section {
    margin-bottom: 30px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-logo img {
    height: 100%;
    width: auto;
}

.column-title {
    color: #FFFFFF;
    margin-top: 0px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Satoshi';
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.social-icon img {
    width: 24px;
    height: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    color: #FFFFFF;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Satoshi';
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

.contact-item:hover {
    color: white;
}

.address-text {
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1.7;
    font-family: 'Satoshi';
    font-weight: 400;
    font-style: normal;
    margin-top: 0px;
}

.footer-bottom {
    padding-top: 30px;
}

.copyright-text {
    color: #A9A9A9;
    font-family: 'Satoshi';
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
}

.testimonials-section {
    background: #00165C;
    padding: 80px 50px;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-itle {
    color: #FFFFFF;
    margin-bottom: 60px;
    font-family: 'Figtree';
    font-weight: 700;
    font-style: Bold;
    font-size: 60px;
    text-align: center;
}

.testimonial-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
}

.testimonial-next-btn {
    display: none;
}

.navigation-lines {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-line {
    width: 8px;
    height: 59px;
    border: 1px solid #FFFFFF80;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-line.active {
    background: white;
    height: 80px;
}

.nav-line:hover {
    background: rgba(255, 255, 255, 0.6);
}

.testimonial-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex: 1;
}

.testimonial-image-container {
    width: 350px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    flex: 1;
    margin-top: -30px;
}

.testimonial-quote {
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: 'Figtree';
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

.testimonial-author {
    color: #FFFFFF;
    margin-bottom: 8px;
    font-family: 'Figtree';
    font-weight: 600;
    font-style: Bold;
    font-size: 24px;
}

.testimonial-role {
    font-family: 'Figtree';
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    color: #FFFFFF;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {

    body {
        background: #00165C;
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    .nav-list,
    .nav-right {
        display: none;
    }

    .mobile-icons {
        display: flex;
    }

    .nav-bar {
        padding: 15px 25px;
    }

    .logo-mobile {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }

    .main {
        flex-direction: column;
        padding: 80px 30px;
    }

    .main-head {
        padding-bottom: 20px;
    }

    .main-head h1 {
        font-size: 48px;
        width: 100%;
    }

    .main-head p {
        font-size: 18px;
        width: 100%;
    }

    .hero-images {
        width: 100%;
        max-width: 600px;
        margin-top: 40px;
    }

    .collaborate-container h1 {
        font-size: 48px;
    }

    .collaborate-container p {
        font-size: 18px;
    }

    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experts-container h1 {
        font-size: 48px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .show-more-btn {
        padding: 14px 35px;
        font-size: 17px;
    }

    .show-more-container {
        margin-top: 40px;
    }


    .process-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 44px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .image-box {
        width: 100%;
        height: 350px;
    }

    .text-box {
        padding: 50px 40px;
    }

    .testimonial-wrapper {
        flex-direction: column;
    }

    .blog-container {
        flex-direction: column;
    }

    .carousel-dots {
        right: 20px;
        flex-direction: row;
        top: auto;
        bottom: -40px;
        transform: none;
    }

    .nav-bar {
        display: flex;
        align-items: center;
    }

    .logo-desktop {
        width: 120px;
    }

    .section-title,
    .featured-title {
        font-size: 20px;
    }

    .collaborate-section {
        padding: 20px 20px;
    }

    .text-image {
        flex-direction: column;
        align-items: center;
    }

    .text-image p {
        font-size: 24px;
        width: 635px;
    }

    .main-image {
        width: 100%;
    }

    .text-content h1 {
        font-size: 48px;
        width: 635px;
        padding-left: 20px;
        margin: 0 auto;
    }

    .section-tit {
        font-size: 48px;
        width: 635px;
    }

    .testimonial-wrapper {
        flex-direction: row;
    }

    .student-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-card.tall {
        grid-row: span 1;
    }

    .experts-container h1 {
        width: 100%;
    }

    .blog-slider-section {
        padding: 60px 30px;
    }

    .blog-left {
        height: auto;
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .blog-title {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .blog-button-center {
        display: flex;
        margin-top: 20px;
        justify-content: flex-start;
    }

    .blog-btn {
        font-size: 20px;
        padding: 10px 20px;
    }

    .blog-right {
        width: 100%;
        position: relative;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 20px;
    }

    .blog-right::-webkit-scrollbar {
        display: none;
    }

    .blog-card-stack {
        display: flex;
        gap: 20px;
        width: max-content;
        padding-bottom: 0;
        align-items: stretch;
    }

    .blog-slide {
        position: relative;
        width: calc(50vw - 50px);
        min-width: 340px;
        max-width: 420px;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        padding: 20px;
        flex-shrink: 0;
    }

    .blog-slide.active {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .blog-slide:hover {
        border: 1px solid #ffffff86;
    }

    .blog-image-grid {
        height: 240px;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 15px;
    }

    .blog-card-title {
        font-size: 26px;
    }

    .blog-card-description {
        font-size: 14px;
    }

    .blog-dots {
        display: none;
    }

    .blog-arrow {
        display: none;
    }

    .showcase-container {
        width: 100%;
        max-width: 100%;
        perspective: none;
        margin: 40px auto 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 50px;
        margin-left: -200px;
    }

    .image-stack-wrapper {
        padding: 0 20px;
        width: 100%;
        max-width: 550px;
        box-sizing: border-box;
        min-height: 350px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .image-stack {
        position: relative;
        width: 450px;
        height: 270px;
        margin: 0 auto;
        transform: none !important;
        transform-style: flat !important;
        transition: none !important;
    }

    .collaborate-section:hover .image-stack {
        transform: none !important;
    }

    .stack-img {
        position: absolute !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
        transition: none !important;
    }

    .img-1 {
        z-index: 3 !important;
        transform: translateX(-50px) !important;
        opacity: 1 !important;
    }

    .img-2 {
        z-index: 2 !important;
        transform: translateX(0px) translateY(30px) !important;
        opacity: 0.85 !important;
    }

    .img-3 {
        z-index: 1 !important;
        transform: translateX(50px) translateY(60px) !important;
        opacity: 0.7 !important;
    }
}

@media (max-width: 768px) {

    body {
        background: #00165C;
    }

    .nav-bar {
        padding: 15px 20px;
        gap: 10px;
    }

    .nav-list {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .mobile-icons {
        display: flex;
    }

    .content-grid {
        border-radius: 8px;
    }

    .login-link {
        font-size: 14px;
        padding: 10px 20px;
    }

    .search-container {
        min-width: 180px;
    }

    .search-input {
        font-size: 10px;
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    .main {
        padding: 50px 20px;
        padding-bottom: 0;
    }

    .trusted-section {
        padding-top: 0;
    }

    .main-head h1 {
        font-size: 32px;
        width: 358px;
    }

    .main-head p {
        font-size: 16px;
        width: 358px;
    }

    .hero-images {
        gap: 15px;
    }

    .hero-image-item {
        width: 234px;
        height: 254px;
    }

    .hero-slider-wrapper::after {
        background: linear-gradient(to bottom, transparent, #00165C);
        height: 100px;
    }

    .guidance-tooltip {
        position: fixed;
        top: auto;
        bottom: 20px;
        right: 20px;
    }

    .tooltip-content {
        font-size: 14px;
        max-width: 200px;
    }

    .collaborate-section {
        padding: 30px 20px;
    }

    .collaborate-container h1 {
        font-size: 32px;
    }

    .collaborate-container p {
        font-size: 16px;
    }

    .showcase-container {
        width: 100%;
        max-width: 100%;
        perspective: none !important;
        margin: 40px auto 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .image-stack-wrapper {
        padding: 0 20px;
        width: 100%;
        max-width: 400px;
        box-sizing: border-box;
        min-height: 280px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }

    .image-stack {
        position: relative;
        width: 280px;
        height: 200px;
        transform: none !important;
        transform-style: flat !important;
        margin: 0 auto;
        transition: none !important;
    }

    .collaborate-section:hover .image-stack {
        transform: none !important;
    }

    .stack-img {
        position: absolute !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transition: none !important;
    }

    .img-1 {
        z-index: 3 !important;
        transform: translateX(-30px) !important;
        opacity: 1 !important;
        left: 0;
        top: 0;
    }

    .img-2 {
        z-index: 2 !important;
        transform: translateX(0px) translateY(20px) !important;
        opacity: 0.85 !important;
        left: 0;
        top: 0;
    }

    .img-3 {
        z-index: 1 !important;
        transform: translateX(30px) translateY(40px) !important;
        opacity: 0.7 !important;
        left: 0;
        top: 0;
    }

    .composite-image {
        max-width: 100%;
    }

    .experts-section {
        padding: 60px 0;
        overflow: hidden;
    }

    .experts-container h1 {
        font-size: 32px;
        width: 100%;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .experts-grid {
        display: none;
    }

    .experts-carousel-wrapper {
        display: block;
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 0;
        padding-top: 30px;
    }

    .experts-carousel-track {
        display: flex;
        gap: 0;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        touch-action: pan-y pinch-zoom;
        cursor: grab;
        padding: 0 20px;
    }

    .experts-carousel-track:active {
        cursor: grabbing;
    }

    .experts-carousel-track .expert-card {
        flex: 0 0 calc(100% - 40px);
        min-width: calc(100% - 40px);
        margin: 0 20px;
        scroll-snap-align: center;
    }

    .expert-card {
        padding: 25px 15px;
        background: #000B2EB5;
        border: 5px solid #FFFFFF26;
        border-radius: 24px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .testimonial-wrapper {
        flex-direction: column;
        position: relative;
        padding-bottom: 80px;
        gap: 30px;
    }

    .expert-name {
        font-size: 20px;
    }

    .expert-specialty {
        font-size: 16px;
    }

    .expert-bio {
        font-size: 12px;
    }

    .testimonial-content {
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }

    .testimonial-image-container {
        width: 122px;
        height: 141px;
        flex-shrink: 0;
        aspect-ratio: auto;
    }



    .navigation-lines {
        display: none;
    }

    .nav-line {
        width: 20px;
        height: 6px;
    }

    .nav-line.active {
        width: 40px;
        height: 6px;
    }

    .testimonial-next-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        position: absolute;
        bottom: 0;
        right: 0;
        background: transparent;
        border: none;
        color: white;
        font-family: 'Satoshi', sans-serif;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        padding: 0;
    }

    .testimonial-next-btn .btn-circle {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .testimonial-next-btn:active .btn-circle {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(0.95);
    }

    .head {
        padding-bottom: 30px;
    }

    .enroll a {
        font-size: 14px;
    }

    .btn-1 {
        width: 194px;
        padding: 12px 16px;
        font-size: 14px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .btn-2 {
        width: 169px;
        gap: 10px;
        padding: 6px 16px;
        font-size: 14px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .trusted-section {
        padding: 20px 10px;
        padding-top: 0;
    }

    .logos-container {
        gap: 40px;
        margin-bottom: 0px;
    }

    .featured-logos {
        gap: 30px;
        width: 100%;
        margin-bottom: 0;
    }

    .logo-item img {
        width: 70px;
        height: 24px;
    }

    .programs-section {
        padding: 60px 30px;
    }

    .section-header h1 {
        font-size: 36px;
    }

    .program-image {
        height: 180px;
    }

    .show-more-btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .show-more-container {
        margin-top: 30px;
    }


    .process-section {
        padding: 60px 30px;
    }

    .section-title {
        font-size: 16px;
    }

    .featured-title {
        font-size: 16px;
    }

    .featured-item img {
        width: 78px;
        height: 24px;
    }

    .text-image {
        flex-direction: column;
        align-items: center;
    }

    .text-image p {
        font-size: 14px;
        width: 335px;
    }

    .main-image {
        width: 335px;
    }

    .text-content h1 {
        font-size: 36px;
        width: 335px;
        padding-left: 20px;
        margin: 0 auto;
    }

    .section-tit {
        width: 100%;
        font-size: 36px;
        text-align: center;
        padding-left: 20px;
    }

    .research-section {
        background: #00165C;
        padding: 30px 20px;
    }

    .image-box {
        width: 100%;
        height: 379px;
        position: relative;
        overflow: hidden;
    }

    .image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .text-box {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 30px 20px;
    }

    .growth-section {
        padding: 30px 20px;
    }

    .text-conten h1 {
        font-size: 36px;
        width: 335px;
    }

    .text-conten p {
        font-size: 14px;
        width: 335px;
    }

    .section-header h1 {
        font-size: 36px;
    }

    .section-header p {
        font-size: 14px;
        width: 335px;
    }

    .image-wrapper {
        width: 100%;
    }

    .programs-section {
        padding: 30px 20px;
    }

    .program-card {
        padding: 10px;
    }

    .learning-tagg {
        font-size: 12px;
    }

    .learning-tag {
        padding: 8px 10px;
        font-size: 12px;
    }

    .tag {
        padding: 8px 10px;
        font-size: 12px;
    }

    .section-titl {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .apply-btn {
        font-size: 14px;
        width: 100px;
        padding: 8px 4px;
    }

    .program-image {
        margin-bottom: 0px;

    }

    .program-title {
        font-size: 24px;
        margin-bottom: 0px;
        margin-top: 10px;
    }

    .program-description {
        font-size: 14px;
        width: 314px;
    }

    .process-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0;
    }

    .process-number {
        font-size: 14px;
    }

    .process-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .beg {
        margin-bottom: -10px;
    }

    .process-description {
        font-size: 12px;
        width: 335px;
        margin-top: 0px;
    }

    .case-studies-section {
        padding: 30px 20px;
        align-items: center;
        display: flex;
    }

    .main-title {
        font-size: 36px;
    }

    .case-name {
        font-size: 16px;
    }

    .case-description {
        font-size: 12px;
    }

    .cases-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-bottom: 20px;
        scrollbar-width: thin;
    }

    .case-card-small {
        width: 334px;
        height: 66px;
        background: #0B43E6;
        border-radius: 24px;
        padding: 30px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .case-card-large {
        width: 334px;
        border-radius: 24px;
        overflow: hidden;
        position: relative;
    }

    .card-text-vertical {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 16px;
        text-align: center;
    }

    .testimonials-section {
        padding: 20px 15px;
        padding-top: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .testimonials-container {
        width: 100%;
        max-width: 100%;
    }

    .testimonial-wrapper {
        flex-direction: row;
        gap: 15px;
        align-items: flex-start;
        width: 100%;
    }

    .navigation-lines {
        flex-shrink: 0;
        min-width: 20px;
    }

    .testimonial-content {
        display: flex;
        gap: 15px;
        align-items: flex-start;
        flex: 1;
        width: 100%;
        min-width: 0;
    }

    .testimonial-image-container {
        width: 80px;
        height: 120px;
        border-radius: 10px;
        overflow: hidden;
        flex-shrink: 0;
        margin-top: 0;
    }

    .testimonial-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .testimonial-text {
        flex: 1;
        min-width: 0;
    }

    .testimonial-quote {
        font-size: 13px;
        width: 100%;
        max-width: 100%;
        line-height: 1.5;
        margin-bottom: 15px;
        margin-top: 0px;
    }

    .testimonial-author {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .testimonial-role {
        font-size: 14px;
    }

    .section-itle {
        font-size: 32px;
        text-align: center;
        padding: 0 15px;
    }

    .contact-section {
        padding: 30px 20px;
    }

    .section-heading {
        font-size: 40px;
        width: 332px;
    }

    .section-description {
        font-size: 14px;
        width: 335px;
    }

    .form-label {
        font-size: 20px;
    }

    .ask-expert-btn {
        font-size: 14px;
        padding: 10px 16px;
    }

    .guidance-container {
        bottom: 16px;
        right: 16px;
    }

    .ask-expert-btn img {
        width: 20px;
        height: 20px;
    }

    .input-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .options-grid {
        gap: 10px;
    }

    .option-btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .input-label {
        font-size: 20px;
    }

    .text-input {
        font-size: 14px;
    }

    .footer-section {
        padding: 40px 30px 30px;
    }

    .footer-logo img {
        width: 192px;
    }

    .column-title {
        font-size: 16px;
    }

    .social-links {
        gap: 15px;
    }

    .contact-item {
        font-size: 16px;
    }

    .copyright-text {
        font-size: 12px;
    }

    .text-content h2 {
        font-size: 32px;
    }

    .network-diagram {
        height: 400px;
    }

    .circle-large,
    .circle-small {
        width: 100px;
        height: 100px;
    }


    .circle-medium {
        width: 90px;
        height: 90px;
    }

    .center-logo {
        width: 140px;
        height: 140px;
    }

    .center-logo-inner {
        font-size: 60px;
    }

    .center-circle {
        width: 106px;
        height: 106px;
        background: white;
    }

    .top-left {
        top: 0;
        left: 10%;
    }

    .top-right {
        top: 0;
        right: -10%;
    }

    .bottom-left {
        bottom: 30%;
        left: 10%;
    }

    .bottom-right {
        bottom: 10%;
        right: 8%;
    }

    .bottom-center {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .blog-slider-section {
        padding: 30px 0;
    }

    .blog-container {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .blog-left {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .blog-title {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.2;
        text-align: center;
    }

    .blog-right {
        width: 100%;
        position: relative;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 20px;
        padding-bottom: 0;
    }

    .blog-right::-webkit-scrollbar {
        display: none;
    }

    .blog-card-stack {
        display: flex;
        gap: 16px;
        width: max-content;
        padding-bottom: 0;
        align-items: stretch;
        margin-bottom: 0;
    }

    .blog-card-title {
        font-size: 24px;
    }

    .blog-card-description {
        margin-bottom: 0px;
        font-size: 12px;
    }

    .blog-slide {
        position: relative;
        width: calc(50vw - 28px);
        min-width: 289px;
        max-width: 350px;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        padding: 15px;
        flex-shrink: 0;
    }

    .blog-slide.active {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .blog-image-grid {
        height: 200px;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 10px;
    }

    .blog-card-stack {
        height: 376px;
    }

    .blog-card-content {
        gap: 12px;
    }

    .blog-dots {
        display: none;
    }

    .blog-arrow {
        display: none;
    }


    .student-work-section {
        padding: 60px 0;
    }

    .student-work-container {
        max-width: 100%;
    }

    .student-work-container h1 {
        font-size: 36px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .student-work-grid {
        gap: 10px;
        height: 400px;
        padding: 0;
    }

    .work-column {
        flex: 1;
    }

    .work-track {
        gap: 10px;
    }

    .work-card {
        border-radius: 8px;
    }

    .hero-slider-wrapper {
        width: 100%;
        height: 200px;
        padding: 0;
        margin-top: 20px;
        box-sizing: border-box;
        overflow: hidden;
        display: flex;
        position: relative;
    }

    .hero-column {
        display: flex;
        width: auto;
        height: 100%;
    }

    .hero-image-item {
        flex-shrink: 0;
        border-radius: 12px;
        width: 234px;
        height: 253px;
        padding-bottom: 20px;
    }

    .hero-image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Adjust the blur height */
    .hero-slider-wrapper::after {
        height: 100px;
    }

    .hero-track {
        display: flex;
        flex-direction: row;
        gap: 12px;
        animation: slideLeft 20s linear infinite;
        will-change: transform;
    }

    .hero-track::after {
        content: '';
        display: flex;
        gap: 12px;
    }

    @keyframes slideLeft {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    .submit-btn {
        width: 100%;
        max-width: 361px;
        padding: 16px 24px;

        border-radius: 999px;
        background-color: #FFFFFF;
        color: #0B43E6;

        font-family: 'Figtree';
        font-weight: 500;
        font-size: 20px;

        cursor: pointer;
        border: none;
        margin-top: 20px;
        transition: all 0.3s ease;
    }

    .program-footer p {
        font-size: 12px;
    }

    .guidance-expert-info {
        padding: 15px;
        max-width: calc(100vw - 40px);
        gap: 15px;
    }

    .tooltip-content {
        font-size: 16px;
    }

    .tooltip-avatar {
        width: 40px;
        height: 40px;
    }

    .guidance-form-container {
        padding: 20px;
        width: calc(100vw - 40px);
    }

    .guidance-form-container h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .text-area {
        font-size: 12px;
    }

    .text-input {
        font-size: 12px;
    }

    .testimonial-text {
        margin-top: -5px;
    }
}

@media (max-width: 360px) {
    .program-description {
        font-size: 12px;
        width: 270px;
    }

    .section-header p {
        font-size: 14px;
        width: 225px;
    }

    .program-title {
        font-size: 24px;
    }

    .apply-btn {
        font-size: 12px;
        width: 152px;
    }

    .program-footer p {
        font-size: 10px;
    }

    .learning-tagg {
        font-size: 10px;
    }

    .process-description {
        font-size: 12px;
        width: 100%;
    }

    .section-description {
        width: 100%;
    }

    .testimonial-quote {
        width: 100%;
    }

    .logo-mobile {
        width: 20px;
    }

    .login-link {
        font-size: 12px;
    }

    .search-container {
        gap: 5px;
        padding: 6px 12px;
        min-width: 200px;
    }

    .search-input {
        font-size: 10px;
    }

    .section-tit {
        width: 100%;
    }

    .guidance-container {
        bottom: 0px;
        right: 20px;
    }

    .main-head h1 {
        font-size: 32px;
        width: 100%;
    }

    .main-head p {
        font-size: 16px;
        width: 100%;
    }

    .ask-expert-btn {
        font-size: 12px;
        padding: 8px 14px;
    }

    .guidance-container {
        bottom: 12px;
        right: 12px;
    }

    .section-heading {
        width: 100%;
    }
}