/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    body {
        padding: 0;
        background: linear-gradient(135deg, #fdf8e1 0%, #e1f5fe 100%);
        font-family: 'Poppins', sans-serif;
    }
    html, body {
        margin: 0 !important;
        width: 100%;
        min-height: 100%;
        overflow-x: hidden;
    }
    :root {
        --primary-blue: #1e56a0;
        --light-blue: #4a90e2;
        --yellow: #ffe600;
        --yellow2: #e6a832;
        --white: #ffffff;
        --gray-light: #f5f5f5;
        --gray-dark: #333333;
        --bottom-nav-height: 65px;
        --orange:#ebc22d;
        --lime: #b8d94b;
        --purple: #6102bc;
        --orange2: #f28706;
    }
/* ============================================
   BUTTONS
   ============================================ */
    .btn-blue{
        display: inline-block;
        background: var(--primary-blue);
        color: var(--white);
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 25px rgba(30, 86, 160, 0.2);
        border: none;
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
    }
    .btn-blue.active{
        color: var(--yellow2);
    }
    .btn-white{
        display: inline-block;
        background: var(--white);
        color: var(--primary-blue);
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 25px rgba(30, 86, 160, 0.2);
        border: none;
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
    }
    .btn-blue:hover, .btn-white:hover{
        transform: scale(1.01);
        filter: brightness(1.05);
    }
    .arrow {
        background: var(--yellow2);
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 10px;
        vertical-align: middle;
    }
    .arrow svg {
        width: 16px; 
        height: 16px;
        display: block;
        overflow: visible; 
    }
/* ============================================
   FONT STYLING
   ============================================ */
    .section-title {
        font-size: 34px;
        font-weight: 850;
        text-transform: uppercase;
        letter-spacing: -1px;
        color: var(--primary-blue);
    }
    .second-section-title {
        color:var(--primary-blue); 
        font-size: 20px;
        font-weight: 550;
    }
    .user-info {
        display: flex; 
        align-items: center; 
        gap: 20px; 
        margin-bottom: 0px;
    }
    .name{
        margin: 0; 
        line-height: 1.2;
        font-weight: 800;
    }
    .source{
        font-size: 14px; 
        color: #4e4f50ff; 
        opacity: 0.8; 
        margin-top: 2px;
    }
    .role-position{
        font-size: 20px; 
        color:  var(--orange); 
        opacity: 0.8; 
        margin-top: 2px;
        display:none;
    }
    .text-justify {
        text-align: justify;
        text-justify: inter-word;
        width: 300px;
    }
    .text-justify p {
        text-align: justify;
    }
    h3 span {
        display: block;
        margin-top: 5px;
    }
/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */
    .container {
        max-width: 1500px;
        margin: 0 auto;
        padding: 0;
    }
/* ============================================
   NAVIGATION BAR
   ============================================ */
    /*Top NavBar*/  
    .top-bar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 90px;
        background: transparent;
        display: flex;
        justify-content: flex-start;
        gap: 0;
        align-items: center;
        padding: 10px 40px;
        z-index: 1000;
    }
    .top-bar-logo {
        height: 50px;
        width: auto;
    }
    .top-bar-actions {
        display: flex;
        gap: 15px;
        align-items: center;
        padding: 0;
    }
    .social-links {
        display: flex;
        gap: 10px;
        padding: 0;
    }
    .social-btn, .profile-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 38px;
        height: 38px;
        background: rgb(255, 255, 255);
        border-radius: 50%;
        color: var(--yellow2);
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1rem;
        font-weight: 900;
    }
    .social-btn:hover {
        background: var(--yellow2);
        color: white;
        transform: translateY(-3px);
    }
    /* Desktop NavBar*/
    .desktop-nav {
        display: flex;
        gap: 5px;
        align-items: center;
        margin-left: 40px;
        margin-right: auto;
    }
    .desktop-nav a {
        text-decoration: none;
        color: var(--primary-blue);
        font-weight: 600;
        font-size: 0.95rem;
        transition: color 0.3s;
        position: relative;
        padding: 5px 20px;
    }
    .desktop-nav a:hover {
        color: var(--primary-blue);
        background-color: var(--white);
        padding: 5px 20px;
        border-radius: 30px;
    }
    .desktop-nav a.active {
        color: var(--primary-blue);
        background-color: var(--white);
        padding: 5px 20px;
        border-radius: 30px;
    }
    /* Mobile NavBar (Bottom)*/
    .bottom-nav {
        position: fixed;
        bottom: 0.2px;
        left: 2px;
        right: 2px;
        height: 65px;
        background: rgba(255, 255, 255, 0.70);
        backdrop-filter: blur(20px); 
        -webkit-backdrop-filter: blur(15px);
        border-radius: 30px;
        display: none;
        justify-content: space-around;
        align-items: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 2000;
        opacity: 1;
        margin:5px 10px;
        padding: 20px 10px;
    }
    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #666;
        flex: 1;
        height: 100%;
        transition: all 0.3s;
        border-radius: 20px;
    }
    .bottom-nav-item.active {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-blue);
        border-radius: 25px; 
        padding: 28px 0px;
        
    }
    .bottom-nav-label {
        font-size: 11px;
        font-weight: 500;
        margin-top: 2px;
        display: block;
    }
/* ============================================
   PROFILE BUTTON & ITS DIALOGUE BOX
   ============================================ */
    .profile-btn {
        background: var(--white);
        color: var(--primary-blue);
        border: none;
    }
    .profile-btn:hover {
        background: var(--orange);
        color: var(--primary-blue);
        transform: translateY(-3px);
    }    
    .profile-dialog-box {
        position: relative;
        display: inline-block;
        padding: 0;
    }
    .dialog-box-content {
        display: none; 
        position: absolute;
        top: 100%; 
        margin-top: 10px;
        right: 0; 
        left: auto;
        transform: none;
        background-color: var(--white); 
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        z-index: 999;
        overflow: visible !important;
        text-align: center;
        border-radius: 15px;
        min-width: 220px;
    }
    /* THE TRIANGLE */
    .dialog-box-content::after {
        content: "";
        position: absolute;
        top: -4px;
        bottom: 100%;
        right: 5%; 
        width: 1px; 
        height: 0; 
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 10px solid var(--white);
    }
    .show {
        display: block !important;
    }
    .dialog-box-header {
        padding: 15px 10px 5px 10px;
        text-align: center;
        font-weight: bold;
        font-size: 14px;
        color: var(--primary-blue);
    }
    .dialog-logo {
        height: 30px;
        width: 30px;
        object-fit: contain; /* Ensures the logo doesn't look stretched */
    }
    .dialog-box-links a {
        color: var(--primary-blue);
        padding: 12px 10px;
        text-decoration: none;
        display: block;
        font-size: 12px;
    }
    .dialog-box-links a:hover {
        color: var(--primary-blue);
        background-color: hsla(212, 79%, 65%, 0.1);
        border-radius: 15px;
    }
    
/* ============================================
   SIGNUP
   ============================================ */
    .signup-login-form{
        align-items: center;
        justify-content: center;
        padding: 20px 50px;
        display: flex;
        font-family: 'Poppins', sans-serif; 
    }
    .input-group-2 {
        margin-bottom: 20px;
    }
    .input-group-2 label {
        display: block;
        font-weight: bold;
        color: var(--yellow2);
        margin-bottom: 8px;
        font-size: 20px;   
    }
    .btn-signup-login-container{
        align-items: center;
        text-align: center;
        padding: 20px 0;
    }
    .send-btn-2 {
        width: 70%;
        padding: 10px 20px;
        background-color: var(--lime);
        border: none;
        border-radius: 40px;
        color: var(--primary-blue);
        cursor: pointer;
        transition: 0.3s;
        font-size: 20px;
        font-weight: bold;
        font-family: 'Poppins', sans-serif;
    }
    .divider {
        display: flex;
        align-items: center;
        text-align: center;
        margin: 20px 0 30px 0;
        color: #888;
    }
    .divider::before, .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #ddd;
    }
    .divider:not(:empty)::before {
        margin-right: .5em;
    }
    .divider:not(:empty)::after {
        margin-left: .5em;
    }
    .g_id_signin {
        margin-bottom: 10px;
        display: flex;
        justify-content: center; 
    }
/* ============================================
   SECTION 1 -> HERO SECTION
   ============================================ */
    .hero-section {
        position: relative;
        height: 90vh;
        min-height: 700px;
        border-radius:0px 0px 80px 80px;
        margin: 0;
        overflow: hidden;
        display: flex;
        align-items: center;
    }
    .hero-main-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    .hero-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
        object-position: center;
    }
    .hero-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        width: 100%;
        height: 100%;
        padding: 100px 8% 0 8%;
        box-sizing: border-box;
        z-index: 5;
        gap: 20px;
    }
    .hero-content {
        flex: 1.2; 
        max-width: 1100px;
        padding-bottom: 10%;
        color: white;
        z-index: 6;
    }
    .hero-content h1 {
        font-size: clamp(2rem, 5vw, 4rem);
        line-height: 1.1;
        margin-bottom: 10px;
        font-weight: 800;
    }
    .yellow-text {
        color: var(--yellow);
        font-size: 35px;
        margin-bottom: 20px;
        font-weight: 600;
    }
    .tagline {
        font-size: 14px;
        font-weight: 550;
        margin-bottom: 40px !important;
    }
    .hero-image {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        height: 100%; 
        position: relative;
    }
    .hero-image img {
        max-height: 90vh; 
        width: auto;
        max-width: 100%;
        object-fit: contain;
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
        display: block;
    }
    /* Hero Carousel */
    .hero-slider-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
    }
    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.8s ease-in-out;
    }
    .hero-slide.active {
        opacity: 1;
        visibility: visible;
    }
    .carousel-bullets {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }
    .bullet {
    width: 10px;
            height: 10px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s ease; 
    }
    .bullet.active {
        background: var(--yellow2); 
    }

