/* CSS Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0A2845;
    --accent: #AF4D58;
    --orange: #D68F41;
    --cream: #F4EFE9;
    --header-bg: #eaeaea;
    --pure-white: #FFFFFF;
    --grey: #666666;
    --gradient-1: linear-gradient(135deg, #0A2845 0%, #AF4D58 100%);
    --gradient-2: linear-gradient(135deg, #AF4D58 0%, #D68F41 100%);
    --gradient-3: linear-gradient(135deg, #0A2845 0%, #AF4D58 50%, #D68F41 100%);
    --gradient-soft: linear-gradient(135deg, rgba(10, 40, 69, 0.05) 0%, rgba(175, 77, 88, 0.05) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--primary);
    overflow-x: hidden;
    position: relative;
}

/* Cursor Trail Effect - Hide on mobile */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(175, 77, 88, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: all 0.1s ease;
    display: none;
}

@media (min-width: 1024px) {
    .cursor-trail {
        display: block;
    }
}

/* Noise Texture */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.02;
    z-index: 1;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBudW1PY3RhdmVzPSIxMCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iMSIvPjwvc3ZnPg==');
}

/* Hero Section */
.vd-bed-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 40, 69, 0.9) 0%, rgba(175, 77, 88, 0.8) 100%), url('../images/bedCollege/bed-campus.jpg') center/cover;
}

.vd-bed-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    max-width: 1200px;
    width: 90%;
    padding: 0 20px;
    margin-top: 40px;
}

.vd-bed-hero-tag {
    font-size: 16px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--orange);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.vd-bed-hero-title {
    font-size: clamp(45px, 7vw, 100px);
    font-weight: 100;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--pure-white);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.vd-bed-hero-title strong {
    font-weight: 700;
    color: var(--orange);
}

.vd-bed-hero-subtitle {
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 200;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.vd-bed-hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

.vd-bed-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vd-bed-hero-btn-primary {
    background: var(--gradient-2);
    color: var(--pure-white);
    border: 2px solid transparent;
}

.vd-bed-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(175, 77, 88, 0.4);
}

.vd-bed-hero-btn-outline {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.vd-bed-hero-btn-outline:hover {
    background: var(--pure-white);
    color: var(--primary);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.vd-bed-about-section {
    padding: 120px 0;
    background: var(--pure-white);
    position: relative;
}

.vd-bed-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.vd-bed-section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 200;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.vd-bed-section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--grey);
    line-height: 1.6;
}

.vd-bed-about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vd-bed-about-content {
    padding: 40px;
}

.vd-bed-about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 30px;
}

/* Enhanced Result Badge - 3D Isometric Style */
.vd-bed-badge-container {
    display: flex;
    justify-content: center;
}

.vd-bed-result-badge {
    display: inline-block;
    background: linear-gradient(135deg, #AF4D58 0%, #D68F41 100%);
    color: #FFFFFF;
    padding: 25px 50px;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-align: center;
    transform: perspective(500px) rotateX(20deg) rotateY(-10deg);
    box-shadow: 
        0 20px 40px rgba(175, 77, 88, 0.3),
        -10px 10px 0 rgba(10, 40, 69, 0.8),
        -20px 20px 0 rgba(10, 40, 69, 0.6);
    animation: isometricFloat 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.vd-bed-result-badge::before {
    content: '🏆';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 30px;
    animation: trophySpin 3s linear infinite;
}

.vd-bed-result-badge:hover {
    transform: perspective(500px) rotateX(0deg) rotateY(0deg) scale(1.1);
    box-shadow: 
        0 30px 60px rgba(175, 77, 88, 0.5),
        0 0 0 rgba(10, 40, 69, 0.8),
        0 0 0 rgba(10, 40, 69, 0.6);
}

@keyframes isometricFloat {
    0%, 100% { 
        transform: perspective(500px) rotateX(20deg) rotateY(-10deg) translateZ(0px); 
    }
    50% { 
        transform: perspective(500px) rotateX(20deg) rotateY(-10deg) translateZ(20px); 
    }
}

@keyframes trophySpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vd-bed-accreditation {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.vd-bed-accred-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-soft);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary);
}

.vd-bed-accred-item i {
    color: var(--accent);
    font-size: 18px;
}

.vd-bed-about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.vd-bed-about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Course Details Section */
.vd-bed-course-section {
    padding: 120px 0;
    background: var(--gradient-soft);
}

