/* --- Innovations Section --- */
.innovations-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.innovations-bg-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.innovations-bg-waves svg {
    width: 100%;
    height: 100%;
}

.innovations-section .container {
    position: relative;
    z-index: 2;
}

.innovations-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content (Scroll Triggered) */
.innovations-content {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.innovations-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.innovations-tag {
    display: inline-block;
    background-color: #f1f6f9;
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.innovations-title {
    margin-bottom: 24px;
}

.innovations-title .muted-text {
    color: var(--dark-text);
    font-weight: 400;
}

.innovations-title .accent-text,
.innovations-title span {
    color: var(--secondary-teal, #21b8c9);
    font-family: 'Dancing Script', cursive;
    font-size: 1.15em;
    font-weight: 600;
    text-transform: none;
}

.innovations-desc {
    max-width: 540px;
}

.innovations-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    border: 1.5px solid var(--primary-blue);
    padding: 12px 28px;
    border-radius: 30px;
    transition: var(--transition);
}

.innovations-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(50, 132, 175, 0.25);
}

.innovations-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.innovations-btn:hover i {
    transform: translateX(4px);
}

/* Right Images Layout (Scroll Triggered) */
.innovations-images-wrapper {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s, transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s;
}

.innovations-images-wrapper.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.innovations-img-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.innovations-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.innovations-img-card:hover img {
    transform: scale(1.08);
}

.innovations-img-card.card-left {
    width: 280px;
    height: 530px;
    animation: floatLeftCard 6s ease-in-out infinite;
}

.innovations-img-card.card-right {
    width: 270px;
    height: 530px;
    margin-top: 60px;
    animation: floatRightCard 6s ease-in-out infinite 1s;
}

.innovations-img-card:hover {
    animation-play-state: paused;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

/* Animation Keyframes */
@keyframes bannerFadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bannerFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contentFadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes imagesFadeInRight {
    0% {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* --- Our Values / Core Ethos Section --- */

.values-bg-waves {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.values-bg-waves svg {
    width: 100%;
    height: 100%;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

/* 6 Box Grid Layout (5 Value Cards + 1 Image Box) */
.values-cards-wrapper.six-cards-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.v-card {
    border-radius: 8px;
    padding: 18px 16px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.92);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.25s ease, box-shadow 0.25s ease;
}

.v-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered Delays for 6 Value Boxes (Only applied during initial entrance) */
.v-card:not(.animate-in):nth-child(1),
.v-card.animate-in:nth-child(1) {
    transition-delay: 0.1s, 0s, 0s;
}

.v-card:not(.animate-in):nth-child(2),
.v-card.animate-in:nth-child(2) {
    transition-delay: 0.25s, 0s, 0s;
}

.v-card:not(.animate-in):nth-child(3),
.v-card.animate-in:nth-child(3) {
    transition-delay: 0.4s, 0s, 0s;
}

.v-card:not(.animate-in):nth-child(4),
.v-card.animate-in:nth-child(4) {
    transition-delay: 0.55s, 0s, 0s;
}

.v-card:not(.animate-in):nth-child(5),
.v-card.animate-in:nth-child(5) {
    transition-delay: 0.7s, 0s, 0s;
}

.v-card:not(.animate-in):nth-child(6),
.v-card.animate-in:nth-child(6) {
    transition-delay: 0.85s, 0s, 0s;
}

.v-card.animate-in:hover {
    transform: translateY(-8px) scale(1);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.16);
    transition-delay: 0s;
}

.v-card-num {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(4px);
    padding: 1px 8px;
    border-radius: 10px;
    margin-bottom: 8px;
}

/* 6 Distinct Card Colors & Hover Background Imagery */
.v-card {
    position: relative;
    z-index: 1;
}

.v-card>* {
    position: relative;
    z-index: 2;
}

.v-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.4s ease;
    transform: scale(1.1);
    z-index: 1;
}

.v-card:hover::before {
    opacity: 0.4;
    /* Vivid high-opacity background image reveal */
    transform: scale(1);
    filter: brightness(0.8) contrast(1.05);
}

.v-card-1 {
    background: linear-gradient(135deg, #0f9f6e 0%, #057a55 100%);
    min-height: 185px;
}

.v-card-1::before {
    background-image: url('../images/expo-dmcc-img-31.jpg');
}

.v-card-2 {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    min-height: 185px;
}

.v-card-2::before {
    background-image: url('../images/expo-dmcc-img-35.jpg');
}

/* Featured Image/Video Box */
.v-card-image {
    padding: 0;
    height: 185px;
    min-height: 185px;
    position: relative;
}

.v-card-image img,
.v-card-image video {
    width: 100%;
    height: 185px;
    min-height: 185px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.v-card-image:hover img,
.v-card-image:hover video {
    transform: scale(1.08);
}

.v-card-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(6, 36, 52, 0.85), transparent);
    padding: 12px 14px;
    z-index: 3;
}

.v-card-image-overlay span {
    color: var(--white);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.v-card-3 {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    min-height: 185px;
}

.v-card-3::before {
    background-image: url('../images/expo-dmcc-img-34.jpg');
}

.v-card-4 {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    min-height: 185px;
}

.v-card-4::before {
    background-image: url('../images/expo-dmcc-img-33.jpg');
}

.v-card-5 {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    min-height: 185px;
}

.v-card-5::before {
    background-image: url('../images/expo-dmcc-img-32.jpg');
}

/* Card Typography & Elements */
.v-card-top {
    position: relative;
    z-index: 3;
}

.v-card-title {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.35;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.v-card-text {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.v-card-icon {
    width: 42px;
    height: 42px;
    margin-top: 14px;
    align-self: flex-end;
    opacity: 0.85;
}

.v-card-icon svg {
    width: 100%;
    height: 100%;
}

.v-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.v-values-list li {
    margin-bottom: 6px;
}

.v-values-list strong {
    color: var(--white);
    font-weight: 600;
}

.v-card-badge-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.v-card-badge-icon svg {
    width: 100%;
    height: 100%;
}

/* Right Content Column */
.values-content {
    animation: imagesFadeInRight 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s forwards;
    opacity: 0;
}

.values-main-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.values-main-title .muted-text {
    color: var(--dark-text);
    font-weight: 400;
}

.values-main-title .accent-text,
.values-main-title span {
    color: var(--secondary-teal, #21b8c9);
    font-family: 'Dancing Script', cursive;
    font-size: 1.15em;
    font-weight: 600;
    text-transform: none;
}

.values-desc-p {
    margin-bottom: 18px;
}

/* Responsive Media Queries for Values Section */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .values-cards-wrapper {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .values-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .v-card-mission,
    .v-card-purpose,
    .v-card-values {
        margin-top: 0;
    }

    .values-main-title {
        font-size: 34px;
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .innovations-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .innovations-desc {
        max-width: 100%;
    }

    .innovations-images-wrapper {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .innovations-title {
        font-size: 35px;
    }

    .innovations-images-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .innovations-img-card.card-left,
    .innovations-img-card.card-right {
        width: 100%;
        max-width: 320px;
        height: 340px;
        margin-top: 0;
    }
}

/* --- Historical Timeline Section (Clean Horizontal Track) --- */
.timeline-sticky-container {
    position: relative;
    height: auto;
}

.timeline-section {
    position: relative;
    background-color: var(--light-bg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-header-block {
    text-align: center;
    margin-bottom: 20px;
}

/* Horizontal Scroll Container (Edge-to-Edge Full Width) */
.h-timeline-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    padding: 40px 0 40px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.h-timeline-scroll-wrapper::-webkit-scrollbar {
    height: 4px;
}

.h-timeline-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(6, 36, 52, 0.12);
    border-radius: 4px;
}

.h-timeline-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 4px;
}

.h-timeline-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

/* Horizontal Track & Center Line */
.h-timeline-track {
    display: flex;
    align-items: center;
    min-width: 3200px;
    position: relative;
    padding: 180px 40px;
    /* Generous top/bottom space for cards */
}

.h-timeline-center-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(33, 184, 201, 0.6) 0%, rgba(50, 132, 175, 0.6) 50%, rgba(6, 36, 52, 0.4) 100%);
    transform: translateY(-50%);
    z-index: 1;
}

/* Horizontal Node Items (Scroll Triggered Animation) */
.h-item {
    position: relative;
    width: 240px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(35px) scale(0.88);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.h-item.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered Scroll Delays for Timeline Items */
.h-item.animate-in:nth-child(1) {
    transition-delay: 0.05s;
}

.h-item.animate-in:nth-child(2) {
    transition-delay: 0.15s;
}

.h-item.animate-in:nth-child(3) {
    transition-delay: 0.25s;
}

.h-item.animate-in:nth-child(4) {
    transition-delay: 0.35s;
}

.h-item.animate-in:nth-child(5) {
    transition-delay: 0.45s;
}

.h-item.animate-in:nth-child(6) {
    transition-delay: 0.55s;
}

.h-item.animate-in:nth-child(7) {
    transition-delay: 0.65s;
}

.h-item.animate-in:nth-child(8) {
    transition-delay: 0.75s;
}

.h-item.animate-in:nth-child(9) {
    transition-delay: 0.85s;
}

.h-item.animate-in:nth-child(10) {
    transition-delay: 0.95s;
}

.h-item.animate-in:nth-child(11) {
    transition-delay: 1.05s;
}

.h-item.animate-in:nth-child(12) {
    transition-delay: 1.15s;
}

.h-item.animate-in:nth-child(13) {
    transition-delay: 1.25s;
}

.h-item.animate-in:nth-child(14) {
    transition-delay: 1.35s;
}

/* Year Dot Pill Locked Exactly on Central Axis Line */
.h-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.h-year {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 0 0 4px var(--light-bg), 0 6px 15px rgba(50, 132, 175, 0.3);
    white-space: nowrap;
    transition: transform 0.3s ease, background 0.3s ease;
    display: inline-block;
}

.h-item:hover .h-year {
    transform: scale(1.15);
    background: linear-gradient(135deg, var(--secondary-teal) 0%, var(--primary-blue) 100%);
}

/* Top Node Cards (Above Center Line) */
.h-top .h-card {
    position: absolute;
    bottom: 40px;
    /* Clean gap above year pill */
    left: 50%;
    transform: translateX(-50%);
}

/* Vertical Connector Line from Top Card down to Center Line */
.h-top .h-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    border-left: 2px dashed var(--secondary-teal);
}

/* Bottom Node Cards (Below Center Line) */
.h-bottom .h-card {
    position: absolute;
    top: 40px;
    /* Clean gap below year pill */
    left: 50%;
    transform: translateX(-50%);
}

/* Vertical Connector Line from Bottom Card up to Center Line */
.h-bottom .h-card::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    border-left: 2px dashed var(--secondary-teal);
}

.h-year {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 0 0 4px var(--white), 0 6px 15px rgba(50, 132, 175, 0.3);
    white-space: nowrap;
    transition: transform 0.3s ease, background 0.3s ease;
    display: inline-block;
}

.h-item:hover .h-year {
    transform: scale(1.15);
    background: linear-gradient(135deg, var(--secondary-teal) 0%, var(--primary-blue) 100%);
}

/* Card Boxes */
.h-card {
    background: var(--white);
    padding: 20px 22px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(50, 132, 175, 0.12);
    width: 220px;
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.h-top:hover .h-card {
    transform: translate(-50%, -6px);
    box-shadow: 0 18px 35px rgba(33, 184, 201, 0.18);
    border-color: var(--secondary-teal);
}

.h-bottom:hover .h-card {
    transform: translate(-50%, 6px);
    box-shadow: 0 18px 35px rgba(33, 184, 201, 0.18);
    border-color: var(--secondary-teal);
}

.h-badge {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--primary-blue);
    background: #eaf6fa;
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.h-card.cert-card .h-badge {
    color: #059669;
    background: #ecfdf5;
}

.h-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.h-card p {
    font-size: 12px;
    line-height: 1.5;
    color: #626e73;
    margin: 0;
}

/* --- Section 3: Vision, Purpose & Values (Ultra Premium Redesign) --- */
.vpv-section {
    position: relative;
    background: linear-gradient(180deg, #03121c 0%, #062434 50%, #03121c 100%);
    color: #ffffff;
}

/* Ambient Radial Glow Background Effect */
.vpv-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(33, 184, 201, 0.12) 0%, rgba(3, 18, 28, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.vpv-section .container {
    position: relative;
    z-index: 2;
}

.vpv-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.vpv-section .eag-main-title {
    color: #ffffff !important;
}

.vpv-main-headline {
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0;
}

.vpv-main-headline span {
    color: #21b8c9;
    font-family: 'Dancing Script', cursive;
    font-size: 1.2em;
    font-weight: 600;
    text-shadow: 0 0 25px rgba(33, 184, 201, 0.4);
}

/* Vision, Purpose, Mission Pillars Grid */
.vpv-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.vpv-pillar-card {
    background: linear-gradient(135deg, rgba(13, 50, 72, 0.55) 0%, rgba(6, 36, 52, 0.75) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.vpv-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s ease;
}

.vpv-pillar-card.vpv-vision::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.vpv-pillar-card.vpv-purpose::before {
    background: linear-gradient(90deg, #21b8c9, #38bdf8);
}

.vpv-pillar-card.vpv-mission::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.vpv-pillar-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(13, 50, 72, 0.75) 0%, rgba(6, 36, 52, 0.9) 100%);
}

.vpv-pillar-card:hover::before {
    height: 6px;
}

.vpv-pillar-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.vpv-vision .vpv-pillar-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.vpv-purpose .vpv-pillar-icon {
    background: rgba(33, 184, 201, 0.15);
    color: #21b8c9;
    border: 1px solid rgba(33, 184, 201, 0.3);
}

.vpv-mission .vpv-pillar-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.vpv-pillar-card:hover .vpv-pillar-icon {
    transform: scale(1.1);
}

.vpv-pillar-tag {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 14px;
}

.vpv-pillar-text {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin: 0;
}

/* Core Values Header & Cards Grid */
.vpv-values-header {
    text-align: center;
    margin-bottom: 45px;
}

.vpv-sub-title {
    font-size: 35px;
    color: #ffffff;
}

.values-cards-wrapper.five-cards-layout {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.five-cards-layout .v-card {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    border-radius: 14px;
    padding: 28px 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.five-cards-layout .v-card-1 {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 122, 85, 0.25) 100%);
    border-top: 3px solid #10b981;
}

.five-cards-layout .v-card-2 {
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.15) 0%, rgba(180, 83, 9, 0.25) 100%);
    border-top: 3px solid #f59e0b;
}

.five-cards-layout .v-card-3 {
    background: linear-gradient(145deg, rgba(14, 165, 233, 0.15) 0%, rgba(2, 132, 199, 0.25) 100%);
    border-top: 3px solid #0ea5e9;
}

.five-cards-layout .v-card-4 {
    background: linear-gradient(145deg, rgba(20, 184, 166, 0.15) 0%, rgba(13, 148, 136, 0.25) 100%);
    border-top: 3px solid #14b8a6;
}

.five-cards-layout .v-card-5 {
    background: linear-gradient(145deg, rgba(244, 63, 94, 0.15) 0%, rgba(225, 29, 72, 0.25) 100%);
    border-top: 3px solid #f43f5e;
}

.five-cards-layout .v-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.3);
}

.five-cards-layout .v-card-num {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.five-cards-layout .v-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1.35;
    margin-bottom: 12px;
}

.five-cards-layout .v-card-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    margin: 0;
}

/* Responsive Media Queries for Section 3 */
@media (max-width: 1200px) {
    .values-cards-wrapper.five-cards-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .vpv-pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .values-cards-wrapper.five-cards-layout {
        grid-template-columns: 1fr;
    }

    .vpv-section {
        padding: 60px 20px;
    }
}

/* --- Section 4: Leadership Section --- */

.leadership-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Executive Top Row (C-Suite: MD, CEO, CFO) */
.leadership-exec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.exec-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    position: relative;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(6, 36, 52, 0.06);
}

.exec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #21b8c9, #0e7490);
    border-radius: 16px 16px 0 0;
}

.exec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(6, 36, 52, 0.14);
    border-color: #21b8c9;
}

.leader-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, #062434 0%, #0d3248 100%);
    color: #21b8c9;
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 25px rgba(6, 36, 52, 0.15);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exec-card:hover .leader-avatar {
    transform: scale(1.06);
}

.leader-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark, #062434);
    margin: 0 0 8px 0;
}