/* ============================================
   SECTION 2 -> POLAROID PROGRAMS SECTION
   ============================================ */
    /*Polaroids container*/
    .program-container {
        text-align: center;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 80px;
        padding: 20px;
        background: transparent;
    }
    .cards-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        height: 500px;
        margin-bottom: 10px;
    }
    .card {
        position: absolute;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(30, 86, 160, 0.1);
        overflow: hidden;
        cursor: pointer;
        width: 400px;
        height: 450px;
    }
    .side-card {
        padding: 0;
        margin: 0;
    }
    /* Card Image Container */
    .image-box {
        width: 100%;
        height: 86%;
        overflow: hidden;
        padding: 5px;
    }
    .side-card .image-box {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 5px;
        margin: 0;
    }
    .side-card .card-image,
    .center-card .card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
        border-radius: 16px;
    }
    .card:hover .image-box img {
        transform: scale(1.05);
        border-radius: 16px;
        padding: 5px;
    }
    /* Card Content Area */
    .card-content {
        padding: 25px 20px;
        text-align: center;
        height: 14%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .side-card .card-content {
        display: none !important;
    }
    .center-card .card-content {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        color: white;
        text-align: center;
    }
    /* Card Positions */
    .center-card {
        width: 400px;
        height: 500px;
        z-index: 10;
        left: 50%;
        transform: translateX(-50%) translateY(-20px); 
        top: 0;
        box-shadow: 0 25px 50px rgba(30, 86, 160, 0.25);
    }
    .left-card {
        left: 5%;
        transform: translateX(0) rotate(-8deg);
        z-index: 5;
        top: 30px;
        opacity: 0.9;
    }
    .right-card {
        right: 5%;
        transform: translateX(0) rotate(8deg);
        z-index: 5;
        top: 30px;
        opacity: 0.9;
    }
    .center-card .programs-title {
        color: #1e56a0;
        font-size: 24px;
        font-weight: 620;
        margin: 0 0 10px 0;
        letter-spacing: -0.5px;
        line-height: 1;
        display: block;
    }
    .center-card .card-title {
        display: block !important; 
        font-size: 24px;
        font-weight: 620;
        color: #1e56a0;
        margin: 0 0 10px 0;
    }
    .left-card .programs-title,
    .right-card .programs-title {
        display: none;
    }
    .center-card.showing-side-content .programs-title {
        display: block !important;
    }
    .side-card.showing-center-content .card-content {
        display: block !important;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        padding: 20px;
        color: white;
        text-align: center;
    }
    .side-card.showing-center-content .programs-title {
        color: #333;
        font-size: 24px;
        font-weight: 620;
        display: block !important;
    }
    .center-card.showing-side-content .card-content {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        color: white;
        text-align: center;
    }
    .button-container {
        text-align: center;
        margin-bottom: 20px;
        position: relative;
        z-index: 3;
        padding: 30px;
    }
/* ============================================
   SECTION 3 -> MEDIA SECTION
   ============================================ */
    .media-container {
        display: flex;
        justify-content: center; 
        align-items: center;
        padding: 20px 40px;
    }
    .space-span{
        margin-left: 12px;  
    }
    .media-featured-card {
        position: relative;
        width: 90%;
        max-width: 1100px;
        height: 550px;
        border-radius: 40px;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }
    .media-overlay-content {
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 40px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        box-sizing: border-box;
    }
    .media-text-left {
        color: white;
        text-align: left;
    }
    .media-text-left h3 {
        font-size: 32px;
        font-weight: 800;
        margin: 0 0 10px 0;
        line-height: 1.2;
        text-transform: uppercase;
    }
    .media-text-left p {
        font-size: 18px;
        font-weight: 500;
        margin: 0;
        opacity: 0.9;
    }
    /* See More Button */
    .see-more-pill {
        background-color: white;
        color: #3371b7;
        padding: 12px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    .see-more-pill:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
/* ============================================
   Section 4 -> ABOUT US
   ============================================ */
    .AboutUs {
        width: 100%;
        display: flex;
        justify-content: center; 
        align-items: center;     
        padding: 50px 0;
        box-sizing: border-box;
    }
    .aboutUs-container {
        width: 100%;            
        max-width: 1500px;
        height: auto;
        display: block;
    }
    .aboutUs-container img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 20px;     
    }
/* ============================================
   Section 5 -> FEEDBACK 
   ============================================ */
    .feedback-section {
        padding: 20px 25px;
        text-align: center;
    }
    .feedback-section-title p { 
        color: var(--primary-blue); 
        margin-bottom: 20px; 
        font-size: 20px;           
        font-weight: 600; 
    }
    .feedback-card-container {
        position: relative;
        max-width: 800px;
        margin: 60px auto;
        height: 200px;
    }
    .feedback-card {
        background: white;
        border-radius: 30px;
        padding: 40px;
        text-align: left;
        position: absolute;
        width: 100%;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.5s ease-in-out;
        font-size: 18px;
        color: var(--primary-blue);
    }
    /*Card stacking*/
    .stack-front {
        z-index: 10;
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
    .stack-mid {
        z-index: 5;
        opacity: 0.6;
        transform: rotate(4deg) scale(0.98);
    }
    .stack-back {
        z-index: 1;
        opacity: 0.3;
        transform: rotate(-5deg) scale(0.96);
    }
    /* Shuffle Animation */
    @keyframes shuffleToBack {
        0% { 
            transform: translateX(0) rotate(0deg); 
            z-index: 10;
        }
        50% { 
            transform: translateX(20%) rotate(5deg); 
            z-index: 10; 
        }
        51% { 
            z-index: 1; 
        }
        100% { 
            transform: translateX(0) rotate(-5deg) scale(0.96); 
            z-index: 1; 
        }
    }
    .is-shuffling {
        animation: shuffleToBack 0.5s ease-in-out forwards;
    }
    .avatar-icon-container {
        width: 70px; height: 70px;
        background-color: #ffffff;
        border-radius: 50%;
        display: flex; 
        justify-content: center; 
        align-items: center;
        color: var(--yellow2); 
        font-size: 30px; 
        border: 2px solid var(--yellow2);
    }
    .star { 
        color: var(--yellow2); 
        font-size: 24px; 
        margin-right: 2px; 
    }
    .feedback-navigation .nav-btn {
        cursor: pointer;
        display: inline-flex; 
        justify-content: center; 
        align-items: center;
        transition: 0.3s; 
        margin: 10px;
    }
/* ============================================
   Section 6 -> TEACHER 
   ============================================ */
    /*When card change, the footer/other section wouldnt jump*/
    .footer-blocker {
        width: 100%;
        height: 700px; 
        overflow: hidden;
        position: relative;
        display: flex;
        justify-content: center;
    }
    /* Section Container */
    .teacher-section {
        align-items: center;
        justify-content: center;
        display: flex;
        padding: 0px 20px;
        max-width: 1500px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        overflow: hidden;
        width:100%;
    }
    .title-wrapper {
        padding: 20px 20px;
        width: 100%;
        text-align: center;
        display: block;      
    }
    .teacher-card-container {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 25px;
        transition: all 0.5s ease;
        padding: 20px 20px;
        height:auto;
        width: 100%;
        overflow: hidden;
        min-height: 580px;
    }
    .teacher-card {
        background: white;
        border-radius: 25px;
        padding: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        height: 500px;
        width: 400px;
        flex-shrink: 0;
        display: flex;
        flex-direction: column-reverse;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin: 0;
        flex-shrink: 0;
    }
    .teacher-card.active {
        width: 400px;
        height: 600px;
        flex-direction: column;
        border: 3px solid white;
        transform: translateY(-10px);
    }
    .teacher-card.active .role-position {
        display: block;
    }
    .teacher-image-container {
        width: 100%;
        flex-grow: 1;
        border-radius: 20px;
        overflow: hidden;
        background-color: var(--yellow2);
        line-height: 0;
    }
    .teacher-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    /* Postion Details Styling */
    .teacher-details {
        text-align: left;
        padding: 15px 5px;
        color: var(--primary-blue);
        margin-top: 5px;
    }
    /* Navigation Arrows */
    .teacher-navigation {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        pointer-events: none;
        z-index: 100;
        padding: 0 40px;
    }
    .nav-btn {
        background: rgba(255,255,255,0.2);
        border: 3px solid white; 
        color: var(--orange);
        cursor: pointer;
        font-weight: 900; 
        font-size: 30px; 
        pointer-events: auto;
        border: 3px solid white; 
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }
    .nav-btn:first-child {
        transform: translateX(-20px);
    }
    .nav-btn:last-child {
        transform: translateX(20px);
    }
    .nav-btn:hover {
        background: var(--yellow2);
        color: white;
    }
/* ============================================
   Section 7 -> Footer
   ============================================ */
    /*Desktop Only*/
    .footer-section {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
    }
    .footer-container {
        width: 100%;
        max-width: 1500px;
        position: relative;
        display: block;
    }
    .footer-bg-img {
        width: 100%;
        height: auto;
        display: block;
    }
    .footer-content-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center; /* Vertical centering */
        padding: 0 5%;
        box-sizing: border-box;
        color: white;
        font-size: 18px;
    }
    .footer-col {
        flex: 1;
        padding: 10px;
        font-size: 14px;
    }
    .desc-col {
        padding: 10px;
        flex:1.2;
    }
    .links-col {
        display: flex;
        gap: 80px;
        padding: 20px;
    }
    .links-col a {
        display: block;
        color: white;
        text-decoration: none;
        margin-bottom: 8px;
    }
    .footer-section-2{
        padding: 20px;
        font-size: 14px; 
        max-width: 1500px;
        margin: 0 auto;
        color: var(--primary-blue);
    }
    .footer-top p {
        margin-bottom: 15px;
    }
    .footer-top a {
        text-decoration: none;
        color: var(--primary-blue); 
    }
    .footer-divider {
        border: 0;
        border-top: 1px solid #d2d2d7;
        margin: 15px 0;
    }
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap; 
    }
    .footer-copy p {
        margin: 0;
        display: inline-block;
    }
    .footer-links a {
        color: var(--primary-blue);
        text-decoration: none;
        margin: 0 5px;
    }
    .footer-links a:hover {
        text-decoration: underline;
    }
