:root {
    /* Colors */
    --color-primary: #F2B705;
    --color-white: #FFFFFF;
    --color-heading: #202020;
    --color-text: #666666;
    --color-border: #E5E5E5;
    --color-bg: #F8F8F8;
    /* Fonts */
    --font-primary: "Inter", sans-serif;
    --font-heading: "Sora", sans-serif;
    --transition: all 0.3s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;

}


body {
    overflow-x: hidden !important;
    font-family: var(--font-primary);
    background: var(--color-white);
    color: var(--color-text);
}



/* Links */
a {
    text-decoration: none;
    color: inherit;
}

/* Lists */
ul,
ol {
    list-style: none;
    margin-bottom: 0px !important;
}

/* Buttons */
button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    background: transparent;
}

/* Inputs */
input,
textarea,
select {
    outline: none;
    font-family: inherit;
}


/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
}

h1 {
    font-weight: 600;
    font-size: 54px;
    line-height: 70px;
}

h2 {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
}

h3 {
    font-weight: 600;
    font-size: 28px;
    line-height: 40px;
}

h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}


p {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    margin-top: 0;
}

a {
    text-decoration: none !important;
}

.featured-programs {
    padding: 0px !important;
    background: #FFFFFF;
    width: 90%;
}

header {
    position: relative;
    z-index: 9999;
}


.topbar {
    position: relative;
    height: 110px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    z-index: 10;
    top: 0;
    box-shadow: 0px 4px 10px 0px #00000040;
}


.topbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            var(--color-heading) 0%,
            var(--color-heading) 50%,
            var(--color-primary) 50%,
            var(--color-primary) 100%);
    z-index: -1;
    background-position: center;
    background-repeat: no-repeat;


}


.topbar::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(50% - 140px);
    width: 150px;
    height: 100%;
    background: var(--color-primary);
    transform: skewX(-18deg);
    z-index: -1;
}


.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}


.topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.follow-label {
    color: var(--color-white);
    font-family: Sora;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 100%;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--color-heading);
    font-size: 14px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
    color: var(--color-white);
}

.social-icons a {
    background: var(--color-primary) !important;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.topbar-right .contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-heading);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.topbar-right .contact-item i {
    font-size: 14px;
    color: var(--color-heading);
}

/* Topbar finish */
.navbar-wrapper {
    position: absolute;
    z-index: 100;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -40px;
}


.navbar-innner {
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 90px;
    height: 90px;
    box-shadow: 4px 4px 10px 0px #20202040;

}

.sticky-nav {
    position: sticky;
    top: 70px;
    z-index: 9998;
}

/* Navbar */
.navbar-wrapper .navbar {
    width: 100%;
    padding: 25px 20px;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 40px;
}

.nav-logo {
    flex-shrink: 0;
}


/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-logo img {
    max-width: 283px;
    max-height: 40px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    margin-right: 22px;
}

.nav-links a {
    color: #000;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s ease;

}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary) !important;
    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--color-primary);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

/* Login button */
.btn-login {


    border-radius: 50px;
    background: #F2B705;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.25);
    color: #202020;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    padding: 10px 36px;

}

.btn-login2 {
    border-radius: 50px;
    border: 2px solid rgba(20, 90, 20, 0.50);
    background: linear-gradient(90deg, #5FB84D 0%, #3FA535 50%, #2E8B2E 75%, #145A14 100%);
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.25);
    color: #FFF;
    font-family: Sora;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    padding: 10px 36px;
}

.btn-login:hover {
    background: #000000;
    transform: translateY(-1px);
    color: #f2b705;
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.hamburger:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 0, 0, 0.18);
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-heading);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    transform-origin: center;
}

.hamburger.active {
    background: #F2B705;
    border-radius: 4px;
    color: #000;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
    display: flex;
    position: fixed;
    top: 68px;
    right: 0;
    width: 55vw;
    max-width: 340px;
    flex-direction: column;
    background: var(--color-white);
    padding: 15px 13px;
    border-left: 1px solid #eee;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    overflow-y: auto;
    z-index: 9999;
}

.mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu a {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-heading);
    padding: 14px 0 7px 0;
    border-bottom: 1px solid #d9d9d9;
    transition: color 0.2s;
}

.mobile-menu a:last-of-type {
    border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--color-primary);
}

.mobile-menu .btn-login {
    margin-top: 10px;
    text-align: center;
    display: block;
    border-radius: 6px;
    border-bottom: none !important;
}

.mobile-menu .btn-login2 {
    margin-top: 10px;
    text-align: center;
    display: block;
    border-radius: 6px;
    border: none;
}


/* .hero-section {
    position: relative;
    width: 100%;
    height: calc(100dvh - 110px);
    min-height: 320px;
    overflow: hidden;
    padding: 0 !important;
} */


.hero-section {
    position: relative;
    width: 100%;
    height: calc(100dvh - 110px);
    min-height: 320px;
    overflow: hidden;
    padding: 0 !important;
}

/* ── Swiper fills the whole section ── */
.hero-swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hero-slide-link {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100vh;
    display: block;
    object-fit: cover;
}

/* ── Responsive image switching ── */
.hero-img-desktop {
    display: block;
}

.hero-img-mobile {
    display: none;
}

/* Content */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    pointer-events: none;
}

.hero-content>* {
    pointer-events: auto;
}

/* Custom Arrow Buttons */
.hero-swiper-btn {
    position: absolute;
    width: 50px !important;
    height: 50px !important;
    background: var(--color-primary) !important;
    border-radius: 50% !important;
    border: none;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 20;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: background 0.25s ease, transform 0.2s ease;
}

.hero-swiper-btn:hover {
    background: var(--color-heading) !important;
    transform: translateY(-50%) scale(1.08);
}

.hero-swiper-prev {
    left: 30px !important;
}

.hero-swiper-next {
    right: 30px !important;
}

/* Icon */
.hero-swiper-btn i {
    color: var(--color-heading);
    font-size: 18px;
    transition: color 0.25s ease;
}

.hero-swiper-btn:hover i {
    color: var(--color-primary);
}

.hero-line {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

}

.hero-line span {
    position: relative;
    font-family: "Sora", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    padding-bottom: 12px;
}

/* Line */
.hero-line span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--color-white);
}

