/* 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 */
.vd-central-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) {
    .vd-central-cursor-trail {
        display: block;
    }
}

/* Noise Texture */
.vd-central-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==');
}

/* Sections */
/* .vd-central-section {
    padding: 80px 0;
}

.vd-central-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.vd-central-section-title h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.vd-central-section-title p {
    font-size: 18px;
    color: var(--grey);
} */




 
 /* Hero Section */
 .vd-central-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/centralSchool/kannada-school.webp') center/cover;
}

.vd-central-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-central-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-central-hero-title {
    font-size: clamp(48px, 8vw, 120px);
    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-central-hero-title strong {
    font-weight: 700;
    color: var(--orange);
}

.vd-central-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-central-hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

.vd-central-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-central-hero-btn-primary {
    background: var(--gradient-2);
    color: var(--pure-white);
    border: 2px solid transparent;
}

.vd-central-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(175, 77, 88, 0.4);
}

.vd-central-hero-btn-outline {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.vd-central-hero-btn-outline:hover {
    background: var(--pure-white);
    color: var(--primary);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.vd-central-about-section {
    padding: 120px 0;
    background: var(--pure-white);
    position: relative;
}

.vd-central-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.vd-central-section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 200;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.vd-central-section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--grey);
    line-height: 1.6;
}

.vd-central-about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vd-central-about-content {
    padding: 40px;
}

.vd-central-about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 30px;
}

/* 3D Isometric Badge CSS */

/* Enhanced Result Badge - 3D Isometric Style */
.vd-central-badge-container{
    display: flex;
    justify-content: center;
}
.vd-central-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;
    
    
    /* 3D Isometric Transform */
    transform: perspective(500px) rotateX(20deg) rotateY(-10deg);
    
    /* 3D Shadow Effects */
    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);
    
    /* Animations */
    animation: isometricFloat 4s ease-in-out infinite;
    
    /* Interaction */
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

/* Trophy Icon */
.vd-central-result-badge::before {
    content: '🏆';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 30px;
    animation: trophySpin 3s linear infinite;
}

/* Hover Effect */
.vd-central-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);
}

/* Animations */
@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); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .vd-central-result-badge {
        font-size: 18px;
        padding: 20px 40px;
        
        /* Reduce 3D effect on mobile for better readability */
        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-central-result-badge::before {
        font-size: 25px;
        top: -12px;
        right: -12px;
    }
    
    .vd-central-result-badge:hover {
        transform: perspective(400px) rotateX(0deg) rotateY(0deg) scale(1.05);
    }
}

@media (max-width: 480px) {
    .vd-central-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-central-result-badge::before {
        font-size: 22px;
        top: -10px;
        right: -10px;
    }
}
.vd-central-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-central-about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Highlights Section */
.vd-central-highlights-section {
    padding: 120px 0;
    background: var(--gradient-soft);
}

.vd-central-highlights-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vd-central-highlight-item {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
    border-left: 5px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vd-central-highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vd-central-highlight-item i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 20px;
}

.vd-central-highlight-item h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
}

.vd-central-highlight-item p {
    color: var(--grey);
    line-height: 1.6;
    font-size: 14px;
}

/* Schools Section */
.vd-central-schools-section {
    padding: 120px 0;
    background: var(--pure-white);
}