.leader-role {
    display: inline-block;
    font-size: 13.5px;
    font-weight: 600;
    color: #0284c7;
    background: #f0f9ff;
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid #bae6fd;
    line-height: 1.4;
}

/* Secondary VPs & Operations Grid (8 Leaders) */
.leadership-vps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vp-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.vp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(6, 36, 52, 0.1);
    border-color: #21b8c9;
}

.vp-card .leader-avatar {
    width: 120px;
    height: 120px;
    font-size: 24px;
    margin-bottom: 18px;
}

.vp-card .leader-name {
    font-size: 17px;
    margin-bottom: 6px;
}

.vp-card .leader-role {
    font-size: 12.5px;
    padding: 4px 12px;
}

@media (max-width: 1100px) {
    .leadership-vps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .leadership-exec-grid {
        grid-template-columns: 1fr;
    }

    .leadership-vps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .leadership-vps-grid {
        grid-template-columns: 1fr;
    }

    .leadership-section {
        padding: 60px 20px;
    }

    .group-structure-section {
        padding: 60px 20px;
    }

    .leader-avatar {
        width: 130px;
        height: 130px;
    }

    .vp-card .leader-avatar {
        width: 100px;
        height: 100px;
    }
}

/* --- Section 5: Group Structure --- */
.group-structure-section {
    padding: 0px 0 90px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    overflow: hidden;
}