/* Circle Center */
.hero-line span::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--color-white);
    border-radius: 50%;
    z-index: 2;
}

.hero-heading h2 {
    font-weight: 600;

    font-size: 54px;
    color: var(--color-white);
    padding: 20px 0;
    line-height: 70px;
    text-transform: capitalize;

}

.hero-heading p {
    color: var(--color-white);
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    max-width: 800px !important;
    margin: 0 auto;

}

.hero-btn {
    margin-top: 40px;
}

.hero-btn .primary-btn {
    padding: 15px 24px;
    background: var(--color-primary);
    color: var(--color-heading);
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    font-family: "Sora", sans-serif;
}

.enquiry-wrapper {
    background: #fff;
    border-radius: 10px;
    padding: 18px 20px 20px;
    position: absolute;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #000;
    bottom: 70px;
    z-index: 99;
    width: 100%;
    max-width: 1392px;
    left: 50%;
    transform: translateX(-50%);
}

/* TITLE */
.enquiry-title {
    position: absolute;
    top: -47px;
    left: 50%;
    transform: translateX(-50%);
}

.enquiry-title h3 {
    background: #fff;
    color: var(--color-heading);
    font-size: 24px;
    font-weight: 600;
    padding: 4px 30px;
    border-radius: 14px 14px 0 0;
    display: inline-block;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
}

/* FORM */
.enquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 0.6fr;
    gap: 14px;
}

/* INPUT BOX */
.form-group {
    position: relative;

}

.form-group i {
    position: absolute;
    left: 14px;
    top: 13px;

    color: #666666;
    font-size: 13px;
}

.form-group:nth-child(2) i {
    font-size: 14px;
}

/* INPUTS */
.form-group input,
.form-group select {
    width: 100%;
    height: 39px;
    border: 1px solid #3B3A3A;
    border-radius: 6px;
    padding: 0 14px 0 32px;
    font-size: 14px;
    outline: none;
    background: #fff;
    color: #666666;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

/* BUTTON */
.submit-btn {
    height: 39px;
    border: none;
    background: #f2b500;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s;
}

.submit-btn:hover {
    background: #000;
    color: #fff;
}

/* MAIN BAR */
.top-announcement {
    width: 100%;
    height: 44px;
    display: flex;
    overflow: hidden;
    background: #202020;
    position: absolute;
    bottom: 0px;
    z-index: 9;
}

/* LEFT SIDE */
.announcement-left {
    width: calc(38% - 10px);
    min-width: 260px;

    background: var(--color-primary);

    position: relative;

    display: flex;
    align-items: center;
}

/* SKEW CUT */
.announcement-left::after {
    content: "";
    position: absolute;

    top: 0;
    right: -18px;

    width: 40px;
    height: 100%;

    background: var(--color-primary);

    transform: skewX(-25deg);

    z-index: 2;
}

/* LEFT CONTENT */
.announcement-inner {
    width: 100%;
    max-width: 434px;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 12px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 3;
}

.announcement-inner i {
    font-size: 18px;
}

/* RIGHT SIDE */
.announcement-right {
    width: 49%;
    background: #202020;
    display: flex;
    align-items: center;
}

/* CONTENT */
.announcement-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* TEXT */
.announcement-text {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    color: #fff;
    font-size: 14px;
    text-align: center;
    flex: 1;
}

/* CIRCLE ARROW */
.announcement-arrow {
    margin: 0 22px;
    width: 24px;
    height: 24px;

    border: 1px solid #d4a400;
    border-radius: 50%;

    background: transparent;
    color: var(--color-primary);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;

    flex-shrink: 0;
}

.announcement-arrowprev {
    margin-left: 8rem;
}


.about-gku {
    padding: 120px 0 40px 0;
}

.about-gku-img {
    position: relative;

}

/* Main Image */
.about-gku-img .main-img {

    position: relative;
    z-index: 2;
}

/* Top Left Shape */
.about-shape-top {
    position: absolute;
    top: -35px;
    left: -35px;
    width: 180px;
    height: 160px;
    background: #f4e2a8;
    border-radius: 40px;
    z-index: 1;
}

/* Experience Box */
.experience-box {
    position: absolute;
    top: -45px;
    right: 127px;
    background: var(--color-primary);
    padding: 12px 25px;
    border-radius: 160px;
    text-align: center;
    z-index: 3;

}

.experience-box h3 {
    font-size: 36px;
    line-height: 100%;
    padding-bottom: 5px;
    font-weight: 600;
    color: var(--color-heading);

}

.experience-box p {
    color: var(--color-heading);
    font-weight: 500;

}

/* WES Card */
.wes-card {
    position: absolute;
    right: 20px;
    bottom: 0px;

    width: 240px;
    height: 260px;
    border: 1px solid #A1A1A1;
    background: #fff;
    border-radius: 60px;
    padding: 40px 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    z-index: 3;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.wes-card img {
    width: 140px;
    margin-bottom: 30px;
}

.wes-card h4 {
    color: #1f9d5c;
    letter-spacing: 2px;
    font-size: 28px;
}


.dot-pattern {
    position: absolute;
    left: -60px;
    bottom: 0px;
    width: 100px;
    height: 120px;
    background-image: radial-gradient(#9d9d9d 2px, transparent 2px);
    background-size: 16px 16px;

    z-index: 1;
}

.about-gku-tag span {
    font-family: Inter;
    font-weight: 700;
    font-size: 16px;
    color: var(--color-text);
    letter-spacing: 10%;
    padding-bottom: 23px;

}

.about-gku-heading h2 {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 36px;
    color: var(--color-heading);
    line-height: 54px;
    padding: 20px 0;
    margin-bottom: 0px;
}

.about-gku-heading p {
    font-weight: 400;
    color: var(--color-text);
    line-height: 28px;
    letter-spacing: 0%;
    margin-bottom: 30px;
}

.about-icon-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.about-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-heading);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-icon i {
    font-size: 26px;
    color: var(--color-white);
    padding: 15px;
}

.about-text h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #000000;

}

.about-text p {
    color: var(--color-text);
    font-size: 16px;

    line-height: 28px;


}



.our-program-title p {
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 10%;
    margin-bottom: 10px;
    color: var(--color-text);
}

.our-program-title h2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-family: "Sora", sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: var(--color-heading);
    margin-bottom: 40px;
}