.vd-bed-course-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.vd-bed-course-overview {
    background: var(--pure-white);
    padding: 60px;
    border-radius: 30px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.vd-bed-course-overview h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 300;
}

.vd-bed-course-overview p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--grey);
}

.vd-bed-eligibility {
    background: var(--pure-white);
    padding: 60px;
    border-radius: 30px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.vd-bed-eligibility h4 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vd-bed-eligibility h4 i {
    color: var(--accent);
    font-size: 28px;
}

.vd-bed-eligibility-list {
    list-style: none;
    padding: 0;
}

.vd-bed-eligibility-list li {
    padding: 15px 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--grey);
    position: relative;
    padding-left: 35px;
}

.vd-bed-eligibility-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 18px;
}

.vd-bed-subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.vd-bed-subject-category {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.vd-bed-subject-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vd-bed-subject-category h4 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vd-bed-subject-category h4 i {
    color: var(--accent);
    font-size: 24px;
}

.vd-bed-subject-category ul {
    list-style: none;
    padding: 0;
}

.vd-bed-subject-category li {
    padding: 8px 0;
    color: var(--grey);
    font-size: 16px;
    position: relative;
    padding-left: 25px;
}

.vd-bed-subject-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

/* Subject Combinations Section */
/* Subject Combinations Section */
.vd-bed-combinations-section {
    padding: 120px 0;
    background: var(--pure-white);
}

.vd-bed-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.vd-bed-section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 200;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.vd-bed-section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--grey);
    line-height: 1.6;
}

.vd-bed-combinations-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.vd-bed-combination-unified-card {
    background: var(--gradient-soft);
    padding: 60px;
    border-radius: 30px;
    border-left: 8px solid var(--accent);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vd-bed-combination-unified-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(175, 77, 88, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.vd-bed-combination-unified-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-left-color: var(--orange);
}

.vd-bed-card-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.vd-bed-card-header i {
    font-size: 60px;
    color: var(--accent);
    margin-bottom: 25px;
    display: block;
}

.vd-bed-card-header h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.vd-bed-card-header p {
    font-size: 18px;
    color: var(--grey);
    line-height: 1.6;
}

.vd-bed-combinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.vd-bed-combination-item {
    background: var(--pure-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.vd-bed-combination-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.vd-bed-combination-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    /* background: linear-gradient(135deg, var(--accent) 0%, var(--orange) 100%); */
    border-radius: 0 2px 2px 0;
}

.vd-bed-combination-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--orange) 100%);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.vd-bed-combination-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vd-bed-combination-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(175, 77, 88, 0.1) 0%, rgba(214, 143, 65, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vd-bed-combination-icon i {
    font-size: 20px;
    color: var(--accent);
}

.vd-bed-combination-text {
    flex: 1;
}

.vd-bed-combination-text h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.vd-bed-combination-text p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vd-bed-combinations-section {
        padding: 80px 0;
    }

    .vd-bed-combinations-container {
        padding: 0 20px;
    }

    .vd-bed-combination-unified-card {
        padding: 40px 30px;
    }

    .vd-bed-card-header h3 {
        font-size: 28px;
    }

    .vd-bed-card-header i {
        font-size: 50px;
    }

    .vd-bed-combinations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vd-bed-combination-item {
        padding: 25px;
    }

    .vd-bed-combination-content {
        gap: 12px;
    }

    .vd-bed-combination-text h4 {
        font-size: 16px;
    }

    .vd-bed-combination-text p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .vd-bed-combination-unified-card {
        padding: 30px 20px;
    }

    .vd-bed-card-header {
        margin-bottom: 40px;
    }

    .vd-bed-combination-icon {
        width: 40px;
        height: 40px;
    }

    .vd-bed-combination-icon i {
        font-size: 18px;
    }
}
/* Specialization Areas Section */
.vd-bed-specialization-section {
    padding: 120px 0;
    background: var(--gradient-soft);
}