.group-structure-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.group-structure-content p strong {
    color: var(--primary-dark, #062434);
}

/* Hierarchy Visual Flow Box */
.hierarchy-card-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(6, 36, 52, 0.08);
    position: relative;
    text-align: center;
}

.hierarchy-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark, #062434);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: block;
}

.hierarchy-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hierarchy-node {
    width: 100%;
    max-width: 360px;
    background: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 18px 24px;
    transition: all 0.3s ease;
    position: relative;
}

.hierarchy-node:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(33, 184, 201, 0.15);
    border-color: #21b8c9;
}

.hierarchy-node.active-cluster {
    background: linear-gradient(135deg, #062434 0%, #0d3248 100%);
    color: #ffffff;
    border-color: #21b8c9;
    box-shadow: 0 15px 35px rgba(6, 36, 52, 0.25);
}

.node-name {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.node-desc {
    font-size: 12.5px;
    color: #64748b;
    font-weight: 500;
    display: block;
}

.hierarchy-node.active-cluster .node-desc {
    color: #21b8c9;
}

.hierarchy-connector {
    color: #21b8c9;
    font-size: 18px;
    animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(5px);
    }

    60% {
        transform: translateY(3px);
    }
}

@media (max-width: 992px) {
    .group-structure-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0px 20px;
    }
}