.our-program-title h2::before {
    content: "";
    width: 80px;
    height: 3px;
    background: var(--color-primary);
}

.our-program-title h2::after {
    content: "";
    width: 80px;
    height: 3px;
    background: var(--color-primary);
}


/* Card */
.program-card {
    border: 1px solid #202020;
    border-radius: 20px;
}

/* Image */
.program-img {
    position: relative;


}


.program-arrow {
    position: absolute;
    top: 12px;
    right: 00px;

    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50px 0px 0px 50px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    overflow: hidden;
    transition: all 0.4s ease;

    text-decoration: none;
    color: #000;
    padding: 0 18px;

}

.program-arrow i {
    transform: rotate(45deg);
}

.learn-img {
    width: 100%;
    aspect-ratio: 4 / 3.2;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    margin-top: 20px;
}

.learn-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.program-arrow span {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 14px;
    font-weight: 500;
}

/* Hover Effect */
.program-arrow:hover {
    width: 120px;
    background: #000;
    color: #fff;
}

/* Show Text */
.program-arrow:hover span {
    max-width: 120px;
    opacity: 1;
}

/* Center Icon */
.program-icon {
    position: absolute;
    left: 50%;
    bottom: -38px;
    transform: translateX(-50%);

    width: 100px;
    height: 100px;

    background: #202020;
    border: 6px solid #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.program-icon img {
    width: 40px;
    height: 34px;
    object-fit: contain;
}

/* Content */
.program-content {
    text-align: center;
    padding-top: 10px;
}

.program-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: Sora;
    font-weight: 600;


}

.program-content p {

    font-weight: 400;

    font-size: 14px;

    line-height: 22px;
    color: #666666;
    text-align: center;
    text-transform: capitalize;

}

/* Footer */
.program-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
}

.program-footer span {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 14 px;
    color: var(--color-heading);
}

.program-footer h4 {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    text-transform: capitalize;
    color: var(--color-heading);
    white-space: nowrap;

}

/* Button */
.apply-btn {
    padding: 13px 28px;
    background: var(--color-primary);
    border-radius: 10px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-heading);
}

.apply-btn:hover {
    color: var(--color-white) !important;
}



.program-prev,
.program-next {
    width: 50px !important;
    height: 50px !important;
    background: #000;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 9999;
}



/* Left Button */
.program-prev {
    left: -200px !important;
}

/* Right Button */
.program-next {
    right: -200px !important;
}

/* Remove default Swiper icon */
.program-prev::after,
.program-next::after {
    font-size: 18px !important;
    font-weight: 700;
    color: #fff;
}

/* Optional Hover */
.program-prev:hover,
.program-next:hover {
    background: #ff6600;
}

/* Responsive */
@media(max-width:991px) {

    .program-footer {
        align-items: flex-start;
    }

    .apply-btn {
        width: 100%;
    }
}

.section-line {
    margin-top: 60px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            rgba(242, 183, 5, 0) 0%,
            rgba(242, 183, 5, 0.5) 25%,
            #F2B705 50%,
            rgba(242, 183, 5, 0.5) 75%,
            rgba(242, 183, 5, 0) 100%);
}

.global-recognitons {
    background-color: var(--color-primary) !important;
    margin: 80px 0;
    padding: 40px 0;
}



.recognitions-title p {
    font-family: Inter;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    letter-spacing: 10%;
    text-transform: uppercase;
    padding-bottom: 23px;
    color: #666666;

}

.recognitions-title h2 {
    font-family: Sora;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 36px;
    line-height: 54px;
    color: var(--color-heading);
    padding-bottom: 30px;
}

.Globally-card {
    border: 1px solid #D9D9D9;
    text-align: center;
    border-radius: 40px;
    background: var(--color-heading);
    border-top: 10px solid #Ffffff;
    border-bottom: 10px solid #ffffff;

    padding: 27px 40px;
}

.image-globally {
    width: 100px;
    height: 100px;
    background-color: var(--color-primary);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;

}


.Globally-card h2 {
    font-family: Sora;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;
    text-transform: capitalize;
    color: var(--color-primary);



}

.Globally-card p {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 22px;
    color: var(--color-white);
    text-align: center !important;


}

.custom-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-btn {
    width: 100%;
    border: none;
    padding: 18px 20px;
    text-align: left;
    border-radius: 12px;
    background: transparent;
    font-weight: 600;
    transition: 0.3s ease;
    border: 1px solid #202020;
    transition: all 0.3s ease;
}

.info-btn:hover,
.info-btn.active {
    background: var(--color-heading);
    color: #fff;
}



/* Learn, Connect & Grow Online start  */
.learn-connect-title p {
    font-family: Inter;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    color: #666666;
    letter-spacing: 10%;


}

.learn-connect-heading h2 {
    font-family: Sora;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 36px;
    line-height: 54px;
    text-align: center;
    color: var(--color-heading);
    padding: 20px 0;

}

.learn-connect-heading p {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 28px;
    text-align: center;


}

.student-club {
    position: relative;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    padding: 32px 20px 20px;
    margin-top: 35px;
    background: #fff;
    min-height: 222px;
}

/* .student-club:hover {
    background-color: #000;
}

.student-club:hover h4,
.student-club:hover p,
.student-club:hover {
    color: #fff;
} */


/* Icon */
.student-icon {
    position: absolute;

    top: -30px;
    left: 20px;

    width: 60px;
    height: 60px;

    border-radius: 10px;
    background: var(--color-heading);
    color: var(--color-white);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 36px;
}

/* .student-club:hover .student-icon {
    background: var(--color-primary);
    color: var(--color-heading) !important;
} */