.vd-central-schools-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.vd-central-school-card {
    background: var(--gradient-soft);
    margin-bottom: 60px;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.vd-central-school-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.vd-central-school-content {
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
}

.vd-central-school-info h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.vd-central-school-year {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.vd-central-school-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 30px;
}

.vd-central-school-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.vd-central-stat {
    text-align: center;
}

.vd-central-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.vd-central-stat-label {
    font-size: 12px;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vd-central-school-features {
    list-style: none;
}

.vd-central-school-features li {
    padding: 10px 0;
    color: var(--grey);
    position: relative;
    padding-left: 25px;
}

.vd-central-school-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.vd-central-school-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

/* Statistics Section */
.vd-central-stats-section {
    padding: 120px 0;
    background: var(--gradient-3);
    color: var(--pure-white);
}

.vd-central-stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.vd-central-stat-box {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.vd-central-stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.vd-central-stat-icon {
    font-size: 48px;
    color: var(--orange);
    margin-bottom: 20px;
}

.vd-central-stat-count {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    margin-bottom: 10px;
    display: inline-block;
    color: var(--pure-white);
}

.vd-central-stat-suffix {
    font-size: 36px;
    color: var(--orange);
}

.vd-central-stat-title {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Contact Section */
.vd-central-contact-section {
    padding: 120px 60px;
    background: var(--gradient-1);
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.vd-central-contact-bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, -50px) rotate(180deg); }
}

.vd-central-contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.vd-central-contact-content h2 {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 200;
    margin-bottom: 40px;
    letter-spacing: -3px;
    line-height: 1;
}

.vd-central-contact-content h2 span {
    display: block;
    font-weight: 700;
    color: var(--orange);
}

.vd-central-contact-tagline {
    font-size: 24px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.vd-central-contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vd-central-form-title {
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 300;
}

.vd-central-form-group {
    margin-bottom: 30px;
}

.vd-central-form-group label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.8;
}

.vd-central-form-group input,
.vd-central-form-group textarea {
    width: 100%;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.vd-central-form-group input::placeholder,
.vd-central-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.vd-central-form-group input:focus,
.vd-central-form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.15);
}

.vd-central-submit-btn {
    width: 100%;
    padding: 20px;
    background: var(--orange);
    color: var(--pure-white);
    border: none;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    font-weight: 600;
}

.vd-central-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(214, 143, 65, 0.4);
}


 /* Responsive Styles */
 @media (max-width: 1024px) {
    
    .vd-central-about-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .vd-central-school-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .vd-central-contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    
}

@media (max-width: 768px) {
    
    .vd-central-hero-title {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .vd-central-hero-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .vd-central-hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .vd-central-hero-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 40px;
    }

    .vd-central-about-section,
    .vd-central-highlights-section,
    .vd-central-schools-section,
    .vd-central-stats-section,
    .vd-central-contact-section {
        padding: 80px 0;
    }

    .vd-central-section-header {
        margin-bottom: 60px;
    }

    .vd-central-section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .vd-central-section-subtitle {
        font-size: 16px;
    }

    .vd-central-about-container,
    .vd-central-highlights-grid,
    .vd-central-schools-container,
    .vd-central-stats-container {
        padding: 0 20px;
    }

    .vd-central-about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vd-central-about-content {
        padding: 20px;
    }

    .vd-central-highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vd-central-highlight-item {
        padding: 30px;
    }

    .vd-central-school-content {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 30px;
    }

    .vd-central-school-info h3 {
        font-size: 28px;
    }

    .vd-central-school-stats {
        justify-content: center;
        gap: 30px;
    }

    .vd-central-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .vd-central-stat-box {
        padding: 30px 20px;
    }

    .vd-central-contact-section {
        padding: 80px 20px;
    }

    .vd-central-contact-content h2 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .vd-central-contact-tagline {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .vd-central-contact-form {
        padding: 40px 30px;
        margin-top: 40px;
    }

    .vd-central-form-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .vd-central-form-group {
        margin-bottom: 25px;
    }

    .vd-central-form-group input,
    .vd-central-form-group textarea {
        padding: 15px;
    }

    

    /* Mobile specific scroll adjustment */
    html {
        scroll-padding-top: 70px;
    }
}

@media (max-width: 480px) {
    .vd-central-hero-title {
        font-size: 36px;
    }

    .vd-central-stats-container {
        grid-template-columns: 1fr;
    }

    .vd-central-highlights-grid {
        grid-template-columns: 1fr;
    }

    .vd-central-highlight-item {
        padding: 25px 20px;
    }

    .vd-central-school-content {
        padding: 30px 15px;
    }
}

/* 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%;
}


.vd-central-gallery-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0A2845 0%, #AF4D58 50%, #D68F41 100%);
    color: #FFFFFF;
}

.vd-central-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.vd-central-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.vd-central-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-central-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vd-central-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.vd-central-gallery-item:hover img {
    transform: scale(1.1);
}

.vd-central-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-central-gallery-item:hover .vd-central-gallery-overlay {
    transform: translateY(0);
}

.vd-central-gallery-title {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.vd-central-gallery-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Modal for Gallery Images */
.vd-central-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-central-gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.vd-central-gallery-modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.vd-central-gallery-modal img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.vd-central-gallery-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #FFFFFF;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vd-central-gallery-modal-close:hover {
    color: #D68F41;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vd-central-gallery-section {
        padding: 80px 0;
    }

    .vd-central-gallery-container {
        padding: 0 20px;
    }

    .vd-central-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vd-central-gallery-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .vd-central-gallery-item img {
        height: 200px;
    }
}