.vd-bed-specialization-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vd-bed-specialization-item {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vd-bed-specialization-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vd-bed-specialization-item i {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 25px;
}

.vd-bed-specialization-item h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.vd-bed-specialization-item p {
    color: var(--grey);
    line-height: 1.6;
    font-size: 15px;
}

/* Important Notes Section */
.vd-bed-notes-section {
    padding: 120px 0;
    background: var(--pure-white);
}

.vd-bed-notes-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.vd-bed-note-card {
    background: var(--gradient-soft);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vd-bed-note-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.vd-bed-note-card i {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 25px;
}

.vd-bed-note-card h4 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.vd-bed-note-card p {
    color: var(--grey);
    line-height: 1.6;
    font-size: 16px;
}

/* Why Choose Us Section */
.vd-bed-why-choose-section {
    padding: 120px 0;
    background: var(--gradient-3);
    color: var(--pure-white);
}

.vd-bed-features-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.vd-bed-feature-item {
    text-align: center;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.vd-bed-feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.vd-bed-feature-item i {
    font-size: 48px;
    color: var(--orange);
    margin-bottom: 25px;
}

.vd-bed-feature-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--pure-white);
}

.vd-bed-feature-item p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Gallery Section */
.vd-bed-gallery-section {
    padding: 120px 0;
    background: var(--primary);
    color: #FFFFFF;
}

.vd-bed-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.vd-bed-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vd-bed-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.vd-bed-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vd-bed-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.vd-bed-gallery-item:hover img {
    transform: scale(1.1);
}

.vd-bed-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.vd-bed-gallery-item:hover .vd-bed-gallery-overlay {
    transform: translateY(0);
}

.vd-bed-gallery-title {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.vd-bed-gallery-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Modal for Gallery Images */
.vd-bed-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.vd-bed-gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.vd-bed-gallery-modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.vd-bed-gallery-modal img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.vd-bed-gallery-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #FFFFFF;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vd-bed-gallery-modal-close:hover {
    color: #D68F41;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vd-bed-about-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .vd-bed-combinations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vd-bed-specialization-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vd-bed-notes-container {
        grid-template-columns: 1fr;
    }

    .vd-bed-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vd-bed-hero-title {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .vd-bed-hero-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .vd-bed-hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .vd-bed-hero-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 40px;
    }

    .vd-bed-about-section,
    .vd-bed-course-section,
    .vd-bed-combinations-section,
    .vd-bed-specialization-section,
    .vd-bed-notes-section,
    .vd-bed-why-choose-section,
    .vd-bed-gallery-section {
        padding: 80px 0;
    }

    .vd-bed-section-header {
        margin-bottom: 60px;
    }

    .vd-bed-section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .vd-bed-section-subtitle {
        font-size: 16px;
    }

    .vd-bed-about-container,
    .vd-bed-course-container,
    .vd-bed-combinations-container,
    .vd-bed-specialization-grid,
    .vd-bed-notes-container,
    .vd-bed-features-grid,
    .vd-bed-gallery-container {
        padding: 0 20px;
    }

    .vd-bed-about-content {
        padding: 20px;
    }

    .vd-bed-course-overview,
    .vd-bed-eligibility {
        padding: 40px 20px;
    }

    .vd-bed-combination-card,
    .vd-bed-note-card {
        padding: 40px 30px;
    }

    .vd-bed-specialization-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vd-bed-features-grid {
        grid-template-columns: 1fr;
    }

    .vd-bed-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vd-bed-accreditation {
        justify-content: center;
        gap: 15px;
    }

    .vd-bed-result-badge {
        font-size: 18px;
        padding: 20px 40px;
        transform: perspective(400px) rotateX(15deg) rotateY(-8deg);
        box-shadow: 
            0 15px 30px rgba(175, 77, 88, 0.3),
            -8px 8px 0 rgba(10, 40, 69, 0.8),
            -15px 15px 0 rgba(10, 40, 69, 0.6);
    }

    .vd-bed-result-badge::before {
        font-size: 25px;
        top: -12px;
        right: -12px;
    }
}

@media (max-width: 480px) {
    .vd-bed-hero-title {
        font-size: 36px;
    }

    .vd-bed-specialization-item,
    .vd-bed-combination-card,
    .vd-bed-note-card {
        padding: 30px 20px;
    }

    .vd-bed-course-overview,
    .vd-bed-eligibility {
        padding: 30px 15px;
    }

    .vd-bed-result-badge {
        font-size: 16px;
        padding: 18px 35px;
        transform: perspective(350px) rotateX(12deg) rotateY(-6deg);
        box-shadow: 
            0 12px 25px rgba(175, 77, 88, 0.3),
            -6px 6px 0 rgba(10, 40, 69, 0.8),
            -12px 12px 0 rgba(10, 40, 69, 0.6);
    }

    .vd-bed-result-badge::before {
        font-size: 22px;
        top: -10px;
        right: -10px;
    }

    .vd-bed-gallery-item img {
        height: 200px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--accent);
    color: var(--pure-white);
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
    max-width: 100%;
}