/* Content */
.student-content h4 {
    padding-top: 10px;

    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.student-content p {
    margin-bottom: 0;

    font-size: 14px;
    line-height: 24px;
    color: #000;
}

/* Learn, Connect & Grow Online finish */


/* OUR LEGACY start */


.title-legacy p {
    font-family: Inter;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    letter-spacing: 10%;
    color: var(--color-text);
}

.heading-legacy h4 {
    font-family: Sora;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 36px;
    line-height: 54px;
    color: var(--color-heading);
    padding: 20px 0;
}

.heading-legacy p {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    color: var(--color-text);
    line-height: 28px;
    letter-spacing: 0%;

}

.heading-legacy .leg-btn {
    padding: 12px 21px;
    background: var(--color-primary);
    margin-top: 35px;
    border-radius: 10px;
    color: var(--color-heading) !important;
    font-family: Sora;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 18px;
    text-transform: capitalize;

}

.grad-rate {
    position: relative;

    border: 1px solid #D9D9D9;
    border-radius: 10px 10px 0 0;

    padding: 20px 0;
    background: #fff;
}

/* OUTSIDE BOTTOM BORDER */
.grad-rate::after {
    content: "";
    position: absolute;

    left: -1px;
    right: -1px;
    bottom: -8px;

    height: 8px;
    background: var(--color-primary);

    border-radius: 0 0 10px 10px;
}

.grad-rate h4 {
    font-family: Sora;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 36px;
    text-transform: capitalize;
    color: var(--color-heading);
    padding-bottom: 10px;

}

.grad-rate p {
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 26px;
    text-transform: capitalize;
    color: var(--color-text);

}

/* OUR LEGACY finish */



/* ── Logo Cutout Wrapper ── */
.footer-logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    height: 100px;
    background: var(--color-white);
    overflow: visible;
}

.footer-logo-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--color-heading);
    z-index: 5;
}

.logo-pocket {
    position: absolute;
    bottom: 12px;
    z-index: 10;
    width: 290px;
    height: 100px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.logo-pocket::before {
    content: '';
    position: absolute;
    bottom: 27px;
    right: 91%;
    width: 50px;
    height: 33px;
    background: radial-gradient(circle at top left, transparent 32px, var(--color-heading) 14px);
    z-index: 9;
}

.logo-pocket::after {
    content: '';
    position: absolute;
    bottom: 27px;
    left: 91%;
    width: 50px;
    height: 33px;
    background: radial-gradient(circle at top right, transparent 32px, var(--color-heading) 14px);
    z-index: 9;
}

.logo-bubble {
    background: #fff;
    border: 16px solid var(--color-heading);
    border-radius: 60px;
    padding: 0px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -12px;
    width: 275px;
    height: 100px;
    box-sizing: border-box;
    position: relative;
    z-index: 12;
}

.footer-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ── Main Footer ── */
.main-footer {
    background: var(--color-heading);
    padding: 55px 0 0 0;
    color: #ccc;
}

.footer-heading {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.footer-about p {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-white);

}

/* Info items */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 1px;
    font-size: 16px;
    color: var(--color-white);
}

.info-item i {
    color: var(--color-white);
    margin-top: 3px;
    font-size: 24px;
    flex-shrink: 0;
}

/* Social icons */
.footersocial-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.footersocial-icons i {
    color: var(--color-heading);
}

.footersocial-icons a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white) !important;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.footersocial-icons a:hover {
    background: var(--color-primary);
    transform: scale(1.1);
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-size: 16px;
    margin-bottom: 8px;
}

.phone-item i {
    color: var(--color-white);
}

/* ── Copyright bar ── */
.footer-bottom {
    border-top: 1px solid #ffffff;
    margin-top: 40px;
    padding: 16px 0;
    text-align: center;
    font-size: 0.82rem;
    color: #A9A9A9;
}

.footer-privacy,
.refund-policy a {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline !important;
    color: #Ffffff;
}




@media (max-width:1390px) {
    .hero-heading h2 {

        font-size: 46px;

        padding: 20px 0;
        line-height: 59px;

    }

}


@media (max-width:991px) {
    .hero-heading h2 {
        font-size: 36px;

        line-height: 40px;
    }

    .about-gku-img {
        margin: auto;
    }

    .wes-card {
        width: 180px;
        height: 200px;
        right: 0;
        bottom: -30px;
        border-radius: 40px;
    }

    .experience-box {
        right: 0px;
        padding: 8px 14px;
    }

    .experience-box h3 {
        font-size: 25px;
    }

}

@media (max-width: 900px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .topbar-right .contact-item:last-child {
        display: none;
    }
}



/*--------------------------------------------------------------
# Featured Programs Redesign
--------------------------------------------------------------*/
.featured-programs {
    margin: 0px auto;
    padding: 80px 0;
    background: #FFFFFF;
    width: 90%;
}

.featured-container {
    width: 80%;
    margin: 0 auto;
}



.featured-programs .section-title {
    text-align: center;
    margin-bottom: 0px !important;
    padding-bottom: 20px !important;
}

.featured-programs .section-title p {
    color: #666;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
    letter-spacing: 10%;
}

.featured-programs .section-title h2 {
    font-family: Sora;
    font-weight: 600;
    font-size: 36px;
    color: var(--color-heading);
    position: relative;
    display: inline-block;
}

.featured-programs .section-title h2::before,
.featured-programs .section-title h2::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 2px;
    background: var(--color-primary);
}

.featured-programs .section-title h2::before {
    left: -80px;
}

.featured-programs .section-title h2::after {
    right: -80px;
}

.program-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0px !important;
    margin-top: 1.3rem;
}

.program-filters .filter-btn {
    background: #FFFFFF;
    border: 1px solid #202020;
    color: #202020;
    font-family: Sora;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 28px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.program-filters .filter-btn.active,
.program-filters .filter-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #000000;
}