/*Mobile at responsive*/
/* ============================================
   PAGE-> EXHIBITS
   ============================================ */
    .exhibits-page{
        margin-top:0.3%;
        padding-left:10%;
        padding-right: 10%;
        padding-bottom: 0;
        padding-top: 5%;
        height: auto;
        margin-bottom: 0;
    }
    .exhibits-page-middle{
        padding:0 10%;
    }
    .floor-plan-container{
        height: auto;
        display: flex;
        justify-content: center; 
        align-items: center; 
        width: 100%;
        padding: 1% 10%;
    }
    .floor-plan-img{
        display: block;
    }
    .exhibits-inner-container {
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
        padding-top: 0;
    }
    .floor-plan-wrapper {
        padding: 0 20px;
        border-radius: 15px;
        margin-top: 2%;
        display: inline-block;
        width: 100%;
        box-sizing: border-box;
    }
    .floor-plan-img {
        width: 100%;
        height: auto;
        display: block;
    }
    .container-max{
        border-radius: 30px;
        padding: 0;
        height: 600px;
        width: 100%;
    }
    .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        align-items: start;
        padding:3% 1%;
        margin-bottom:5%;
    }
    .exhibit-card-white{
        background-color: var(--orange2);
        border-radius: 40px;
        padding: 0; 
        display: flex;
        flex-direction: column;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .inner-frame-white {
        width: 100%;
        aspect-ratio: 1 / 1;
        border: 8px solid var(--orange2);
        border-radius: 30px;
        overflow: hidden;
    }
    .inner-frame-white img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
        display: block;
    }
    .card-caption-orange {
        text-align: center;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
    }
    .card-caption-orange p {
        color: white;
        font-weight: bold;
        margin: 0;
        padding: 5% 10%;
    }
    .exhibit-card-white:hover .card-caption-orange,
    .exhibit-card-white:active .card-caption-orange {
        max-height: 150px;
        opacity: 1;
    }
    .exhibit-card-white:hover {
        transform: translateY(-10px);
    }
    .exhibit-card-orange{
        background-color: var(--purple);
        border-radius: 40px;
        padding: 0;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .inner-frame-orange {
        width: 100%;
        aspect-ratio: 1 / 1;
        border: 8px solid var(--purple);
        border-radius: 30px;
        overflow: hidden;
    }
    .inner-frame-orange img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
        display: block;
    }
    .card-caption-white {
        text-align: center;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
    }
    .card-caption-white p {
        color: var(--white);
        font-weight: bold;
        margin: 0;
        padding: 5% 10%;
    }
    .exhibit-card-orange:hover .card-caption-white,
    .exhibit-card-orange:active .card-caption-white {
        max-height: 150px; 
        opacity: 1;
        
    }
    .exhibit-card-orange:hover {
        transform: translateY(-10px);
    }
/* ============================================
   PAGE-> PROGRAMS
   ============================================ */
    .programs-page{
        margin-top:0.3%;
        padding-left:10%;
        padding-right: 10%;
        padding-bottom: 0;
        padding-top: 5%;
        height: auto;
        margin-bottom: 0;
    }
    .programs-inner-container {
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
        padding-top: 0;
    }
    .filter-classes-workshop {
        display: flex;
        gap: 15px;
        justify-content: flex-start;
        margin-bottom: 30px;
    }
    .classes-container {
        display: flex;
        overflow-x: auto; 
        scroll-behavior: auto;
        gap: 20px;
        padding: 80px 20px 20px 20px;
        scrollbar-width: none;
    }
    .classes-container::-webkit-scrollbar {
        display: none;
    }
    .classes-card {
        flex: 0 0 340px;
    }
    .classes-img {
        height: 250px;
        border-radius: 25px 25px 0 0;
        position: relative;
        margin: 0;
    }
    .classes-img img {
        position: absolute;
        bottom: 0; 
        left: 50%;
        transform: translateX(-50%);
        width: 100%; 
        height: auto;
        z-index: 2;
    }
    .classes-contents {
        padding: 30px 20px;
        text-align: left;
        background-color: var(--white);
        border-radius: 0 0 30px 30px;
    }
    .titles-contents {
        color: var(--primary-blue);
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    .description-contents {
        color: var(--yellow2); 
        font-size: 0.8em;
        font-weight: 510;
        line-height: 1.6;
        margin-bottom: 25px;
        min-height: 100px;
        text-align: justify;
        text-justify: inter-word; 
    }
    .button-signup {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        border: 2px solid var(--primary-blue);
        color: var(--primary-blue);
        padding: 8px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        width: 170px;
        font-size: 15px;
    }
    .slider-container {
        width: 80%;
        margin: 40px auto;
    }
    .slider-track {
        width: 100%;
        height: 8px;
        background:var(--white);
        border-radius: 10px;
        position: relative;
        cursor: pointer;
        overflow: hidden;
    }
    .slider-thumb {
        height: 100%;
        background: var(--primary-blue);
        width: 10%;
        border-radius: 10px;
        pointer-events: none;
    }
    .dropdown {
        position: relative;
        display: inline-block;
    }
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #ffffff;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 10;
        border-radius: 12px;
        margin-top: 10px;
        overflow: hidden;
        text-align: left;
    }
    .dropdown-content a {
        color: #3b71b9;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        font-size: 14px;
        transition: 0.3s;
    }
    .dropdown-content a:hover {
        background-color: #f1f1f1;
    }
    .show {
        display: block;
    }
    .arrow-down {
        width: 8px; 
        height: 8px; 
        border-right: 2px solid var(--yellow);
        border-bottom: 2px solid var(--yellow);
        display: inline-block;
        margin-left: 10px;
        transform: rotate(45deg) translateY(-2px);
    }
/* ============================================
   PAGE-> CONTACT US
   ============================================ */
    .email-form{
        align-items: center;
        justify-content: center;
        padding: 50px;
        display: flex;
        font-family: 'Poppins', sans-serif; 
    }
    .contact-container {
        background: rgba(255, 255, 255, 0.50);
        backdrop-filter: blur(20px); 
        -webkit-backdrop-filter: blur(15px);
        padding:80px;
        border-radius: 25px;
        max-width: 1200px;
        width: 100%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    .input-group {
        margin-bottom: 30px;
    }
    .input-group label {
        display: block;
        font-weight: bold;
        color: var(--yellow2);
        margin-bottom: 8px;
        font-size: 20px;
    }
    input, textarea {
        width: 100%;
        padding: 20px;
        border: none;
        border-radius: 10px;
        box-sizing: border-box;
        font-size: 14px;
        background-color: #fdfdfd;
        box-shadow: 0 10px 30px rgba(100, 100, 100, 0.1);
        color: var(--primary-blue);
        opacity: 1;           
        font-weight: 560;
    }
    input::placeholder, 
    textarea::placeholder {
        color: hsla(214, 68%, 37%, 0.76);      
        font-family: 'Poppins', sans-serif; 
        opacity: 1;           
        font-weight: 560;
    }
    textarea {
        width: 100%;
        padding: 20px;
        border: none;
        border-radius: 10px;
        box-sizing: border-box;
        font-size: 14px;
        background-color: #fdfdfd;
        color:var(--primary-blue);
        resize: none; 
        overflow-y: auto; 
        height: 120px;
        font-family: 'Poppins', sans-serif;  
    }
    .send-btn {
        width: 100%;
        padding: 20px;
        background-color: var(--lime);
        border: none;
        border-radius: 10px;
        color: var(--primary-blue);
        cursor: pointer;
        transition: 0.3s;
        font-size: 20px;
        font-weight: bold;
        font-family: 'Poppins', sans-serif; 
    }
    .send-btn:hover {
        background-color: #a5c73d;
    }
    .address-section {
        align-content: center;
        justify-content: center;
        display: flex;
        padding:50px 50px 0px 50px;
    }
    .address-container {
        text-align: center;
    }
    .contact-buttons-container {
        display: flex;
        gap: 20px;
        background: transparent;
        padding:0 30px 50px 30px;
        border-radius: 25px;
        width: 100%;
        justify-content: center;
    }
    .contact-pill-btn {
        display: flex;
        align-items: center;
        text-align: center;
        background-color: var(--primary-blue);
        color: white !important;
        text-decoration: none;
        padding: 8px 25px;
        border-radius: 50px;
        font-family: 'Arial', sans-serif;
        font-weight: 500;
        transition: transform 0.2s, background-color 0.2s;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .contact-pill-btn:hover {
        background-color: #1a56a6;
        transform: translateY(-2px);
    }
    .contact-buttons-container-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
        background: transparent;
        padding:0 30px 50px 30px;
        border-radius: 25px;
        width: 100%;
        align-items: center;
    }
    .contact-pill-btn-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between; 
        width: 100%;
        background-color: var(--primary-blue);
        color: white !important;
        text-decoration: none;
        padding: 8px 8px 8px 20px;
        border-radius: 50px;
        box-sizing: border-box;
    }
    .btn-text {
        margin-right: 15px;
        font-size: 14px;
    }
    .icon-circle {
        background-color: white;
        color: var(--primary-blue);
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        flex-shrink: 0;
    }
    /* Status Send */
    #loading-overlay {
        display: none; 
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 10000;
        justify-content: center;
        align-items: center;
    }
    .loading-box {
        background: #fff;
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        min-width: 250px;
    }
    .loader-circle {
        width: 50px; height: 50px;
        border: 5px solid #f3f3f3;
        border-top: 5px solid var(--primary-blue);
        border-radius: 50%;
        margin: 0 auto 15px;
        animation: spin 1s linear infinite;
    }
    #status-icon {
        display: none; 
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
    }
    #status-icon svg {
        width: 100%;
        height: 100%;
    }
    .loading-box {
        background: #fff;
        padding: 40px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        min-width: 280px;
    }
    @keyframes spin { 
        0% { 
            transform: rotate(0deg); 
        } 
        100% { 
            transform: rotate(360deg); 
        } 
    }
