@media (min-width: 769px) and (max-width: 992px) {

    .hero {
        height: auto;
        /* min-height: 40vh; */
        width: 100%;
    }

    .hero img {
        transform: translateY(0);
        object-fit: cover;
        object-position: center top;
    }

    /* Adjustments for iPads, landscape tablets, and mini-laptops */
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background-color: var(--golden);
        width: 100%;
        height: calc(100vh - 72px);
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 20px 0;
        font-size: 16px;
        color: #000;
    }

    .nav-menu a:hover {
        color: #fff;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .nav-menu a::after {
        display: none;
    }

    /* Register Button - Larger Tablet */
    .register-btn {
        padding: 15px 35px !important;
        font-size: 14px;
        border-radius: 8px;
        min-width: 120px;
        white-space: nowrap;
    }

    /* Nominate Button - Tablet */
    .nominate-btn {
        padding: 22px 45px;
        font-size: 16px;
        border-radius: 8px;
    }

    .hamburger .bar {
        background-color: #000;
    }

    .hamburger.active .bar {
        background-color: #000;
    }

    /* Intro Section - Tablet */
    .intro-section {
        padding: 50px 0;
    }

    .intro-section p {
        font-size: 17px;
        margin-bottom: 24px;
    }

    /* Section Heading - Tablet - Keep desktop design */
    .section-heading {
        margin: 50px 0;
    }

    .heading-line,
    .heading-line-light {
        width: 120px;
    }

    .heading-box,
    .heading-box-light {
        padding: 10px 40px;
        margin: 0 20px;
        height: auto;
        border-radius: 9px;
    }

    .heading-box h2,
    .heading-box-light h2 {
        font-size: 24px;
        line-height: 1.35;
        white-space: normal;
        text-align: center;
        word-wrap: break-word;
    }

    .heading-box::before,
    .heading-box-light::before {
        display: block;
        width: 42px;
        left: -18px;
        transform: skewX(25deg);
        border-radius: 12px 0 0 5px;
    }

    .heading-box::after,
    .heading-box-light::after {
        display: block;
        width: 42px;
        right: -18px;
        transform: skewX(-25deg);
        border-radius: 0 12px 5px 0;
    }

    /* Pillar Grid - Tablet */

    .pillar-card {
        grid-column: auto !important;
    }

    .pillar-card h4 {
        font-size: 22px;
    }

    .pillar-card p {
        font-size: 15px;
    }

    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillar-card:nth-child(4),
    .pillar-card:nth-child(5) {
        grid-column: auto;
    }

    /* Meet Section */
    .meet-section {
        padding: 10px 0;
        padding-bottom: 30px;
    }

    .partner-section {
        padding: 10px;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title span {
        font-size: 30px;
    }

    .attend-grid {
        grid-template-columns: 1fr;
    }

    .insight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insight-grid-dark {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-logo {
        width: 220px;
        height: 100px;
    }

    .accordion-container {
        width: 80%;
        margin: 0 auto;
    }

    .accordion-header {
        font-size: 18px;
        min-width: 100%;
    }

    /* Heading Style 4 - Tablet */
    .heading-style-4 {
        font-size: 32px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .heading-style-4::before,
    .heading-style-4::after {
        width: 200px;
        height: 3px;
    }

    .heading-style-4:hover::before,
    .heading-style-4:hover::after {
        width: 400px;
        height: 4px;
    }

    /* Heading Style 4 Dark - Tablet */
    .heading-style-4-dark {
        font-size: 32px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .heading-style-4-dark::before,
    .heading-style-4-dark::after {
        width: 200px;
        height: 3px;
    }

    .heading-style-4-dark:hover::before,
    .heading-style-4-dark:hover::after {
        width: 400px;
        height: 4px;
    }

}

@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        height: auto;
        /* min-height: 40vh; */
        width: 100%;
    }

    .hero img {
        transform: translateY(0);
        object-fit: cover;
        object-position: center top;
    }

    /* Navigation */
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background-color: var(--golden);
        width: 100%;
        height: calc(100vh - 72px);
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 18px 0;
        font-size: 14px;
        color: #000;
    }

    .nav-menu a:hover {
        color: #fff;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .nav-menu a::after {
        display: none;
    }

    /* Register Button - Mobile */
    .register-btn {
        padding: 12px 26px !important;
        font-size: 12px;
        border-radius: 6px;
        min-width: 90px;
        white-space: nowrap;
    }

    /* Nominate Button - Mobile */
    .nominate-btn {
        padding: 18px 35px;
        font-size: 14px;
        border-radius: 6px;
    }

    .hamburger .bar {
        background-color: #000;
    }

    .logo {
        padding: 6px 12px;
        height: 90px;
    }

    .summit-logo-img {
        height: 55px;
    }

    /* Intro Section */
    .intro-section {
        padding: 40px 0;
    }

    .intro-section p {
        font-size: 16px;
        margin-bottom: 20px;
        text-align: left;
    }

    .read-more-container {
        text-align: center;
        margin-top: 30px;
    }

    .btn-read-more {
        padding: 12px 30px;
        font-size: 14px;
    }

    /* Section Heading - Keep desktop design */
    .section-heading {
        margin: 30px 0;
    }

    .heading-box,
    .heading-box-light {
        padding: 10px 25px;
        margin: 0 12px;
        height: auto;
        border-radius: 8px;
    }

    .heading-box h2,
    .heading-box-light h2 {
        font-size: 18px;
        line-height: 1.35;
        white-space: normal;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .heading-box::before,
    .heading-box-light::before {
        display: block;
        width: 32px;
        left: -14px;
        transform: skewX(20deg);
        border-radius: 10px 0 0 4px;
    }

    .heading-box::after,
    .heading-box-light::after {
        display: block;
        width: 32px;
        right: -14px;
        transform: skewX(-20deg);
        border-radius: 0 10px 4px 0;
    }

    /* Pillar Grid */
    .pillar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

    .pillar-card {
        grid-column: auto !important;
        padding: 16px;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .card-content {
        position: static;
        padding: 20px 12px 12px 12px;
        margin-top: 5px;
    }

    .pillar-card h4 {
        font-size: 20px;
        margin-bottom: 15px;
        font-weight: 800;
    }

    .pillar-card p {
        font-size: 15px;
    }

    .pillar-footer p {
        font-size: 18px;
        text-align: center;
    }

    /* Meet Section */
    .meet-section {
        padding: 40px 0;
        /* padding-bottom: 30px; */
    }

    .meet-section-second {
        padding-top: 10px;
        padding-bottom: 40px;

    }

    .meet-content h2 {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .meet-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .meet-list li {
        font-size: 16px;
        padding-left: 32px;
    }

    .meet-list li::before {
        width: 20px;
        height: 20px;
        font-size: 13px;
    }

    /* Register Button - Tablet */
    .register-btn {
        padding: 14px 30px !important;
        font-size: 14px;
        border-radius: 8px;
        min-width: 110px;
        white-space: nowrap;
    }

    /* Partner Section */
    .partner-section {
        padding-top: 10px;
        padding-bottom: 40px;
    }

    /* Partner Grid */
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        width: 100%;
    }

    .section-title::before,
    .section-title::after {
        display: none;
    }

    .section-title span {
        width: 100%;
        text-align: center;
        font-size: 24px;
    }

    .section-desc {
        font-size: 16px;
    }

    .partner-card {
        padding: 25px 20px;
    }

    .partner-card h4 {
        font-size: 20px;
    }

    .partner-card p {
        font-size: 15px;
    }

    /* Attend Grid */
    .attend-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
    }

    .card-title {
        font-size: 18px;
    }

    .card-body {
        padding: 18px 20px;
        font-size: 16px;
    }

    /* Insight Grid */
    .insight-grid,
    .insight-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }


    .insight-card {
        padding: 25px 18px;
    }

    .insight-card p {
        font-size: 16px;
    }

    /* Insight Grid Dark */
    .insight-grid-dark {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 28px;
        justify-content: center !important;
    }

    .insight-card-dark {
        padding: 25px 18px;
    }

    .insight-card-dark p {
        font-size: 16px;
    }

    /* Quote */
    .quote-box {
        margin-top: 50px;
    }

    .quote-content {
        padding: 18px 38px 16px;
    }


    .quote-text {
        font-size: 18px;
    }

    .quote-footer {
        font-size: 18px;
    }

    .quote-left,
    .quote-right {
        font-size: 40px;
    }

    /* Partner Logo */
    .partner-logo {
        width: 200px;
        height: 90px;
    }

    .partner-row {
        gap: 25px;
    }

    /* Footer */
    .footer {
        padding: 50px 0;
    }

    .footer-box {
        flex-direction: column;
        gap: 30px;
        padding: 25px 30px;
    }

    .footer-box h3 {
        font-size: 24px;
    }

    .footer-links {
        flex-wrap: wrap;
        /* justify-content: center; */
    }

    .footer-links li {
        font-size: 16px;
    }

    .register-btn {
        padding: 13px 28px !important;
        font-size: 13px;
        border-radius: 8px;
        min-width: 100px;
        white-space: nowrap;
    }

    .accordion-container {
        width: 80%;
        margin: 0 auto;
    }

    .accordion-header {
        font-size: 18px;
        min-width: 100%;
    }

    .accordion-content p {
        font-size: 14px;
    }

    /* Heading Style 4 - Small Tablet */
    .heading-style-4 {
        font-size: 28px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .heading-style-4::before,
    .heading-style-4::after {
        width: 150px;
        height: 3px;
    }

    .heading-style-4:hover::before,
    .heading-style-4:hover::after {
        width: 300px;
        height: 4px;
    }

    /* Heading Style 4 Dark - Small Tablet */
    .heading-style-4-dark {
        font-size: 28px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .heading-style-4-dark::before,
    .heading-style-4-dark::after {
        width: 150px;
        height: 3px;
    }

    .heading-style-4-dark:hover::before,
    .heading-style-4-dark:hover::after {
        width: 300px;
        height: 4px;
    }

}

@media (max-width: 480px) {
    .hero {
        height: auto;
        /* min-height: 40vh; */
        width: 100%;
    }

    .hero img {
        transform: translateY(0);
        object-fit: cover;
        object-position: center top;
    }


    /* Hero Video - Mobile */
    .hero-eduhonour .hero-video-desktop {
        display: none;
    }

    .hero-eduhonour .hero-video-mobile {
        display: block;
    }

    /* Navigation */
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background-color: var(--golden);
        width: 100%;
        height: calc(100vh - 72px);
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
        font-size: 13px;
        color: #000;
    }

    .nav-menu a:hover {
        color: #fff;
        background-color: rgba(0, 0, 0, 0.1);
    }

    .nav-menu a::after {
        display: none;
    }

    .hamburger .bar {
        background-color: #000;
        width: 22px;
        height: 2.5px;
    }

    .logo {
        padding: 5px 10px;
        height: 80px;
    }

    .summit-logo-img {
        height: 50px;
    }

    /* Section Heading - Small Mobile */
    .section-heading {
        margin: 30px 0;
    }

    .heading-line,
    .heading-line-light {
        display: none;
    }

    .heading-box,
    .heading-box-light {
        padding: 10px 20px;
        margin: 0 14px;
        height: auto;
        border-radius: 7px;
    }

    .heading-box h2,
    .heading-box-light h2 {
        font-size: 16px;
        line-height: 1.35;
        white-space: normal;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding-bottom: 2px;
    }

    .heading-box::before,
    .heading-box-light::before {
        display: block;
        width: 36px;
        left: -12px;
        transform: skewX(18deg);
        border-radius: 8px 0 0 3px;
    }

    .heading-box::after,
    .heading-box-light::after {
        display: block;
        width: 36px;
        right: -12px;
        transform: skewX(-18deg);
        border-radius: 0 8px 3px 0;
    }

    /* Intro Section - Small Mobile */
    .intro-section {
        padding: 30px 0;
    }

    /* DESCRIPTION */
    .section-desc {
        font-size: 14px;
    }

    .intro-section p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .btn-read-more {
        padding: 10px 24px;
        font-size: 13px;
    }

    /* Pillar Grid - Small Mobile */
    .pillar-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin-top: 30px;
    }

    .pillar-card {
        grid-column: auto !important;
        position: relative !important;
        padding: 16px;
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    /* 2. Break out of absolute positioning so long text doesn't overflow */
    .card-content {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        padding: 20px 12px 12px 12px;
        margin-top: 5px;
    }

    .card-bg {
        position: absolute !important;
        inset: 0 !important;
        height: 25% !important;
    }

    /* 3. Mobile Typography Scaling */
    .pillar-card h4 {
        font-size: 18px;
        /* Scales down from 24px so headings don't take up 4-5 lines */
        margin-bottom: 10px;
        font-weight: 800;
    }

    .pillar-card p {
        font-size: 14px;
        /* Scales down from 16px for comfortable mobile reading */
        line-height: 1.45;
        text-align: center;

    }

    .pillar-footer {
        margin-top: 20px;
        text-align: center;
    }

    .pillar-footer p {
        font-size: 14px;
        font-style: italic;
        text-align: center;
    }

    .meet-section {
        padding: 10px 0;
        padding-bottom: 30px;
    }

    .meet-content h2 {
        font-size: 32px;
        font-weight: 900;
        margin-bottom: 20px;
    }

    .meet-wrapper {
        /* Switch from 2 side-by-side columns to 1 stacked column */
        grid-template-columns: 1fr;

        /* Reduce the massive 70px desktop gap to a tight mobile spacing */
        gap: 30px;

        /* Optional: Add slight horizontal padding if your parent container lacks it */
        padding: 0 15px;
    }

    .meet-list li {
        font-size: 14px;
        padding-left: 28px;
    }

    .meet-list li::before {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }

    .meet-section-second {
        padding-top: 0px;
        padding-bottom: 20px;
    }

    /* TITLE */
    .card-title {
        font-size: 18px;
    }

    /* BODY */
    .card-body {
        padding: 14px 16px;
        font-size: 14px;
    }

    /* Attend Grid - Small Mobile */
    .attend-grid {
        grid-template-columns: 1fr !important;
    }

    .partner-card {
        padding: 22px 16px;
    }

    .partner-card h4 {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .partner-card p {
        color: #f5f5f5;
        font-size: 14px;
        line-height: 1.4;
    }



    /* Insight Grid - Small Mobile */
    .insight-grid,
    .insight-grid-4 {
        grid-template-columns: 1fr !important;
    }

    .insight-card {
        border-radius: 10px;
        padding: 22px 12px;
    }

    /* TEXT */
    .insight-card p {
        font-size: 14px;
        line-height: 1.4;
    }

    /* Insight Grid Dark - Small Mobile */
    .insight-grid-dark {
        grid-template-columns: 1fr !important;
    }

    .insight-card-dark {
        border-radius: 10px;
        padding: 22px 12px;
    }

    /* TEXT */
    .insight-card-dark p {
        font-size: 14px;
        line-height: 1.4;
    }

    .quote-content {
        padding: 18px 38px 16px;
    }

    .quote-text {
        font-size: 16px;
        line-height: 1.4;
    }

    .quote-author {
        font-size: 16px;
    }

    .quote-footer {
        line-height: 1.4;
        font-size: 16px;
    }

    /* Partner Section  */
    .partner-section {
        padding-top: 10px;
        padding-bottom: 30px;
    }

    /* Partner Grid */
    .partner-grid {
        grid-template-columns: 1fr !important;
    }

    .partner-category {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    /* Extended Content */
    .extended-content {
        /* padding: 20px; */
        margin-top: 20px;
    }

    .extended-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Footer */
    .footer {
        padding: 40px 0;
    }

    .footer-box {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }

    .footer-box h3 {
        font-size: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        /* justify-content: center; */
        gap: 8px;
    }

    .footer-links li {
        font-size: 14px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    /* Register Button - Mobile */
    .register-btn {
        padding: 12px 26px !important;
        font-size: 12px;
        border-radius: 6px;
        min-width: 90px;
        white-space: nowrap;
    }

    .accordion-container {
        width: 80%;
        margin: 0 auto;
    }

    .accordion-item {
        margin: auto;
        margin-bottom: 20px;
    }

    .accordion-header {
        font-size: 18px;
        min-width: 100%;
    }


    .accordion-content p {
        font-size: 12px;
    }

    /* Heading Style 4 - Mobile */
    .heading-style-4 {
        font-size: 24px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .heading-style-4::before,
    .heading-style-4::after {
        width: 120px;
        height: 3px;
    }

    .heading-style-4:hover::before,
    .heading-style-4:hover::after {
        width: 200px;
        height: 4px;
    }

    /* Heading Style 4 Dark - Mobile */
    .heading-style-4-dark {
        font-size: 24px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .heading-style-4-dark::before,
    .heading-style-4-dark::after {
        width: 120px;
        height: 3px;
    }

    .heading-style-4-dark:hover::before,
    .heading-style-4-dark:hover::after {
        width: 200px;
        height: 4px;
    }


}