.carousel-container {
    position: relative;
    padding: 20px 0px;
    overflow: hidden;
    margin-top: 2rem;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.card {
    flex: 0 0 calc(25% - 18px);
    background: transparent;
    border: none;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover .card-main-box {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-main-box {
    border: 1px solid #202020;
    border-radius: 12px;
    background: #FFFFFF;
    position: relative;
    padding: 40px 12px 20px 12px;
    margin-top: 40px;
    /* Space for the top icon */
    transition: all 0.3s ease;
    height: 242px;
}

.card-icon-top {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: #202020;
    border: 6px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 26px;
    z-index: 5;
    width: 80px;
    height: 80px;
    aspect-ratio: 1/1;
}

.card-icon-top img {
    width: 48px;
    height: 48px;

}

.card-arrow-top {
    position: absolute;
    top: 12px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--color-primary);

    border-radius: 50px 0px 0px 50px;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #202020;
    font-size: 16px;
    z-index: 5;
}

.card-arrow-top i {
    transform: rotate(45deg);
}


.card-arrow-top span {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 14px;
    font-weight: 500;
}

.program-desc {
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 22px;
    text-align: center;
    text-transform: capitalize;
    letter-spacing: 0px !important;

}


.card-arrow-top:hover {
    width: 170px;
    background: #000;
    color: #fff;
}


.card-arrow-top:hover span {
    max-width: 120px;
    opacity: 1;
}

.program-content {
    text-align: center;
    flex-grow: 1;
    padding: 10px 0;
}

.program-content h5 {
    color: #202020;
    font-family: Sora;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 15px;

}




.program-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 15px;
    padding: 0 5px;
}

.program-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.program-meta span {
    font-family: Inter;
    font-size: 12px;
    color: #202020;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.program-meta span i {
    font-size: 13px;
    color: #666666;
}

.program-meta span b {
    font-weight: normal;
}

.apply-btn-new {
    background: var(--color-primary);
    color: #202020;
    font-family: Sora;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.apply-btn-new:hover {
    background: #202020;
    color: #FFFFFF;
}

.featured-programs .nav-btn {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);

    width: 40px;
    height: 40px;
    background: var(--color-primary) !important;
    border: none !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #202020 !important;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.featured-programs .nav-btn:hover {
    background: #202020 !important;
    color: #FFFFFF !important;
}

.featured-programs .nav-btn.prev {
    left: -135px;
}

.featured-programs .nav-btn.next {
    right: -135px;
}

.view-all-btn {
    background: var(--color-primary);
    color: #202020 !important;
    font-family: Sora;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 45px;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.view-all-btn:hover {
    background: #202020;
    color: #FFFFFF !important;
}

@media (max-width: 1200px) {
    .card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (max-width: 991px) {
    .card {
        flex: 0 0 calc(50% - 12px);
    }

    .featured-programs .section-title h2::before,
    .featured-programs .section-title h2::after {
        width: 40px;
    }

    .featured-programs .section-title h2::before {
        left: -50px;
    }

    .featured-programs .section-title h2::after {
        right: -50px;
    }

    .featured-programs .nav-btn.prev {
        left: -47px;
    }

    .featured-programs .nav-btn.next {
        right: -47px;
    }
}

@media (max-width: 767px) {


    .featured-programs .section-title h2::before,
    .featured-programs .section-title h2::after {
        display: none;
    }



    .carousel-container {
        padding: 50px 0;
    }

    .featured-programs .nav-btn {
        display: flex;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .featured-programs {
        padding-top: 0px;
        padding-bottom: 0px;
    }



}

/* ==============================================================
   PROGRAM ITEMS CSS (Restored for program.php)
   ============================================================== */
.program-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.program-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.program-image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid var(--color-primary);
}

.program-content {

    flex: 1;
    display: flex;
    flex-direction: column;
}



.program-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.program-highlights span {
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    color: #444;
}

.program-highlights span i {
    color: var(--color-primary);
    margin-right: 5px;
}



.program-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.program-actions .apply-btn {
    flex: 1;
    text-align: center;
    background: var(--color-primary);
    color: #fff;
    padding: 8px 0;
    border-radius: 5px;
    font-size: 13px;
    transition: 0.3s;
    border: 1px solid var(--color-primary);
}

.program-actions .apply-btn:hover {
    background: transparent;
    color: var(--color-primary);
}

/* ==============================================================
   RESPONSIVE OVERRIDES (ADDED PER REQUEST)
   ============================================================== */
@media (max-width: 1400px) {

    /* Scale down header elements so they fit without breaking */
    .navbar-wrapper .navbar {
        gap: 15px !important;
        padding: 15px 10px !important;
    }

    .nav-links {
        gap: 12px !important;
    }

    .nav-links a {
        font-size: 13px !important;
    }

    .btn-login,
    .btn-login2 {
        padding: 10px 15px !important;
        font-size: 14px !important;
    }

    .topbar-right {
        gap: 15px !important;
    }

    .topbar::after {
        left: calc(50% - 70px) !important;
    }

    /* Programs Carousel Scaling */
    .card {
        flex: 0 0 calc(33.333% - 20px) !important;
    }

    /* Programs & Student Life Scaling */

    .program-content h5 {
        font-size: 17px !important;
    }

    .student-content h4 {
        font-size: 17px !important;
    }

    .student-content p {
        font-size: 14px !important;
        line-height: 22px !important;
    }

    .student-club {
        padding: 25px 15px 15px !important;
    }

    .student-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 28px !important;
        top: -25px !important;
    }

    .heading-legacy h4 {

        font-size: 30px;
        line-height: 38px;

        padding: 20px 0;
    }
}

@media (max-width: 1199px) {

    /* Further scale down for smaller laptops */
    .nav-links {
        gap: 15px !important;
    }

    .nav-links a {
        font-size: 12px !important;
    }

    .btn-login,
    .btn-login2 {
        padding: 8px 12px !important;
        font-size: 12px !important;
    }

    .navbar-innner {
        height: 70px !important;
    }

    .nav-logo img {
        height: 40px !important;
    }

    /* Programs & Student Life Scaling */
    .student-club {
        padding: 20px 10px 10px !important;
    }

    .student-content p {
        font-size: 12px !important;
        line-height: 18px !important;
    }

    .student-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 20px !important;
        top: -20px !important;
    }

}




@media (max-width: 767px) {

    /* Additional Mobile Tweaks */
    .topbar-left {
        flex-direction: column;
        gap: 10px;
    }

    .topbar-right {
        flex-direction: column;
        gap: 10px;
    }

    .follow-label {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .footer-heading {
        margin-top: 15px;
        margin-bottom: 15px;

    }




    /* Programs Carousel Mobile (1 per row) */
    .card {
        flex: 0 0 100% !important;
    }

    /* Global Mobile Typography Scaling */
    h1,
    .hero-heading h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }

    h2,
    .hero-heading h2,
    .section-title h2 {
        font-size: 22px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    h3 {
        font-size: 20px !important;
        line-height: 1.4 !important;
    }

    .student-content h4 {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }

    h5,
    .program-content h5 {
        font-size: 16px !important;
        line-height: 1.4 !important;
    }

    h6 {
        font-size: 15px !important;
        line-height: 1.4 !important;
    }
}




/* ==========================================
   App Download Tooltip (Premium Styling)
   ========================================== */

.app-download-tooltip {
    position: absolute;
    display: none;
    background: rgba(255, 255, 255, 0.98);
    width: calc(100vw - 30px);
    max-width: 270px;

    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
    z-index: 99999;
    border: 1px solid var(--color-white);
    right: 180px;
    margin-top: 20px !important;
    transform: translateX(-50%) !important;


}

.app-download-tooltip.show {

    display: block;
    animation: tooltipShow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}



@keyframes tooltipShow {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Tooltip Arrow pointing to button center
.app-download-tooltip::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: var(--arrow-left, 50%);
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #F2B705 transparent;
} */

.app-download-close {
    position: absolute;
    top: 0px;
    right: 3px;

    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent !important;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.app-download-close:hover {
    background: #F2B705;
    color: #000;
    transform: scale(1.1);
}

.app-download-content {
    text-align: center;
}

.app-download-text {
    font-family: Sora;
    font-weight: 400;
    font-style: Regular;
    font-size: 10px;
    color: #000000;
    margin-bottom: 14px;
    line-height: 14px;
    max-width: 216px;
    text-align: left;
}



.app-download-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-bottom: 18px;

    border-bottom: 4px solid transparent;

    border-image: linear-gradient(90deg,
            rgba(20, 90, 20, 0.5) 0%,
            #2E8B2E 33%,
            #3FA535 66%,
            #5FB84D 100%);

    border-image-slice: 1;
}

.app-download-badges .badge-link {
    display: inline-block;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
    border-radius: 6px;
}

.app-download-badges .badge-link:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
}

.app-download-badges .badge-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
}

.app-download-title {
    font-family: var(--font-heading, 'Sora', sans-serif);
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(90deg, #145A14 0%, #3FA535 100%);

    -webkit-text-fill-color: transparent;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


@media (max-width:1550px) {
    .app-download-tooltip {

        right: 0px;
        transform: translateX(-40%) !important;
    }

}


@media (max-width:1420px) {
    .card-main-box {

        height: 272px;
    }

    .enquiry-wrapper {
        width: 80%;
        bottom: 55px;

    }

}


@media (max-width:1200px) {
    .app-download-tooltip {
        margin-top: 8px !important;
        right: 0px;
    }

    .about-gku-heading h2 {
        font-size: 31px;
        line-height: 41px;
    }

    .about-gku-heading p {
        font-weight: 400;
        color: var(--color-text);
        line-height: 23px;
        font-size: 14px;
    }

    .announcement-right {
        width: 68%;

    }

    .announcement-left {
        width: 31%;

    }

    .enquiry-title h3 {

        font-size: 18px;
        font-weight: 600;
        padding: 4px 20px;
        border-radius: 14px 14px 0 0;

    }

    .enquiry-wrapper {

        padding: 10px 12px 10px;

        bottom: 48px;

    }




}

@media (max-width: 991px) {



    /* Topbar & Navbar */
    .topbar {
        height: 78px;
        background: var(--color-heading);
        padding: 10px 0;
    }

    /* .topbar::before,
    .topbar::after {
        display: none;
     
    } */

    .follow-label {

        font-size: 12px;


    }

    .topbar-inner {

        align-items: center;
        gap: 15px;
        padding: 5px 0;
    }

    .topbar-right {
        display: flex;
        flex-direction: row;

        justify-content: center;
        gap: 15px;
    }


    .navbar-wrapper {
        top: -25px;
    }

    .social-icons a {
        width: 22px;
        height: 22px;

        font-size: 12px;
    }

    .nav-links {
        gap: 15px !important;
    }

    .topbar-right .contact-item {

        gap: 4px;

        font-size: 11px;

    }


    .nav-logo img {
        height: 20px !important;
    }

    .nav-links a {
        font-size: 10px !important;
    }

    .btn-login,
    .btn-login2 {
        padding: 8px 10px !important;
        font-size: 10px !important;
    }

    /* Fix Navbar Wrapper Overlap */
    /* .navbar-wrapper {
        position: static !important;
        background: var(--color-white);
        margin: 0 !important;
        top: auto !important;
    }

    .navbar-innner {
        height: auto !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    } */

    .navbar-wrapper .navbar {
        padding: 8px 10px !important;
    }

    /* .hero-section .carousel {
        position: static;
    } */

    .hero-swiper-btn {
        width: 36px !important;
        height: 36px !important;

    }

    .about-gku-heading h2 {
        font-size: 22px;
        line-height: 32px;
    }

    .about-gku-heading p {
        font-weight: 400;
        color: var(--color-text);
        line-height: 20px;
        font-size: 12px;
    }

    .about-text h4 {
        font-weight: 600;
        font-size: 16px;
        line-height: 23px;
        color: #000000;
        margin-bottom: 0px !important;
    }

    .about-text p {
        color: var(--color-text);
        font-size: 12px;
        line-height: 18px;
    }

    .heading-legacy h4 {
        font-size: 27px;
        line-height: 35px;
        padding: 10px 0;
    }

    .heading-legacy p {
        font-weight: 400;
        font-size: 13px;
        color: var(--color-text);
        line-height: 23px;

    }

    .recognitions-title p {
        font-size: 14px;
        padding-bottom: 10px;
    }

    .recognitions-title h2 {

        font-size: 30px;
        line-height: 42px;
        color: var(--color-heading);
        padding-bottom: 10px;
    }

    .Globally-card h2 {
        font-size: 20px;
        line-height: 30px !important;
        padding: 10px 0 !important;
    }

    .card {
        flex: 0 0 calc(50% - 15px) !important;
    }

    /* Learn, Connect & Grow */
    .student-club {
        margin-bottom: 20px;
    }

    .learn-img {
        margin-top: 30px;
        text-align: center;
        aspect-ratio: 2 / 1;

    }

   

    .experience-box p {
        font-size: 14px;
    }



    .main-footer {
        padding-top: 25px;
        text-align: center;
    }

    .footer-about p {
        margin: 0px;
    }

    .info-item {
        justify-content: center;
        text-align: center;
        margin-bottom: 15px;
    }

    .phone-item {
        justify-content: center;
        text-align: center;
    }

    .footersocial-icons {
        justify-content: center;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .student-club {

        min-height: 150px;
    }

    .announcement-text {
        font-size: 12px;
    }

    .card-main-box {
        height: 220px;
    }

    .hero-section {
        padding-bottom: 44px !important;
    }

    .enquiry-wrapper {
        width: 80%;
        bottom: 55px;

    }

    .enquiryitem {
        padding: 0px !important;
    }

    .about-gku {
        padding: 60px 0 40px 0;
    }



    .announcement-arrowprev {
        margin-left: 4rem;
    }

    .hero-section {
        height: 100%;
    }

    .hero-img {
        width: 100%;
        height: 100%;

    }


}


/* Header Responsive start */
@media (max-width: 767px) {

    /* Make hero section height auto on mobile so content can flow below it */
    .hero-section {
        height: auto;
        padding-bottom: 0;
    }

    .hero-swiper,
    .hero-swiper .swiper-slide {
        height: auto;
    }

    .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-img-mobile {
        display: block;
        height: calc(100dvh - 115px);
        object-fit: cover;
    }

    .hero-img-desktop {
        display: none;
    }

    section.learn-connect {
        padding: 0 0 24px 0;
    }

    section.enquirysection {
        padding: 30px 0 0 0;
    }

    .hero-section {
        margin-bottom: 0px;
    }

    .topbar {
        display: none;
    }

    .navbar-wrapper {
        position: static;
        background: var(--color-white) !important;
    }

    .navbar-wrapper .navbar {
        gap: 0px;
    }

    .navbar-innner {
        flex-direction: column;
        display: block;
        box-shadow: none;
        border-radius: 0px !important;
    }

    .nav-links,
    .btn-login {
        display: none;
    }

    .nav-links,
    .btn-login2 {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-logo img {
        width: auto;
        height: 35px !important;

    }


    .mobile-hero {
        height: calc(100dvh - 70px);
        object-fit: cover;
        object-position: top;
    }



    .enquiry-title h3 {
        font-size: 16px !important;
        text-align: center;
        box-shadow: none;
    }

    .hero-line {
        padding-top: 0px;
    }

    .hero-line span {

        font-size: 10px;

    }

    .hero-heading h2 {
        margin-bottom: 0px !important;
        padding: 10px 0 !important;
        font-weight: 800;
        font-size: 22px;
        line-height: 20px;

    }

    .hero-heading p {
        color: var(--color-white);
        font-weight: 300;
        font-size: 12px;
        line-height: 18px;
    }

    .hero-btn .primary-btn {
        padding: 12px 14px;
        font-size: 12px;

    }

    .hero-content {
        position: static;
    }

    /* Place enquiry box below hero on mobile (no overlap) */
    .enquiry-wrapper {
        position: relative !important;
        width: 90% !important;
        max-width: 760px !important;
        left: auto !important;
        transform: none !important;
        bottom: auto !important;
        margin: 16px auto 24px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .enquiry-title {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 0 0 12px 0 !important;
        text-align: center;
    }

    .enquiry-form {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }


    /* about Gku */

    .about-gku {
        padding: 40px 0 40px 0;
    }

    .about-gku-tag span {
        text-align: center;
        display: block;
        font-size: 10px;
        padding-bottom: 0px;
    }

    .about-gku-heading h2 {
        text-align: center;
        font-size: 19px !important;
        line-height: 28px !important;
        max-width: 258px !important;
        margin: 0 auto;
        padding: 10px 0;
        margin-bottom: 0px !important;
    }

    .about-gku-heading p {
        text-align: justify !important;
        font-family: Inter;
        font-size: 12px;
        line-height: 18px;
    }

    .about-icon-heading {
        display: flex;
        justify-content: flex-start !important;
        align-items: flex-start;
        gap: 16px;
    }

    .about-icon {
        width: 40px;
        height: 40px;

    }


    .about-icon i {
        font-size: 16px;
        color: var(--color-white);
        padding: 15px;
    }

    .about-text h4 {
        font-size: 14px !important;

    }

    .about-text p {
        color: var(--color-text);
        font-size: 10px !important;
        line-height: 14px !important;
    }

    .about-gku-img {

        margin-top: 36px !important;
    }

    .about-gku-img .main-img {
        width: 85% !important;
        margin: 0 auto !important;
    }

    .about-shape-top {
        width: 101px;
        height: 81px;
        top: -15px;
        left: -4px;
    }

    section.our-legacy {
        padding: 30px 0;
        position: relative;

    }

    .our-legacy-main {
        text-align: center;
        margin-bottom: 20px !important;

    }

    .heading-legacy h4 {
        font-size: 24px;
    }

    .heading-legacy p {
        text-align: center !important;
    }

    .heading-legacy .leg-btn {

        position: absolute;
        bottom: -49px;
        left: 0;
        right: 0;
        margin: 0 auto;
        max-width: 160px !important;
    }

    .experience-box {

        top: -24px;
        right: 48px;

        padding: 5px 10px;

    }

    .experience-box h3 {
        font-size: 20px;
        line-height: 0;
        margin-bottom: 0px;
    }

    .experience-box p {
        font-size: 12px !important;
        margin-bottom: 0px !important;
        padding-bottom: 5px !important;

    }

    .dot-pattern {

        left: 0px;
        bottom: 0px;
        width: 79px;
        height: 58px;

    }

    .wes-card {
        width: 118px;
        height: 117px;
        right: 0;
        bottom: 20px;
        border-radius: 40px;
        padding: 10px 12px;
    }

    .wes-card h4 {
        font-size: 10px !important;
        line-height: 100% !important;
    }

    .wes-card img {
        width: 140px;
        margin-bottom: 10px;
    }

    .section-line {
        width: 80%;
        margin: 30px;

    }

    .featured-container {
        width: 100%;
        margin: 0 auto;
    }

    .program-filters {

        margin-top: 0px;
    }

    .carousel-container {
        margin-top: 0.5rem;
    }

    .card-main-box {

        padding: 32px 10px 10px 10px;
        margin-top: 20px;

        height: 180px;
    }

    .program-filters .filter-btn {

        font-size: 10px;
        padding: 6px 8px;

    }

    .hero-section {
        padding-bottom: 0px !important;
    }

    .program-content h5 {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    .program-content .program-desc {
        font-size: 10px !important;
        line-height: 19px !important;
    }

    .featured-programs {
        position: relative;
        padding-bottom: 70px;
    }

    .featured-programs .nav-btn {
        position: absolute;
        top: auto;
        bottom: 0px;

        width: 36px;
        height: 36px;

        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px 0;
    }

    /* PREV */
    .featured-programs .nav-btn.prev {
        left: 50%;
        transform: translateX(-45px);
    }

    /* NEXT */
    .featured-programs .nav-btn.next {
        left: 50%;
        transform: translateX(0px);
    }


    .Globally-card {

        margin-bottom: 10px;
    }

    .learn-connect-title p {
        font-size: 14px;

    }

    .learn-connect-heading h2 {
        font-size: 20px !important;
        line-height: 28px;

        padding: 10px 0;
    }

    .learn-connect-heading p {
        font-size: 12px;
        line-height: 18px;
        text-align: justify;

    }

    .student-club {
        min-height: auto;
    }

    .student-content p {
        text-align: justify;
    }



    .footer-about p {
        margin: 0 auto 20px;

    }

    .info-item {
        justify-content: left;
        text-align: left;
        margin-bottom: 15px;
    }

    .footersocial-icons {
        justify-content: center;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .phone-item {
        justify-content: center;
        text-align: center;
    }

    .top-announcement {
        position: static;
    }



    .navbar-wrapper .navbar {
        padding: 15px 10px !important;
    }

    .grad-rate h4 {

        font-size: 20px;

        padding-bottom: 0px;

    }

    .grad-rate p {

        font-size: 10px;

    }

    .student-club {
        margin-bottom: 5px;
    }

    .main-footer {
        padding-top: 0;
        text-align: center;
    }

    .footer-about {
        text-align: center !important;
    }

    .Globally-card {
        display: none;
    }

    .mobile-card {
        display: none;
        margin-top: 15px;
    }

    .mobile-card.active {
        display: block;
    }

    .mobile-card-inner {
        background: var(--color-heading);
        border-radius: 16px;
        padding: 20px;

    }

    .mobile-card-inner img {
        width: 24px;
        height: 24px;
    }

    .image-globally {
        width: 60px;
        height: 60px;
        background-color: var(--color-primary);
        border-radius: 50%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-card-inner h2 {
        font-weight: 600;
        font-size: 12px;
        line-height: 100%;
        color: var(--color-primary) !important;
        text-align: center;
        padding: 10px 0;
    }

    .mobile-card-inner p {
        color: #ffffff;
        font-weight: 400;
        font-style: Regular;
        font-size: 10px;
        line-height: 14px;
        text-align: center;

    }

    .custom-buttons .info-btn {
        text-align: center;
    }

    .enquiry-form {
        grid-template-columns: repeat(1, 1fr);
    }

    .announcement-left {
        min-width: 40px;
    }

    .announcement-inner span {
        display: none;
    }

    .announcement-left {
        width: 5%;
    }

    .announcement-left::after {
        display: none;
    }

    .announcement-right {
        width: 95%;
        background-color: var(--color-primary);
        border-left: 1px solid #202020;

    }

    .announcement-text {
        font-size: 10px;

        color: #202020 !important;
        font-weight: 600;
    }

    .announcement-arrow {
        margin: 0 7px;

    }

    .announcement-content {

        gap: 0px;
    }

    .announcement-arrow {
        display: none;
    } 

    .enquiry-title {
        position: static;
        text-align: center;
        transform: none;
     }

     .mobile-contact a {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: #202020;
        font-size: 12px;
        font-weight: 600;
    }

    .mobile-contact i {
        color: #202020;
        width: 18px;
    }

    .mobile-social {
        margin-top: 10px;
        padding-top: 8%;
        border-top: 1px solid #d9d9d9;
    }

    .mobile-follow-text {
        display: block;
        margin-bottom: 12px;
        font-size: 14px;
        font-weight: 600;
        color: #202020;
    }

    .mobile-social-icons {
        display: flex;
        gap: 20px;

    }

    .mobile-social-icons a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f4b400;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 12px;
        padding: 0;
    }

    /* Left */
    .hero-swiper-prev {
        left: 15px !important;
    }

    /* Right */
    .hero-swiper-next {
        right: 15px !important;
    }



}

@media (max-width:575px) {

    .mobile-social-icons {
        display: flex;
        gap: 12px;

    }

    .mobile-social-icons a {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #f4b400;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 14px;
        padding: 0;
    }


    .logo-pocket::before {
        bottom: 25px;
        right: 85%;
        width: 50px;
        height: 33px;
    }

    .logo-pocket::after {
        bottom: 25px;
        left: 85%;
        width: 50px;
        height: 33px;
    }

    .logo-bubble {
        padding: 0px 16px;
        width: 240px;
        height: 92px;
        top: -7px;
        border: 14px solid var(--color-heading);
    }

    .card {
        flex: 0 0 calc(49% - 15px) !important;
    }

    .card-main-box {

        height: 240px;
    }


}


/* Responsive adjustments */
@media (max-width: 480px) {

    .learn-connect-container,
    .featured-container,
    .global-recognitons-container,
    .our-legacy-container,
    .about-gku-container,
    .hero-content {
        padding: 0 24px !important;
    }

  

    .navbar-innner {
        padding: 0px !important;
    }

    .app-download-tooltip {
        width: 290px;
        padding: 20px 12px 16px;
    }

    .app-download-text {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .app-download-badges {
        gap: 8px;
        margin-bottom: 14px;
    }

    .app-download-badges .badge-img {
        height: 32px;
    }

    .app-download-title {
        font-size: 15px;
    }

    .app-download-tooltip {
        right: 0px;
        transform: translateX(-10%) !important;
    }

    .filter-certificate {
        min-width: 0px !important;
    }

    .card-main-box {

        height: 290px;
    }
}

@media (max-width:391px) {
    .hero-btn {
        margin-top: 10px;
    }

    .enquiry-wrapper {
        padding: 14px 10px 10px;
    }

    .hero-btn .primary-btn {
        padding: 10px 10px;
        font-size: 12px;
    }

    .form-group input,
    .form-group select {
        height: 35px;
    }

}


@media (max-width: 360px) {
    .nav-logo img{
        width: auto ;
        height: 30px !important;
    }
}

/* responsive finish */