/* --- Section 6: Awards & Accolades --- */
.awards-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Asymmetric Editorial Recognition Gallery Grid */
.awards-gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 40px;
}

/* Right side grid for 3 supporting tiles */
.awards-sub-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Recognition Tile Base Styling */
.award-tile {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 25px rgba(6, 36, 52, 0.05);
    display: flex;
    gap: 20px;
    align-items: center;
}

.award-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(6, 36, 52, 0.12);
    border-color: #cbd5e1;
}

/* Large Featured Recognition Tile */
.award-tile.featured-award {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    border-top: 4px solid #f59e0b;
    /* Restrained Gold Accent */
}

.award-tile.featured-award .award-img-wrapper {
    width: 100%;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.award-tile.featured-award .award-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.award-tile.featured-award:hover .award-img-wrapper img {
    transform: scale(1.04);
}

/* Sub-tiles Layout */
.award-tile.sub-award {
    border-top: 4px solid #cbd5e1;
}

.award-tile.award-silver {
    border-top-color: #94a3b8;
    /* Restrained Silver Accent */
}

.award-tile.award-bronze {
    border-top-color: #b45309;
    /* Restrained Bronze Accent */
}

.award-tile.award-teal {
    border-top-color: #21b8c9;
    /* Restrained ECG Teal Accent */
}

.award-tile.sub-award .award-img-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #e2e8f0;
}