/* ============================================
   PAGE-> CAREER
   ============================================ */
    .careers-grid-section {
        padding: 2% 20px;
        background: transparent; 
    }
    .careers-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .career-card {
        background-color: #f1f4f9;
        padding: 25px;
        border-radius: 30px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        gap: 15px;
        transition: transform 0.3s ease;
    }
    .career-card h3 {
        color: var(--primary-blue);
        margin: 0;
        padding-left: 10px;
    }
    .inner-box {
        background-color: white;
        padding: 20px;
        border-radius: 20px;
        box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
    }
    .inner-box p {
        margin: 0;
        color: var(--primary-blue);
        line-height: 1.5;
        text-align: justify;
        text-justify: inter-word; 
        font-size: 14px;
    }
    .career-card.highlight-yellow {
        background-color: var(--yellow2);
    }
    .career-card.highlight-yellow h3 {
        color: white;
    }
    .career-card.highlight-blue {
        background-color: var(--primary-blue);
    }
    .career-card.highlight-blue h3 {
        color: white;
    }
    .inner-box.highlight-lime {
        background-color: rgb(210, 255, 47);
    }
    .inner-box.highlight-lime p {
        color: var(--primary-blue);
        font-weight: 600;
    }
    .career-card:hover {
        transform: translateY(-5px);
    }
    .apply-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 40px 20px;
        width: 100%;
    }
    .apply-pill-white, .apply-pill-green, .apply-pill-lime {
        display: block;
        width: 100%;
        padding: 18px 30px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 600;
        font-family: sans-serif;
        transition: transform 0.2s;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
    }
    .apply-pill-white {
        background-color: var(--white);
        color:var(--primary-blue);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    .apply-pill-green {
        background-color: var(--lime);
        color: var(--primary-blue);
    }
    .apply-pill-lime {
        background-color:rgb(210, 255, 47);
        color: var(--primary-blue);
    }
    .apply-pill-white:hover, .apply-pill-green:hover {
        transform: scale(1.01);
        filter: brightness(1.05);
    }
/* ============================================
   PAGE-> GALLERY
   ============================================ */
    .find-out-more-pill {
        display: block;
        width: 100%;
        padding: 10px 30px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 600;
        font-family: sans-serif;
        transition: transform 0.2s;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        background-color:var(--white);
        color:var(--primary-blue);
        border: 1px solid rgba(255, 255, 255, 0.3);
        cursor: pointer;
    }
    .find-out-more-pill-lime {
        display: block;
        width: 100%;
        padding: 10px 30px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 600;
        font-family: sans-serif;
        transition: transform 0.2s;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        background-color: rgb(210, 255, 47);
        color:var(--primary-blue);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    .fancybox__content {
        border-radius: 30px !important;
        overflow: hidden !important;
        position: relative !important; 
    }
    .fancybox__image {
        border-radius: 30px !important;
    }
    .fancybox__content::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60%;
        background: linear-gradient(to top, rgba(0, 30, 60, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
        pointer-events: none;
        z-index: 2;
    }
    .fancybox__caption {
        position: absolute !important;
        bottom: 60px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        z-index: 999 !important; 
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        text-align: center !important;
        font-size: 34px !important;
        font-weight: 850 !important;
        text-transform: uppercase !important;
        letter-spacing: -1px !important;
        color: #ffffff !important;
        background: none !important;
        padding: 0 !important;
    }
    .f-carousel__dots {
        position: absolute !important;
        bottom: 25px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 1000 !important;
        display: flex !important;
    }
    .fancybox__toolbar {
        position: absolute !important;
        top: 20px !important;
        right: 20px !important;
        z-index: 1001 !important;
    }
    .fancybox__backdrop {
        background: linear-gradient(135deg, #fdf8e1 0%, #e1f5fe 100%) !important;
        opacity: 0.9 !important;
    }
/* ============================================
   PAGE-> SHOP
   ============================================ */
    .main-container {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 4% 20px;
    }
    .top-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        width: 100%;
    }
    .bottom-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 20px;
    }
    .shop-card {
        border-radius: 20px;
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden;
        min-height: 350px;
        display: flex;
        align-items: flex-end;
        text-align: center;
        justify-content: center;  
        min-width: 350px;
    }
    .main-banner {
        background-image: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: flex-end; 
        height: 500px;
    }
    .banner-content {
        display: flex;
        flex-direction: column;
        align-items: center;    
        justify-content: flex-end; 
        min-height: auto; 
        padding: 0 10% 2% 10%; 
        gap: 5px; 
        width: 100%;
    }
.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.shop-item-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    z-index: 0;
}
    .card-content {
        position: relative;
        z-index: 1;
        color: white;
        align-items: center;
        padding:22% 10%;
    }
    .card-content-h3 {
        font-size: 20px;
        font-weight: 550;
        color: white;
    }
    .card-content-p {
        font-size: 18px;
    }
    .side-column {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .horizontal-card {
        background: white;
        border-radius: 20px;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 6px rgba(0,0,0,0.9);
        flex: 1;
    }
    .horizontal-card img {
        max-width: 120px;
        object-fit: contain;
    }
    .shop-btn {
        background: white;
        color: var(--primary-blue);
        border: none;
        padding: 10px 25px;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
        font-size: 15px;
    }
    .outline-btn {
        background: transparent;
        border: 1px solid var(--primary-blue);
        color: var(--primary-blue);
        padding: 8px 20px;
        border-radius: 25px;
        cursor: pointer;
        display: flex;
        align-items: center;
        font-size: 15px;
        font-weight: 600;
    }
    .h-content{
        text-align: start;
    }
/* ==========================================================================
   Product (Under Shop) Quick View Modal
   ========================================================================== */
    .modal {
        display: none; 
        position: fixed;
        z-index: 9999;
        inset: 0;
        background: linear-gradient(135deg, rgba(253, 248, 225, 0.7) 0%, rgba(225, 245, 254, 0.7) 100%);
        backdrop-filter: blur(8px); 
        -webkit-backdrop-filter: blur(8px);
        align-items: center;
        justify-content: center;
    }
    .modal-content {
        background: linear-gradient(135deg, #fdf8e1 0%, #e1f5fe 100%);;
        width: 90%;
        max-width: 950px;
        border-radius: 25px;
        position: relative;
        padding: 40px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        animation: modalSlideIn 0.3s ease-out;
    }
    .modal-body {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
        align-items: start;
    }
    @keyframes modalSlideIn {
        from { transform: translateY(30px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    .product-gallery {
        background: none;
        border-radius: 20px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative; 
        min-height: 300px;
        border: none;
    }
    .slider-container-product {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        padding: 20px;
    }
    #modal-img {
        max-width: 100%;
        max-height: 350px;
        object-fit: contain;
        transition: opacity 0.3s ease;
    }
    /*Equivalent to navigation*/
    .slider-controls {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        padding: 0;
        pointer-events: none;
        width: 100%;
        box-sizing: border-box;
    }
    .slider-controls button {
        pointer-events: auto;
        background: none;
        border: none;
        color: var(--yellow2); 
        width: 45px;
        height: 45px;
        border-radius: 50%;
        font-size: 20px;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }
    .slider-controls button:hover {
        background: var(--yellow2);
        color: white;
        transform: scale(1.1);
    }
    /* Product Info Side */
    .product-info {
        display: flex;
        flex-direction: column;
        color: var(--primary-blue);
    }
    .product-info h2 {
        font-size: clamp(24px, 3vw, 32px);
        margin-bottom: 10px;
        color: var(--primary-blue);
    }
    .category-tag {
        color: var(--primary-blue);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 1px;
    }
    .price-section {
        font-size: 36px;
        font-weight: 800;
        margin: 20px 0;
        color: var(--yellow2);
    }
    .price-section span::before {
        font-size: 20px;
        vertical-align: middle;
    }
    .close-modal {
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 32px;
        line-height: 1;
        cursor: pointer;
        color: #999;
        transition: 0.2s;
    }
    .close-modal:hover {
        color: var(--yellow2);
    }
    /*Button & Functions*/
    .quantity-container {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
        font-weight: bold;
    }
    .quantity-controls {
        display: flex;
        align-items: center;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
    }
    .quantity-controls button {
        background: #f8f9fa;
        border: none;
        width: 35px;
        height: 35px;
        cursor: pointer;
        font-size: 18px;
        transition: 0.2s;
        color: var(--yellow2);
    }
    .quantity-controls button:hover {
        background: #e9ecef;
    }
    .quantity-controls input {
        width: 100px;
        border: none;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        text-align: center;
        font-weight: bold;
    }
    .quantity-controls input::-webkit-outer-spin-button,
    .quantity-controls input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .add-to-cart-btn, .purchase-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 15px;
        border-radius: 12px;
        font-weight: bold;
        cursor: pointer;
        transition: 0.3s;
        border: none;
        font-size: 16px;
    }
    .add-to-cart-btn {
        background: white;
        color: var(--primary-blue);
        border: 2px solid var(--primary-blue);
    }
    .add-to-cart-btn:hover {
        background: var(--primary-blue);
        color: white;
    }
    .purchase-btn {
        background: var(--yellow2);
        color: white;
    }
    .purchase-btn:hover {
        filter: brightness(1.1);
        box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
    }
    /* 7. Mobile Responsive */
    @media (max-width: 768px) {
        .modal-body {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .modal-content {
            padding: 30px 20px;
            width: 95%;
            max-height: 95vh;
            overflow-y: auto;
        }

        .product-gallery {
            min-height: 250px;
        }

        #modal-img {
            max-height: 250px;
        }
    }
/* ============================================
   PAGE-> PROGRAMS -> DOJO
   ============================================ */ 
   /*Benefits*/ 
   .slider2-viewport {
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden; 
        padding: 3% 0 2% 0;
        position: relative;
        background: transparent;
    }
    .slider2-track {
        display: flex;
        width: max-content; 
        animation: scroll 30s linear infinite; 
        background: transparent;
        padding: 10px 0;
        height: 200px;
    }
    .slider2-track:hover {
        animation-play-state: paused;
    }
    .benefit-card {
        background: #ffffff;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        border: 1px solid #eee;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 250px; 
        margin: 0 15px; 
        flex-shrink: 0; 
        visibility: visible;
        opacity: 1;
    }
    .benefit-card:hover {
        background-color: hsl(45, 100%, 97%)!important;
        transform: translateY(-10px);
    }
    .benefit-card:hover h3 {
        color: var(--yellow2)!important; 
    }
    .inner-box-img {
        width: 100%;
        height: 200px; 
        margin-bottom: 0px;
        overflow: hidden;
        border-radius: 10px;
        background: transparent; 
    }
    .inner-box-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .benefit-card h3 {
        color: var(--primary-blue);
        margin: 10px 0 0 0;
        font-size: 16px;
        text-align: center; 
        font-weight: 600;
    }
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-310px * 7)); } 
    }
    .slider2-viewport::before,
    .slider2-viewport::after {
        display: none; 
    }
    /*Skills*/
   .skill-section-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        background: transparent;
    }
    .skill-grid-container {
        display: flex;
        flex-wrap: wrap;      
        justify-content: center; 
        gap: 25px;
        width: 100%;
    }
    .skill-card {
        background: #ffffff;
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        border: 1px solid #eee;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 0 1 calc(25% - 25px); 
        min-width: 250px; 
        transition: all 0.3s ease;
        cursor: pointer;
        box-sizing: border-box;
    }
    .skill-card:hover h2 {
        color: var(--yellow2)!important;
    }
    .skill-icon-box {
        width: 100%;
        height: 180px;
        margin-bottom: 15px;
        overflow: hidden;
        border-radius: 10px;
    }
    .skill-icon-box img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .skill-card h2, 
    .skill-card h3 {
        color: #1e56a0;
        font-size: 1.1rem;
        text-align: center;
        font-weight: bold;
        margin: 10px 0;
        transition: color 0.3s ease;
    }
    .skill-card p {
        color: #666;
        font-size: 0.95rem;
        text-align: center;
        transition: color 0.3s ease;
    } 
    .whatsapp-container {
        text-align: center;
        padding: 0px 20px;
        width: 100%;
        background: transparent;
    }
