    nav {
        position: relative;
    }


    /* --- Mobile Navigation --- */
    @media (max-width: 768px) {
        nav {
            position: relative;
        }

        .hamburger {
            display: block;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger i {
            font-size: 1.8rem;
            color: var(--primary-blue);
            transition: transform 0.3s ease;
        }

        .hamburger.active i {
            transform: rotate(90deg);
            color: var(--action-orange);
        }

        .nav-links {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            right: 0;
            width: 100%;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding: 20px 0;
            border-radius: 0 0 15px 15px;
            z-index: 1000;
            gap: 0;
        }

        .nav-links.active {
            display: flex;
        }

        .nav-links li {
            width: 100%;
            text-align: center;
            margin: 0;
        }

        .nav-links li a {
            display: block;
            padding: 15px 20px;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            color: var(--primary-blue);
        }

        .nav-links li:last-child a {
            border-bottom: none;
        }

        .nav-links li a.btn-primary {
            display: inline-block;
            margin: 15px 0;
            width: auto;
        }
    }

    @media (min-width: 769px) {
        .hamburger {
            display: none;
        }
    }


    /* Hero Section Responsive */
    @media (max-width: 992px) {
        .hero-section {
            height: calc(100vh - 120px);
        }

        .hero-content h1 {
            font-size: 2.8rem;
        }

        .hero-video-container {
            width: 240px;
            height: 140px;
        }
    }

    @media (max-width: 768px) {
        .hero-section {
            height: calc(100vh - 140px);
            min-height: 600px;
        }

        .hero-content h1 {
            font-size: 2.2rem;
            margin-bottom: 30px;
        }

        .hero-content .btn-primary {
            padding: 14px 32px;
            font-size: 1rem;
        }

        .hero-video-wrapper {
            bottom: 20px;
            left: 20px;
        }

        .hero-video-container {
            width: 140px;
            height: 250px;
        }

        .hero-video-title {
            font-size: 0.85rem;
            padding: 6px 12px;
        }
    }

    @media (max-width: 480px) {
        .hero-section {
            min-height: 550px;
        }

        .hero-content h1 {
            font-size: 1.8rem;
            margin-bottom: 25px;
        }

        .hero-content .btn-primary {
            padding: 12px 28px;
            font-size: 0.95rem;
        }

        .hero-video-wrapper {
            bottom: 15px;
            left: 15px;
            right: 15px;
        }

        .hero-video-container {
            width: 160px;
            height: 95px;
        }

        .hero-video-title {
            font-size: 0.8rem;
        }
    }


    /* Sessions Section Responsive */
    @media (max-width: 992px) {
        .sessions-title {
            font-size: 2.2rem;
        }

        .sessions-title-frame {
            padding: 25px 40px;
        }

        .frame-corner {
            width: 25px;
            height: 25px;
        }

        .session-card {
            width: 270px;
            height: 380px;
        }

        .sessions-controls {
            padding: 0 30px;
        }
    }

    @media (max-width: 768px) {
        .sessions-section {
            padding: 60px 0;
        }

        .sessions-title {
            font-size: 1.7rem;
        }

        .sessions-title-frame {
            padding: 20px 30px;
        }

        .frame-corner {
            width: 20px;
            height: 20px;
            border-width: 2px;
        }

        .sessions-controls {
            flex-direction: column;
            align-items: center;
            /* Center align controls */
            gap: 25px;
            padding: 0 15px;
            width: 100%;
        }

        .sessions-arrows {
            align-self: center;
            /* Center arrows */
            margin-top: 10px;
        }


        .sessions-subtitle {
            font-size: 1.1rem;
        }

        .session-card {
            width: 250px;
            height: 350px;
        }

        .card-back-content {
            padding: 25px 20px;
        }

        .card-back-icon {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .session-card-back h3 {
            font-size: 1.3rem;
        }

        .session-card-back p {
            font-size: 0.9rem;
        }

        .sessions-carousel-track {
            padding-left: 25px;
            gap: 20px;
        }
    }

    @media (max-width: 480px) {
        .sessions-title {
            font-size: 1.4rem;
        }

        .sessions-title-frame {
            padding: 15px 20px;
        }

        .sessions-subtitle {
            font-size: 1rem;
        }

        .sessions-subtitle-icon {
            width: 30px;
        }

        .arrow-btn {
            width: 44px;
            height: 44px;
            font-size: 1rem;
        }

        .session-card {
            width: 230px;
            height: 320px;
        }

        .card-back-icon {
            width: 45px;
            height: 45px;
            font-size: 1rem;
            margin-bottom: 15px;
        }

        .session-card-back h3 {
            font-size: 1.15rem;
            margin-bottom: 10px;
        }

        .session-card-back p {
            font-size: 0.85rem;
            margin-bottom: 20px;
        }

        .session-tag {
            padding: 8px 20px;
            font-size: 0.8rem;
        }

        .sessions-carousel-track {
            padding-left: 20px;
            gap: 15px;
        }
    }


    /* Student Power Section Responsive */
    @media (max-width: 992px) {
        .student-power-title {
            font-size: 2.6rem;
        }

        .student-power-subtitle {
            font-size: 1.2rem;
        }

        .student-power-box {
            padding: 35px 50px;
        }
    }

    @media (max-width: 768px) {
        .student-power-section {
            min-height: 550px;
        }

        .student-power-content {
            margin-bottom: 8vh;
        }

        .student-power-box {
            padding: 30px 35px;
            margin-bottom: 30px;
        }

        .student-power-title {
            font-size: 2rem;
        }

        .student-power-subtitle {
            font-size: 1rem;
            letter-spacing: 1.5px;
        }

        .student-power-btn {
            padding: 16px 40px;
            font-size: 1.05rem;
        }

        .student-power-box::before,
        .student-power-box::after {
            width: 15px;
            height: 15px;
        }
    }

    @media (max-width: 480px) {
        .student-power-section {
            min-height: 500px;
        }

        .student-power-content {
            margin-bottom: 6vh;
            padding: 0 15px;
        }

        .student-power-box {
            padding: 25px 25px;
            margin-bottom: 25px;
            border-width: 2px;
        }

        .student-power-title {
            font-size: 1.6rem;
            line-height: 1.3;
        }

        .student-power-subtitle {
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .student-power-btn {
            padding: 14px 35px;
            font-size: 1rem;
        }

        .student-power-box::before,
        .student-power-box::after {
            width: 12px;
            height: 12px;
            border-width: 2px;
        }

        .student-power-box::before {
            top: -4px;
            left: -4px;
        }

        .student-power-box::after {
            bottom: -4px;
            right: -4px;
        }
    }


    /* Empowering Section Responsive */
    @media (max-width: 1200px) {
        .empowering-title {
            font-size: 2.8rem;
        }

        .empowering-container {
            gap: 50px;
        }
    }

    @media (max-width: 992px) {
        .empowering-section {
            min-height: auto;
            padding: 80px 0;
        }

        .empowering-container {
            flex-direction: column;
            padding: 0 30px;
            gap: 50px;
        }

        .empowering-content {
            flex: 0 0 100%;
            max-width: 100%;
            padding-right: 0;
            text-align: center;
        }

        .empowering-title {
            font-size: 2.5rem;
        }

        .empowering-accent {
            margin: 0 auto;
        }

        .empowering-accent::after {
            left: 90px;
        }

        .empowering-image-wrapper {
            flex: 0 0 100%;
            max-width: 600px;
        }

        .empowering-image-container::after {
            width: 60px;
            height: 60px;
            top: -6px;
            right: -6px;
        }
    }

    @media (max-width: 768px) {
        .empowering-section {
            padding: 60px 0;
        }

        .empowering-container {
            padding: 0 25px;
            gap: 40px;
        }

        .empowering-title {
            font-size: 2rem;
            margin-bottom: 25px;
        }

        .empowering-image-container {
            border-radius: 12px;
        }

        .empowering-image-container::before {
            border-radius: 12px;
        }

        .empowering-image-container::after {
            width: 50px;
            height: 50px;
            border-width: 3px;
            border-radius: 0 12px 0 0;
        }

        .empowering-image-reflection {
            height: 60px;
            border-radius: 0 0 12px 12px;
        }
    }

    @media (max-width: 480px) {
        .empowering-section {
            padding: 50px 0;
        }

        .empowering-container {
            padding: 0 20px;
            gap: 35px;
        }

        .empowering-title {
            font-size: 1.7rem;
            margin-bottom: 20px;
        }

        .empowering-title span {
            margin-top: 5px;
        }

        .empowering-accent {
            width: 60px;
            height: 4px;
        }

        .empowering-accent::after {
            left: 70px;
            width: 15px;
            height: 4px;
        }

        .empowering-image-container {
            border-radius: 10px;
        }

        .empowering-image-container::before {
            border-radius: 10px;
        }

        .empowering-image-container::after {
            width: 40px;
            height: 40px;
            top: -5px;
            right: -5px;
            border-width: 3px;
            border-radius: 0 10px 0 0;
        }

        .empowering-image-reflection {
            height: 50px;
            border-radius: 0 0 10px 10px;
        }
    }


    /* Footer Responsive */
    @media (max-width: 992px) {
        .footer-content {
            grid-template-columns: 1fr 1fr;
        }

        .footer-left,
        .footer-right {
            grid-column: span 2;
        }
    }

    @media (max-width: 576px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 30px;
            text-align: center;
        }

        .footer-left,
        .footer-right {
            grid-column: span 1;
        }

        .footer-logo,
        .contact-item {
            justify-content: center;
        }
    }

    /* --- ADDITIONAL RESPONSIVE QUERIES --- */

    /* Navigation & Footer Adjustments */
    /* Navigation & Footer Adjustments */
    @media (max-width: 768px) {
        /* Previously nav flex-direction rule removed in favor of hamburger logic above */

        .footer-content {
            display: flex !important;
            flex-direction: column !important;
            gap: 30px;
        }

        .footer-left,
        .footer-right,
        .footer-links {
            width: 100% !important;
            max-width: 100% !important;
            flex: none !important;
        }

        /* Podcast Section Responsive */
        .podcast-content {
            display: flex !important;
            flex-direction: column !important;
            gap: 30px;
        }

        .podcast-player-column,
        .podcast-list-column {
            flex: none !important;
            width: 100% !important;
            max-width: 100% !important;
        }

        .featured-podcast-card {
            padding: 20px;
        }

        .podcast-controls {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Superpower Section Responsive */
        .superpower-container {
            flex-direction: column;
            gap: 40px;
        }

        .superpower-image-wrapper,
        .superpower-content {
            width: 100%;
            max-width: 100%;
        }

        .superpower-image-wrapper {
            height: 300px;
            /* Limit height on mobile */
        }

        /* Mentor Section Responsive */
        .mentor-container {
            display: flex !important;
            flex-direction: column !important;
            gap: 30px;
            padding: 0 20px;
        }

        .mentor-left,
        .mentor-right {
            flex: none !important;
            width: 100% !important;
            max-width: 100% !important;
            padding: 0;
        }

        .mentor-callout-box {
            margin-bottom: 20px;
        }

        .workshop-title-block {
            text-align: center;
        }

        /* Contact Section Responsive */
        .contact-box {
            padding: 30px 20px;
            width: 100%;
        }

        .contact h2 {
            font-size: 2rem;
        }

        /* Company Verticals Responsive */
        #company-verticals>.container>div:last-child {
            grid-template-columns: 1fr !important;
        }
    }

    /* Grid & Milestones Adjustments */
    @media (max-width: 480px) {
        .grid-container {
            grid-template-columns: 1fr;
        }

        /* --- Milestones Enhancement --- */
        .milestones-awards-wrapper {
            padding: 60px 0;
            display: flex;
            justify-content: center;
            background: linear-gradient(to bottom, #f8f9fa, #ffffff);
        }

        .milestones-awards-container {
            max-width: 1200px;
            width: 90%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 51, 102, 0.15);
            border: 1px solid rgba(0, 51, 102, 0.05);
            position: relative;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .milestones-awards-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 70px rgba(0, 51, 102, 0.2);
        }

        .milestones-awards-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .milestones-awards-container:hover .milestones-awards-image {
            transform: scale(1.02);
        }

        /* Add a "Milestones" label overlay */
        .milestones-awards-container::after {
            content: 'Our Journey of Excellence';
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.9);
            padding: 10px 30px;
            border-radius: 50px;
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transition: opacity 0.4s ease, bottom 0.4s ease;
        }

        .milestones-awards-container:hover::after {
            opacity: 1;
            bottom: 40px;
        }
    }

    /* ========================================
   MOBILE-SPECIFIC FIXES (SMARTPHONES ONLY)
   These styles ONLY affect mobile devices
   Desktop layout remains UNTOUCHED
   ======================================== */

    /* Portfolio Header Mobile Fix */
    @media (max-width: 768px) {
        .portfolio-header {
            flex-direction: column;
            align-items: center;
            gap: 25px;
            margin-bottom: 40px;
        }

        .portfolio-title-wrapper {
            width: 100%;
            justify-content: center;
            text-align: center;
        }

        .portfolio-title {
            font-size: 2rem;
        }

        .portfolio-title-arrow {
            display: none;
            /* Hide arrow on mobile as it causes confusion */
        }

        .portfolio-nav {
            width: 100%;
            justify-content: center;
            gap: 15px;
        }

        .portfolio-nav-label {
            font-size: 0.85rem;
        }

        .portfolio-arrows {
            display: flex;
            gap: 12px;
        }
    }

    @media (max-width: 480px) {
        .portfolio-title {
            font-size: 1.7rem;
        }

        .portfolio-title-line {
            width: 30px;
        }
    }

    /* Superpower Section Title Mobile Fix */
    @media (max-width: 768px) {
        .superpower-title {
            font-size: 2.2rem;
            line-height: 1.3;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .superpower-title span {
            display: block;
            /* Force SUPERPOWER to new line if needed */
            margin-top: 8px;
            font-size: 2.2rem;
            letter-spacing: 1px;
        }
    }

    @media (max-width: 480px) {
        .superpower-title {
            font-size: 1.8rem;
        }

        .superpower-title span {
            font-size: 1.8rem;
            letter-spacing: 0.5px;
        }
    }

    /* Podcast Controls Mobile Fix */
    @media (max-width: 768px) {
        .podcast-controls {
            gap: 12px;
            flex-wrap: nowrap;
            /* Prevent wrapping */
            justify-content: center;
            padding: 0 10px;
        }

        .podcast-secondary-btn {
            width: 40px;
            height: 40px;
            font-size: 0.9rem;
            flex-shrink: 0;
            /* Prevent buttons from shrinking */
        }

        .podcast-primary-btn {
            width: 55px;
            height: 55px;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .podcast-secondary-btn .control-label {
            font-size: 0.55rem;
            bottom: 6px;
        }
    }

    @media (max-width: 480px) {
        .podcast-controls {
            gap: 8px;
            padding: 0 5px;
        }

        .podcast-secondary-btn {
            width: 36px;
            height: 36px;
            font-size: 0.85rem;
        }

        .podcast-primary-btn {
            width: 50px;
            height: 50px;
            font-size: 1.1rem;
        }

        .podcast-secondary-btn .control-label {
            font-size: 0.5rem;
            bottom: 5px;
        }
    }

    /* Additional mobile adjustments for better spacing */
    @media (max-width: 768px) {
        .superpower-container {
            padding: 0 20px;
        }

        .superpower-content {
            text-align: center;
        }
    }