.award-tile.sub-award .award-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tile Typography & Content */
.award-content {
    flex-grow: 1;
}

.award-badge-pill {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.badge-gold {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
}

.badge-silver {
    background: rgba(148, 163, 184, 0.15);
    color: #475569;
}

.badge-bronze {
    background: rgba(180, 83, 9, 0.12);
    color: #b45309;
}

.badge-teal {
    background: rgba(33, 184, 201, 0.12);
    color: #0284c7;
}

.award-category-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark, #062434);
    margin: 0 0 6px 0;
    line-height: 1.35;
}

.featured-award .award-category-title {
    font-size: 22px;
    margin-bottom: 8px;
}

.award-issuer {
    font-size: 13.5px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 4px;
    display: block;
}

.award-detail-line {
    font-size: 12.5px;
    color: #64748b;
    margin: 0;
}

/* Optional Expansion Footer Action */
.awards-action-row {
    text-align: center;
    margin-top: 35px;
}

.btn-recognition-modal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark, #062434);
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-recognition-modal:hover {
    border-color: #21b8c9;
    color: #21b8c9;
    box-shadow: 0 6px 20px rgba(33, 184, 201, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .awards-gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .award-tile.sub-award {
        flex-direction: row;
    }
}

@media (max-width: 600px) {
    .award-tile.sub-award {
        flex-direction: column;
        align-items: flex-start;
    }

    .award-tile.sub-award .award-img-wrapper {
        width: 100%;
        height: 160px;
    }

    .innovations-section {
        padding: 60px 20px;
    }
}

/* Custom Lightweight Awards Modal */
.custom-awards-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 18, 28, 0.75);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-awards-modal.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal-dialog {
    background: #ffffff;
    width: 90%;
    max-width: 650px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    transform: translateY(-20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.custom-awards-modal.active .custom-modal-dialog {
    transform: translateY(0) scale(1);
}

.custom-modal-header {
    background: #062434;
    color: #ffffff;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-modal-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.custom-modal-close:hover {
    color: #21b8c9;
}

.custom-modal-body {
    padding: 28px;
    background: #f8fafc;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    max-height: 70vh;
    overflow-y: auto;
}

.custom-modal-footer {
    background: #ffffff;
    padding: 16px 28px;
    border-top: 1px solid #e2e8f0;
    text-align: right;
}

.btn-modal-close-action {
    background: #062434;
    color: #ffffff;
    border: none;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-modal-close-action:hover {
    background: #21b8c9;
}

/* Premium Quiet Page-End Prelude Section */
.page-end-prelude {
    background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
    border-top: 1px solid #e2e8f0;
    padding: 70px 0;
    position: relative;
}

.page-end-prelude .prelude-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.page-end-prelude .prelude-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.page-end-prelude .prelude-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.page-end-prelude .prelude-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #21b8c9;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-end-prelude .prelude-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
    box-shadow: 0 15px 35px rgba(6, 36, 52, 0.08);
}

.page-end-prelude .prelude-card:hover::before {
    opacity: 1;
}

.page-end-prelude .prelude-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(33, 184, 201, 0.1);
    color: #21b8c9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.page-end-prelude .prelude-card:hover .prelude-card-icon {
    background: #062434;
    color: #ffffff;
}

.page-end-prelude .prelude-card-content {
    flex-grow: 1;
}

.page-end-prelude .prelude-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.page-end-prelude .prelude-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #062434;
    transition: color 0.3s ease;
}