/* ============================================
   PAGE -> PARENTS DASHBOARD
   ============================================ */
 /* ============================================
   PARENTS DASHBOARD - CLEAN & ORGANIZED CSS
   ============================================ */

/* ========================================
   1. BANNER & LAYOUT
   ======================================== */

.pdb-hero-banner {
    width: 100%;
    height: 350px; 
    background-image: url('../img/ProfileDashboard.png');
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.pdb-banner-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 8%;
    padding-top: 10%;
}

.pdb-text-holder {
    padding-left: 25px;
}

.pdb-main-title {
    color: var(--primary-blue);
    font-size: 44px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}

.pdb-sub-text {
    color: #FF8C00;
    font-size: 20px;
    margin-top: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.dashboard-container {
    display: flex; 
    max-width: 1200px; 
    margin: 30px auto; 
    gap: 30px; 
    padding: 0 20px;
}

/* ========================================
   2. SIDEBAR
   ======================================== */

.dashboard-sidebar {
    flex: 1; 
    min-width: 200px; 
    width: 200px;
    border-radius: 20px; 
    overflow: hidden;
}

.dashboard-img-container {
    padding: 30px; 
    text-align: center; 
    background: rgba(255, 255, 255, 0.69);
}

.profile-img {
    width: 140px; 
    height: 140px; 
    background: #fff; 
    border: 5px solid #eee; 
    border-radius: 50%;
}

.d-email-sidebar {
    margin-top: 8px; 
    font-size: 11px; 
    color: #666;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.69);
}

.sidebar-link i {
    width: 20px;
    color: #999;
}

.sidebar-link.active {
    background: rgba(255, 237, 202, 0.33);
    color: #ff8c00; 
    font-weight: 600;
}

.sidebar-link.active i {
    color: #ff8c00;
}

.sidebar-link:hover:not(.active) {
    color: #ff8c00;
    padding-left: 25px;
}

.sidebar-link:hover:not(.active) i {
    color: #ff8c00;
}

/* ========================================
   3. OVERVIEW CARDS
   ======================================== */

.dashboard-contents-grid {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
}

.info-card {
    background: #fff;
    border: 1px solid #ebebeb;
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.2s;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.card-num {
    font-size: 36px;
    font-weight: 300;
    color: #222;
    margin-bottom: 8px;
}

.card-label {
    font-size: 11px;
    color: #999;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* ========================================
   4. CHILD TABS
   ======================================== */

.child-tabs-header {
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 20px; 
    border-bottom: 2px solid #eee;
    position: relative;
}

.tab-link {
    padding: 10px 20px; 
    border: none; 
    background: none; 
    cursor: pointer; 
    font-weight: 600; 
    color: #666; 
    transition: 0.3s;
}

.tab-link.active {
    color: #ff8c00 !important;
    border-bottom: 2px solid #ff8c00 !important;
}

.add-child-btn {
    padding: 8px 10px; 
    border: 1px solid #ff8c00;
    background: #fff4e5; 
    color: #ff8c00; 
    cursor: pointer; 
    border-radius: 10px; 
    font-size: 12px; 
    line-height: 1; 
    margin-left: 10px; 
    transition: 0.3s; 
    position: relative;
    z-index: 1;
}

/* ========================================
   5. CLASSROOM - EMPTY STATE
   ======================================== */

.d-empty-classroom {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 16px;
}

.d-empty-icon {
    font-size: 40px;
    color: #ccc;
    margin-bottom: 15px;
}

.d-empty-title {
    margin-top: 15px;
    color: #666;
    font-size: 18px;
}

.d-empty-text {
    color: #999;
    margin-bottom: 20px;
}

/* ========================================
   6. CLASSROOM - HEADER
   ======================================== */

.d-classroom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.d-header-title {
    color: #444;
    font-size: 18px;
}

.d-add-prog-btn {
    display: inline-block;
    background: #ff8c00;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.d-add-prog-btn:hover {
    background: #f57c00;
}

.d-btn-small {
    padding: 8px 15px;
    font-size: 13px;
}

/* ========================================
   REFINED SLIM PENDING CARD
   ======================================== */

.d-pending-card {
    width: 100%;
    min-height: 60px; /* Slightly more than 50px to fit 3 lines comfortably */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

/* Grouping the text on the left */
.d-pending-main-info {
    display: flex;
    flex-direction: column; /* This puts "Waiting", "Paid", and "Note" below each other */
    gap: 2px;
}

.d-status-badge {
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.d-status-subtext {
    font-size: 13px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 5px;
}

.d-instructor-note {
    font-size: 11px;
    opacity: 0.7;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* The Button */
.d-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #25D366;
    color: white !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
}

.d-whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .d-pending-card {
        flex-direction: column; /* Stack text and button */
        align-items: flex-start;
        height: auto;
        gap: 15px;
    }

    .d-pending-action {
        width: 100%;
    }

    .d-whatsapp-btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }
}

/* ========================================
   8. TIMETABLE - DAY CARDS
   ======================================== */

.d-days-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.d-day-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.d-day-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.d-day-empty {
    opacity: 0.8;
}

.d-day-header {
    padding: 15px 20px;
    border-bottom: 2px solid;
}

.d-header-active {
    background: #f8f9fc;
    border-bottom-color: #ff8c00;
}

.d-header-inactive {
    background: #f5f5f5;
    border-bottom-color: #e0e0e0;
}

.d-day-info {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.d-day-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.d-icon-active {
    background: #ff8c00;
}

.d-icon-inactive {
    background: #999;
}

.d-day-title {
    flex-grow: 1;
}

.d-day-name {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.d-day-name-inactive {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #999;
}

.d-day-count {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: #666;
}

.d-day-count-inactive {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: #999;
}

.d-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.d-badge-active {
    background: #e8f5e9;
    color: #2e7d32;
}

.d-badge-available {
    background: #f5f5f5;
    color: #999;
}

.d-day-content {
    transition: padding 0.3s;
}

.d-content-padded {
    padding: 20px;
}

/* ========================================
   9. TIMETABLE - PROGRAM CARDS
   ======================================== */

.d-program-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.d-program-card:hover {
    transform: translateX(5px);
    border-color: #ff8c00;
}

.d-program-mb {
    margin-bottom: 12px;
}

.d-time-slot {
    min-width: 100px;
    text-align: center;
}

.d-time-badge {
    background: #fff4e5;
    color: #ff8c00;
    padding: 8px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.d-program-icon {
    background: #fff4e5;
    color: #ff8c00;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.d-program-details {
    flex-grow: 1;
}

.d-program-name {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.d-program-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.d-program-level {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #666;
}

.d-program-level i {
    color: #ff8c00;
    font-size: 12px;
}

.d-program-batch {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #ff8c00;
    background: #fff4e5;
    padding: 3px 8px;
    border-radius: 20px;
}

.d-enrolled-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2e7d32;
    font-size: 13px;
    font-weight: 600;
    background: #e8f5e9;
    padding: 6px 12px;
    border-radius: 30px;
}

.d-no-classes {
    padding: 20px;
    text-align: center;
    background: #fafafa;
    border-radius: 0 0 16px 16px;
}

.d-no-classes p {
    margin: 0;
    color: #999;
    font-size: 14px;
    font-style: italic;
}

/* ========================================
   10. MODAL - BASE
   ======================================== */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    background: linear-gradient(135deg, rgba(253, 248, 225, 0.7) 0%, rgba(225, 245, 254, 0.7) 100%);
    animation: fadeIn 0.3s ease;
}

.modal-container,
.d-modal-container-enroll {
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s ease-out;
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
    flex-shrink: 0;
}

.modal-header h2 {
    margin: 0 0 8px 0;
    color: var(--primary-blue);
    font-size: 24px;
}

.modal-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.d-closed-modal-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: #ff0000;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
    z-index: 10;
}

.d-closed-modal-btn:hover {
    color: #333;
}

.modal-body-scrollable {
    padding: 30px;
    overflow-y: auto;
    flex-grow: 1;
    max-height: calc(90vh - 200px);
}

.modal-body-scrollable::-webkit-scrollbar {
    width: 8px;
}

.modal-body-scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-body-scrollable::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.modal-body-scrollable::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 2px solid #f0f0f0;
    background: #fafafa;
    border-radius: 0 0 16px 16px;
    flex-shrink: 0;
}

/* ========================================
   11. MODAL - FORM ELEMENTS
   ======================================== */

.d-form-enroll {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.form-input-group {
    margin-bottom: 0px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.form-input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0px;
}

.form-input-group input {
    width: 100%;
    padding: 15px 12px;
    border: none;
    border-radius: 10px;
    box-sizing: border-box;
}

.child-form-row {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 10px;
    position: relative;
}

/* ========================================
   12. MODAL - BUTTONS
   ======================================== */

.modal-submit-btn {
    width: 100%;
    padding: 15px;
    background: #ff8c00;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.modal-submit-btn:hover:not(:disabled) {
    background: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
}

.modal-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

#submit-enrollment-btn {
    opacity: 0.6;
    transition: all 0.3s ease;
}

#submit-enrollment-btn:enabled {
    opacity: 1;
    background: #ff8c00;
    transform: scale(1.05);
}

#submit-enrollment-btn:enabled:hover {
    background: #f57c00;
    transform: scale(1.08);
}

.modal-add-child-btn {
    width: 100%;
    padding: 12px;
    color: var(--yellow2);
    background: white;
    border: var(--yellow2) solid 1px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

.modal-add-child-btn:hover {
    color: var(--orange);
    border: var(--orange) solid 1px;
}

/* ========================================
   13. ENROLLMENT MODAL - PROGRAM SELECTION
   ======================================== */

.d-program-selection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
}

.d-lt {
    font-weight: 700;
    color: #ff8c00;
    font-size: 16px;
    margin-bottom: 15px;
    display: block;
}

.d-change-program-btn {
    background: #ff8c00;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.2);
}

.d-change-program-btn:hover {
    background: #f57c00;
    transform: scale(1.05);
}

.d-change-program-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.d-change-program-btn:hover i {
    transform: rotate(15deg);
}

#changeProgramSection button {
    box-shadow: 0 2px 8px rgba(255,140,0,0.2);
}