.page-end-prelude .prelude-card:hover .prelude-card-title {
    color: #21b8c9;
}

.page-end-prelude .prelude-arrow {
    font-size: 0.85rem;
    color: #94a3b8;
    transition: transform 0.3s ease, color 0.3s ease;
}

.page-end-prelude .prelude-card:hover .prelude-arrow {
    color: #21b8c9;
    transform: translateX(4px);
}

.page-end-prelude .prelude-card-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.45;
}

@media (max-width: 991px) {
    .page-end-prelude .prelude-cards-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .group-structure-section {
        padding: 0px 0 60px;
    }
}

/* Comprehensive Responsive Adjustments for Mobile & Tablets */
@media (max-width: 768px) {

    /* Section 1: Who We Are & Universal Mobile Visibility */
    .innovations-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }


    .timeline-main-title {
        font-size: 35px !important;
    }

    .innovations-content,
    .innovations-images-wrapper,
    .v-card,
    .values-content,
    .h-item {
        opacity: 1 !important;
        transform: none !important;
    }

    .innovations-images-wrapper {
        flex-direction: column !important;
        gap: 16px !important;
        height: auto !important;
    }

    .innovations-img-card {
        width: 100% !important;
        height: 220px !important;
    }

    .innovations-img-card.card-left,
    .innovations-img-card.card-right {
        margin: 0 !important;
        transform: none !important;
        animation: none !important;
    }

    /* Section 2: Timeline Mobile Touch Scroll Optimization */
    .h-timeline-scroll-wrapper {
        padding: 60px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .h-timeline-track {
        padding: 140px 20px;
        min-width: 2800px;
    }

    .h-card {
        width: 200px !important;
        padding: 12px 14px !important;
    }

    .h-card h3 {
        font-size: 0.9rem !important;
    }

    .h-card p {
        font-size: 0.78rem !important;
    }

    /* Section 3: Vision, Purpose & Values */
    .vpv-pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .vpv-pillar-card {
        padding: 28px 20px !important;
    }

    .values-cards-wrapper.five-cards-layout {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Section 4: Leadership */
    .leadership-exec-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .leadership-vps-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .exec-card,
    .vp-card {
        padding: 24px 18px !important;
    }

    .exec-grid-2col {
        grid-template-columns: 1fr !important;
    }

    /* Section 5: Group Structure */

    .hierarchy-card-box {
        padding: 30px 18px !important;
    }

    .hierarchy-node {
        padding: 16px 18px !important;
        max-width: 100% !important;
    }

    .node-name {
        font-size: 16px !important;
    }

    .node-desc {
        font-size: 12px !important;
    }

    /* Section 6: Awards & Accolades */
    .awards-gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .award-tile.featured-award {
        padding: 24px 18px !important;
    }

    .award-tile.featured-award .award-img-wrapper {
        height: 180px !important;
    }

    .award-category-title {
        font-size: 16px !important;
    }

    .featured-award .award-category-title {
        font-size: 18px !important;
    }

    /* Custom Modal */
    .custom-modal-dialog {
        width: 94% !important;
        margin: 0 10px;
    }

    .custom-modal-header,
    .custom-modal-body,
    .custom-modal-footer {
        padding: 18px !important;
    }

    .custom-modal-title {
        font-size: 1rem !important;
    }

    /* Page-End Prelude */
    .page-end-prelude {
        padding: 60px 0px !important;
    }

    .page-end-prelude .prelude-title {
        font-size: 1.15rem !important;
        margin-bottom: 24px !important;
    }

    .page-end-prelude .prelude-card {
        padding: 18px !important;
        gap: 14px !important;
    }

    .page-end-prelude .prelude-card-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.95rem !important;
    }

    .page-end-prelude .prelude-card-title {
        font-size: 1rem !important;
    }

    .page-end-prelude .prelude-card-desc {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {

    .award-tile.sub-award {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .award-tile.sub-award .award-img-wrapper {
        width: 100% !important;
        height: 140px !important;
    }
}