#changeProgramSection button i {
    transition: transform 0.3s ease;
}

#changeProgramSection button:hover i {
    transform: rotate(180deg);
}

/* ========================================
   14. ENROLLMENT MODAL - PROGRAM CARDS
   ======================================== */

.d-class-section {
    margin-bottom: 0px;
}

.d-class-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 5px 10px 0px 10px;
    overflow-x: auto;
    scroll-behavior: auto;
    scrollbar-width: none;
}

.d-class-container::-webkit-scrollbar {
    display: none;
}

.program-card-btn {
    flex: 0 0 auto;
    width: 200px;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: white;
}

.program-card-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-color: #ff8c00;
}

.program-card-btn.selected {
    border: 3px solid #ff8c00;
    box-shadow: 0 0 0 3px rgba(255,140,0,0.2);
    transform: scale(1.02);
}

.program-card-btn.hidden {
    display: none;
}

.d-ct {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    border-radius: 15px 15px 0 0;
}

.d-ct.h-dojo { background: linear-gradient(145deg, #667eea, #764ba2); }
.d-ct.h-jpn { background: linear-gradient(145deg, #ff6b6b, #ee5253); }
.d-ct.h-micro { background: linear-gradient(145deg, #1dd1a1, #10ac84); }
.d-ct.h-cc { background: linear-gradient(145deg, #feca57, #ff9f43); }
.d-ct.h-axj { background: linear-gradient(145deg, #5f27cd, #341f97); }
.d-ct.h-shp { background: linear-gradient(145deg, #ff9ff3, #f368e0); }
.d-ct.h-robocamp { background: linear-gradient(145deg, #1dd1a1, #10ac84); }
.d-ct.h-gv { background: linear-gradient(145deg, #00d2d3, #01a3a4); }

.d-ic {
    height: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid #eee;
    border-radius: 0 0 15px 15px;
}

.d-icl {
    font-size: 12px;
    color: #555;
    text-decoration: none;
}

/* ========================================
   15. ENROLLMENT MODAL - STUDENT TYPE
   ======================================== */

.d-st {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    display: none;
}

.d-ctt {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0px;
    font-family: 'Poppins', sans-serif;
}

.d-lbl {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: white;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.d-lbl:hover {
    border-color: #ff8c00;
    background: #fff4e5;
}

.d-rad {
    width: 18px;
    height: 18px;
    accent-color: #ff8c00;
}

.d-rad:checked + span {
    color: #ff8c00;
    font-weight: 600;
}

.d-rc {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: #fff4e5;
    border-left: 4px solid #ff8c00;
    border-radius: 8px;
}

.d-rct {
    display: flex;
    align-items: center;
    gap: 12px;
}

.d-rct-p {
    font-size: 14px;
    color: #333;
}

/* ========================================
   16. ENROLLMENT MODAL - SELECTIONS
   ======================================== */

.level-btn {
    padding: 12px 24px;
    border: 2px solid #dee2e6;
    background: #f8f9fa;
    border-radius: 30px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.level-btn:hover {
    background: #fff4e5;
    border-color: #ff8c00;
    color: #ff8c00;
}

.level-btn.selected {
    background: #ff8c00;
    border-color: #ff8c00;
    color: white;
}

.batch-item,
.day-item {
    padding: 12px 24px;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    display: inline-block;
    flex: 0 0 auto;
}

.batch-item:hover,
.day-item:hover {
    border-color: #ff8c00;
    background: #fff4e5;
    transform: translateY(-2px);
}

.batch-item.selected {
    background: #ff8c00;
    border-color: #ff8c00;
    color: white;
}

.day-item:has(input:checked) {
    background: #ff8c00 !important;
    border-color: #ff8c00 !important;
    color: white;
}

.day-item:has(input:checked) input[type="radio"] {
    accent-color: white;
}

.slot-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.slot-item:hover {
    border-color: #ff8c00;
    background: #fff4e5 !important;
}

/* ========================================
   17. ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* ========================================
   18. SECTION VISIBILITY CONTROL
   ======================================== */

.main-view-section {
    display: none;
}

.main-view-section.active {
    display: block;
}

/* ========================================
   19. RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .d-pending-header {
        flex-direction: column;
        text-align: center;
    }
    
    .d-pending-fee {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-body-scrollable {
        padding: 20px;
    }
    
    .d-pending-card {
        padding: 20px;
    }
    
    .d-modal-container-enroll {
        max-width: 100%;
        margin: 10px;
    }
    
    .d-whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
    
    .d-day-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .d-program-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .d-program-card > div:first-child {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .d-pending-title {
        font-size: 18px;
    }
    
    .d-fee-amount {
        font-size: 24px;
    }
    
    .d-whatsapp-btn {
        font-size: 14px;
        padding: 14px 24px;
    }
}
/* ============================================
   RESPONSIVE WEBSITE SETTINGS
   ============================================ */
    /*Desktop view* (992px and up)*/
    @media (min-width: 992px) {
        body {
            padding: 0 20px;
        }
        .bottom-nav {
            display: none;
        }
        .mobile-footer {
            display: none !important;
        }
        .mobile-banner {
            display: none; 
        }
        .desktop-banner {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .display-on-mobile {
            display: none;
        }
        .display-on-mobile-btn {
            display: none;
        }
        .pdb-hero-banner {
            border-radius: 0px 0px 80px 80px;
        }
    }
    /* Mobile & tablet view (991px and below)*/
    @media (max-width: 991px) {
        body {
            padding: 0 20px;
        }
        /* Mobile Navigation */
        .desktop-nav {
            display: none !important;
        }   
        .bottom-nav {
            display: flex;
        }
        /* Top Bar  */
        .top-bar {
            padding: 0 40px;
            height: 70px;
        }
        .top-bar-actions {
            gap: 8px;
            margin-left: auto;
        }
        .top-bar-logo {
            height: 35px;
        }
        .social-btn, .profile-btn {
            width: 32px;
            height: 32px;
            font-size: 13px;
        }
        .btn-lang {
            padding: 6px 12px;
            font-size: 11px;
        }
        .social-links {
            display: flex;
            gap: 8px;
        }
        /*Section 1-> Hero-section*/
        .hero-section {
            min-height: 500px;
        }
        .hero-container {
            padding-top: 15px;
        }
        .hero-content {
            padding-bottom: 80px;
        }
        .hero-content h1 {
            font-size: 35px;
            font-weight: 800;
        }
        .yellow-text {
            font-size: 25px;
            font-weight: 700;
        }
        /* Section 2 -> Polaroid Programs */
        .program-container {
            padding: 15px;
        }
        .cards-wrapper {
            height: 300px;
        }
        .card {
            width: 220px;
            height: 250px;
        }
        .center-card {
            width: 250px;
            height: 300px;
            transform: translateX(-50%) translateY(-15px);
        }
        .left-card {
            left: 15%;
            transform: translateX(0) rotate(-8deg);
        }
        .right-card {
            right: 15%;
            transform: translateX(0) rotate(8deg);
        }
        .center-card .programs-title,
        .center-card.showing-side-content .programs-title,  
        .left-card .card-title,
        .right-card .card-title,
        .side-card.showing-center-content .programs-title {
            font-size: 15px !important;
            font-weight: 620 !important;
            margin: 0 !important; 
            padding: 0 !important;
            line-height: 1 !important;
            display: block !important; 
        }
        .card-content {
            padding: 5px 10px !important; 
            height: 14% !important;
            min-height: 40px !important;
        }
        .button-container {
            margin-top: 2px;
        }
        .center-card .card-content {
            padding: 5px 10px !important; 
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }
        /* Section 3 -> Media Gallery */
        .media-overlay-content {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }
        .media-text-left h3 { 
            font-size: 24px; 
        }
        .media-featured-card { 
            height: 500px; 
        }
        /* Section 4 -> About Us*/
        .AboutUs {
            padding: 30px 0;
        }
        .aboutUs-container {
            width: 94%;              
            max-width: 1500px;
            height: auto;
            display: block;
        }
        /* Section 5 -> Feedback*/
        .feedback-card-container {
            max-width: 450px;
            margin: 20px auto;
            height: 250px;
        }
        /* Section 6-> Teacher*/
        .teacher-section {
            position: relative;
            overflow: hidden; /* Prevents side scrolling the whole page */
            padding: 0px 20px;
        }
        .teacher-card-container {
            display: flex;
            flex-direction: row !important;
            overflow-x: auto; 
            gap: 0px;
            padding: 0 20px; 
            justify-content: flex-start; 
            align-items: flex-start;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }
        .teacher-card-container::-webkit-scrollbar {
            display: none; 
        }
        .teacher-card {
            flex: 0 0 40%;
            background: #fff;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column-reverse;
            transform: scale(0.9);
            transform-origin: top; 
            scroll-snap-align: start;
            margin-right: 2%;
            height: 350px;
        }
        .teacher-card.active {
            flex: 0 0 50%;
            opacity: 1;
            transform: scale(1);
            z-index: 5;
            margin-right: 4%;
            height: 450px;
        }
        .teacher-navigation {
            position: absolute;
            top: 40%;
            left: 0;
            right: 0;
            width: 100%;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
            z-index: 100;
        }
        .teacher-navigation > * {
            pointer-events: auto;
        }
        .footer-blocker {
            width: 100%;
            height: 520px; 
            overflow: hidden;
            position: relative;
            display: flex;
            justify-content: center;
        }
        /*Section -> Footer*/
        .desktop-only-footer {
            display: none !important;
        }
        .mobile-footer{
            color: var(--white);
        }
        .mobile-only-footer {
            position: relative !important;
            padding: 0 30px !important;
            box-sizing: border-box !important;
            font-size: 18px !important;
            overflow: hidden;
        }
        .mobile-only-footer .footer-bg-img {
            width: 100% !important;
            height: auto !important;
            display: block !important;
            z-index: 1 !important;
            height: 670px;
        }
        .mobile-footer-container {
            position: absolute !important;
            top: 0% !important;
            left: 0% !important;
            right: 0% !important;
            bottom: 0% !important;
            z-index: 5 !important;
            display: flex !important;
            flex-direction: column !important;
            padding: 0 10px !important;
            box-sizing: border-box !important;
            justify-content: center !important; 
            align-items: center !important; 
            padding: 20px !important;
            box-sizing: border-box !important;
        }
        .text-justify {
            text-align: justify;
            text-justify: inter-word; 
            width: 70%; 
            padding: 3% 0 3% 0;
        }
        .content-p{
            padding: 3% 0 5% 0;
        }
        .mobile-socials {
            display: flex !important;
            flex-direction: row !important;
            justify-content: center !important;
            gap: 15px !important;
            width: 100% !important;
            padding: 10% 0 2% 0;
        }
        .mobile-socials .social-btn {
            font-size: 20px !important;
            width: 40px;
            height: 40px;
        }
        .mobile-footer-content-wrapper {
            width: 100% !important;
            text-align: center !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
            height: 670px;
            padding: 10% 0 8% 0;
        }
        .mobile-links {
            display: flex !important;
            flex-direction: row !important;
            justify-content: center !important;
            gap: 80px !important;         
            margin-bottom: 10px !important;
            width: 100% !important;
            padding: 3% 0 3% 0;
        }
        .link-column {
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-start !important;
            gap: 8px !important;       
        }
        .link-column a {
            color: white !important;
            text-decoration: none !important;
            white-space: nowrap !important;  
        }
        .footer-line {
            width: 100% !important;
            height: 1px !important;
            background-color: rgba(255, 255, 255, 0.3) !important;
            margin:0 !important;
            border: none !important;
            flex-shrink: 0 !important;
        }
        .btn-footer-container{
            padding: 5% 0 3% 0;
        }
        .mobile-only-footer-2 {
            margin-top: 30px;
            position: relative !important;
            width: 100% !important;
            display: block !important;
            padding: 0 20px !important;
            box-sizing: border-box !important;
            text-align: center;
            font-size: 10px !important;
            color: var(--primary-blue);
        }
        .copyright-text {
            font-size: 10px !important;
            margin: 0 !important;
            padding:0 20px;  
        }
        /*Page->Contact*/
        .display-on-mobile {
            display: none; 
        }
        .display-on-mobile-btn{
            display: none;
        }
        /*Page-> Shop*/
        .banner-content {
            padding: 0 10% 5% 10%;
        }
        .skill-card {
            flex: 0 1 calc(33.33% - 25px);
        }
    }
    /*Small mobile view (480px and below)*/
    @media (max-width: 480px) {
        body {
            padding: 0;
        }
        .top-bar {
            padding: 0 10px;
            height: 70px;
        }
        /* Top-Bar Navigation*/  
        .top-bar-actions {
            gap: 8px;
            margin-left: auto;
        }
        .social-links {
            gap: 5px;
        }
        .top-bar-logo {
            height: 28px;
        }
        /*section title size*/
        .section-title{
            font-size: 19px;
        }
        .second-section-title {
            font-size: 14px;
        }
        /*Section 1 -> Hero Sections*/
        .hero-content h1 {
            font-size: 2.1rem;
            padding-bottom: 0;
        }
        .yellow-text {
            font-size: 20px;
            font-weight: 700;
        }
        .hero-section {
            height: 80vh;
            min-height: 500px;
        }
        .hero-container {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            padding: 78px 8% 0 8%;
        }
        .hero-image {
            position: relative !important; 
            right: auto !important;
            bottom: 0 !important;
            width: 100%;
            height: auto  !important;
            display: flex;
            justify-content: center !important;
            align-items: flex-end;
        }
        .hero-image img {
            padding: 0;
            height: 100% !important;
            max-height: 25vh; 
            width: auto;
            object-fit: contain;
        }
        .hero-content {
            text-align: center;
            width: 100%;
            z-index: 10;
            padding: 0;
        }
        /*Section 2 -> Polaroids container*/
        .program-container {
            margin-top: 10% ;
            padding: 10px;
        }
        .cards-wrapper {
            height: 260px;
            margin-bottom: 10px;
        }
        .card {
            width: 150px;
            height: 200px;
        }
        .center-card {
            width: 180px;
            height: 250px;
            transform: translateX(-50%) translateY(-5px);
        }
        .left-card {
            left: 8%;
            transform: translateX(0) rotate(-6deg);
            top: 15px;
        }
        .right-card {
            right: 8%;
            transform: translateX(0) rotate(6deg);
            top: 15px;
        }
        .center-card .programs-title,
        .center-card.showing-side-content .programs-title,  
        .left-card .card-title,
        .right-card .card-title,
        .side-card.showing-center-content .programs-title {
            font-size: 14px !important; 
            font-weight: 620 !important;
            margin: 0 !important;
            padding: 0 !important;
            line-height: 1 !important;
            display: block !important; 
        }     
        .card-content {
            padding: 3px 6px !important; 
            height: 14% !important;
            min-height: 35px !important;
        }   
        .center-card .card-content {
            padding: 3px 6px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }
        .button-container {
            padding-top: 20px;
            margin-top: 15px;
        }
        /* Section 3 -> Media Gallery */ 
        .media-text-left h3 {
            font-size: 20px;
            font-weight: 800;
            margin: 0 0 10px 0;
            line-height: 1.2;
            text-transform: uppercase;
        }
        .media-text-left p {
            font-size: 14px;
            font-weight: 500;
            margin: 0;
            opacity: 0.9;
        }
        .media-featured-card { 
            height: 450px; 
            width: 600px;
        }
        .media-gallery-text {
            font-size: 25px;           
        }
        .media-container {
            padding:10px 40px;
        }
        /* Section 4 -> About Us*/
        .AboutUs {
            padding: 35px 0 15px 0;
        }
        .aboutUs-container {
            width: 94%;           
            max-width: 1500px;
            height: auto;
            display: block;
        }
        /* Section 5 -> Feedback */
        .feedback-card-container {
            max-width: 323px;
            margin: 20px auto;
            height: 185px;
        }
        .feedback-section-title p {
            font-size: 14px;           
            font-weight: 550; 
            margin-bottom: 20px;
        }
        .feedback-section-title h2 { 
            font-size: 1.1rem;           
        }
        .feedback-card {
            font-size: 13px;
            padding: 20px 40px;
        }
        /*Section 6-> Teacher KIV*/
        .teacher-section {
            position: relative;
            overflow: hidden;
            padding: 0px 40px;
        }
        .teacher-card-container {
            display: flex;
            flex-direction: row !important;
            overflow-x: auto; 
            gap: 0px;
            padding: 2px 0px 20px 0px; 
            justify-content: flex-start; 
            align-items: flex-start;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }
        .teacher-card-container::-webkit-scrollbar {
            display: none;
        }
        .teacher-card {
            flex: 0 0 75%;
            background: #fff;
            border-radius: 20px;
            padding: 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column-reverse;
            transform: scale(0.9);
            transform-origin: top; 
            scroll-snap-align: start;
            margin-right: -2%;
            height: 300px;
        }
        .teacher-card.active {
            flex: 0 0 80%;
            opacity: 1;
            transform: scale(1); 
            z-index: 5;
            margin-right: 2%;
            padding: 10px;
            height: 400px;
        }
        .teacher-navigation {
            position: absolute;
            top: 45%;
            left: 0;
            right: 0;
            width: 100%;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
            z-index: 100;
        }
        .teacher-navigation > * {
            pointer-events: auto;
        }
        .role-position{
            font-size: 16px; 
            color:  var(--yellow2); 
            opacity: 0.8; 
            margin-top: 2px;
        }
        /*Section Final -> Footer*/
        .footer-blocker {
            width: 100%;
            height: 450px; 
            overflow: hidden;
            position: relative;
            display: flex;
            justify-content: center;
        }
        .desktop-only-footer {
            display: none !important;
        }
        .mobile-footer{
            color: var(--white);
        }
        .mobile-only-footer {
            position: relative !important;
            padding: 0 20px !important;
            box-sizing: border-box !important;
            font-size: 11px !important;
            overflow: hidden;
        }
        .mobile-only-footer .footer-bg-img {
            width: 100% !important;
            height: auto !important;
            display: block !important;
            z-index: 1 !important;
            height: 670px;
        }
        .mobile-footer-container {
            position: absolute !important;
            top: 0% !important;
            left: 0% !important;
            right: 0% !important;
            bottom: 0% !important;
            z-index: 5 !important;
            display: flex !important;
            flex-direction: column !important;
            padding: 0 10px !important;
            box-sizing: border-box !important;
            justify-content: center !important; 
            align-items: center !important; 
            box-sizing: border-box !important;
        }
        .text-justify {
            text-align: justify;
            text-justify: inter-word; 
            width: 75%; 
            padding: 1% 0 1% 0;
        }
        .content-p{
            padding: 1% 0 2% 0;
        }
        .mobile-socials {
            display: flex !important;
            flex-direction: row !important;
            justify-content: center !important;
            gap: 5px !important;
            width: 100% !important;
            padding: 6% 0 2% 0;
        }
        .mobile-socials .social-btn {
            font-size: 12px !important;
            width: 35px;
            height: 35px;
        }
        .mobile-footer-content-wrapper {
            width: 100% !important;
            text-align: center !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
            height: 670px;
            padding: 10% 0 8% 0;
        }
        .mobile-links {
            display: flex !important;
            flex-direction: row !important;
            justify-content: center !important;
            gap: 10% !important;         
            margin-bottom: 10px !important;
            width: 100% !important;
            padding: 2% 8% 2% 8%;
        }
        .link-column {
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-start !important;
            gap: 8px !important;       
        }
        .link-column a {
            color: white !important;
            text-decoration: none !important;
            white-space: nowrap !important;  
        }
        .footer-line {
            width: 100% !important;
            height: 1px !important;
            background-color: rgba(255, 255, 255, 0.3) !important;
            margin:0 !important;
            border: none !important;
            flex-shrink: 0 !important;
        }
        .btn-footer-container{
            padding: 3% 0 3% 0;
        }
        .mobile-only-footer-2 {
            margin-top: 30px;
            position: relative !important;
            width: 100% !important;
            display: block !important;
            padding: 0 20px !important;
            box-sizing: border-box !important;
            text-align: center;
            font-size: 10px !important;
            color: var(--primary-blue);
        }
        .copyright-text {
            font-size: 10px !important;
            margin: 0 !important;
            padding:0 20px;  
        }
        /*--Page-> Exhibits--*/
        .exhibits-page{
            margin-top:15%;
            padding:4% 5%;
        }
        .container-max{
            height: 350px;
        }
        .floor-plan-container{
            padding: 0;
        }
        .floor-plan-wrapper {
            padding: 0;
        }
        .exhibits-page-middle{
            padding:0 5%;
        }
        /*Page -> Programs--*/
        .programs-page{
            margin-top:15%;
            padding:4% 5%;
        }
        .filter-classes-workshop {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 10%;
            margin-bottom: 50px;
        }
        /*Page -> Contact us */
        .desktop-banner {
            display: none;
        }
        .mobile-banner {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hide-on-mobile {
            display: none;
        }
        .hero-content-ctc {
            margin-top: 70%!important; 
            display: flex !important;
            flex-direction: column !important;
            justify-content: center !important;
            align-items: center !important;     
            width: 100% !important;
            height: 100% !important;
            text-align: center !important;
        }
        .display-on-mobile {
            display: flex;
            flex-direction: column;  
            align-items: center;   
            justify-content: center; 
            height: 100%;         
            min-height: 400px;     
            width: 100%;
            overflow: hidden;           
        }
        .contact-container {
            padding:40px 30px;
        }
        .email-form{
            padding: 30px;
        }
        .address-section {
            padding:30px 30px 0px 30px;
        }
        .contact-buttons-container {
            padding:0 30px 30px 30px;
        }
        .display-on-mobile-btn {
            display: flex !important;
            width: 100% !important;         
            justify-content: center !important; 
            align-items: center !important;
            margin: 0 auto;      
            text-align: center;
        }
        .fancybox__caption {
            bottom: 37% !important;
            font-size: 15px !important;
        }
        .fancybox__backdrop {
            background: linear-gradient(135deg, #fdf8e1 0%, #e1f5fe 100%) !important;
            opacity: 0.9 !important;
        }
        .f-thumbs {
            position: absolute !important;
            bottom: 120px !important; 
            left: 50% !important;
            transform: translateX(-50%) !important;
            width: 100% !important;
            height: 100px !important; 
            z-index: 30 !important;
            padding: 0 !important;
            background: transparent !important;
        }
        /*Shop*/
        
        .shop-card, 
        .main-banner
        {
            border-radius: 20px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end; 
            align-items: center;
            text-align: center;
            box-sizing: border-box;
            padding: 5%;
        }
        .category-card{
            padding: 20%;
        }
        .main-banner {
            height: clamp(300px, 50vh, 500px);
        }
        .shop-card {
            width: 100% !important;
            min-height: 300px;
        }
        .shop-item-card::before {
            background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
            z-index: 1;
        }
        .banner-content, 
        .card-content {
            position: relative;
            z-index: 2;
            width: 100%;
            color: white;
        }
        .card-content-h3 {
            font-size: clamp(18px, 4vw, 24px);
            font-weight: 550;
            margin-bottom: 5px;
        }
        .card-content-p {
            font-size: clamp(14px, 3vw, 18px);
            margin: 0;
        }
        .side-column {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .card-content{
            padding: 15% 2% !important;
        }
        .banner-content {
            padding: 0 10% 5% 10%;
        }
        .side-column{
            padding: 10% 0;
        }
        /* THE TRIANGLE */
        .dialog-box-content::after {
            right: 4%; 
        }
        .skill-card {
            flex: 0 1 100%;
        }
        .pdb-hero-banner {
            border-radius: none;
            height: 200px; 
        }

    }