* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #1A1A1A;
    color: #FFFFFF;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

h1,
h2,
h3 {
    color: #FFFFFF;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

/* ===== NAVIGATION ===== */
header {
    background: #1A1A1A;
    border-bottom: 1px solid #D4AF37;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: #D4AF37;
}

.nav-links a.active {
    color: #D4AF37;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #D4AF37;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FFFFFF;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background: #D4AF37;
    color: #1A1A1A;
}

.btn-primary:hover {
    background: #B8960F;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #D4AF37;
    color: #D4AF37;
    background: transparent;
}

.btn-outline:hover {
    background: #D4AF37;
    color: #1A1A1A;
    transform: translateY(-2px);
}

/* ===== HERO VIDEO ===== */
.hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-tagline {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #CCCCCC;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
    border: 1px solid #D4AF37;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   LIVELY BACKGROUND WITH BOLD GOLD PARTICLES
   ============================================ */

.lively-bg {
    position: relative;
    overflow: hidden;
    background: #1A1A1A;
}

/* Primary particle layer - bold and visible */
.lively-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(3px 3px at 10% 20%, rgba(212, 175, 55, 0.4), transparent),
        radial-gradient(3px 3px at 25% 65%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(4px 4px at 40% 10%, rgba(212, 175, 55, 0.35), transparent),
        radial-gradient(3px 3px at 55% 80%, rgba(212, 175, 55, 0.4), transparent),
        radial-gradient(4px 4px at 70% 30%, rgba(212, 175, 55, 0.35), transparent),
        radial-gradient(3px 3px at 85% 70%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2.5px 2.5px at 15% 45%, rgba(212, 175, 55, 0.5), transparent),
        radial-gradient(2.5px 2.5px at 50% 50%, rgba(212, 175, 55, 0.25), transparent),
        radial-gradient(3px 3px at 75% 15%, rgba(212, 175, 55, 0.4), transparent),
        radial-gradient(3px 3px at 92% 55%, rgba(212, 175, 55, 0.35), transparent),
        radial-gradient(2px 2px at 5% 90%, rgba(212, 175, 55, 0.5), transparent),
        radial-gradient(2px 2px at 35% 95%, rgba(212, 175, 55, 0.35), transparent),
        radial-gradient(2px 2px at 60% 5%, rgba(212, 175, 55, 0.45), transparent),
        radial-gradient(2px 2px at 95% 85%, rgba(212, 175, 55, 0.4), transparent);
    background-size: 350px 350px;
    background-repeat: repeat;
    animation: particleDrift 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* Secondary particle layer - larger, slower */
.lively-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(5px 5px at 20% 80%, rgba(212, 175, 55, 0.15), transparent),
        radial-gradient(6px 6px at 45% 25%, rgba(212, 175, 55, 0.12), transparent),
        radial-gradient(5px 5px at 80% 45%, rgba(212, 175, 55, 0.18), transparent),
        radial-gradient(4px 4px at 10% 30%, rgba(212, 175, 55, 0.2), transparent),
        radial-gradient(4px 4px at 65% 90%, rgba(212, 175, 55, 0.15), transparent),
        radial-gradient(5px 5px at 90% 10%, rgba(212, 175, 55, 0.18), transparent);
    background-size: 500px 500px;
    background-repeat: repeat;
    animation: particleDrift 35s linear infinite reverse;
    pointer-events: none;
    z-index: 0;
}

/* Ensure content sits above particles */
.lively-bg .container {
    position: relative;
    z-index: 1;
}

/* Particle drift animation */
@keyframes particleDrift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-20px, -15px) rotate(2deg);
    }
    50% {
        transform: translate(10px, -25px) rotate(-1deg);
    }
    75% {
        transform: translate(-15px, 10px) rotate(3deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* ============================================
   FADE-UP ANIMATION (Scroll Trigger)
   ============================================ */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
    transition-delay: 0.2s;
}

.fade-up:nth-child(4) {
    transition-delay: 0.3s;
}

.fade-up:nth-child(5) {
    transition-delay: 0.4s;
}

.fade-up:nth-child(6) {
    transition-delay: 0.5s;
}

/* ===== VISION & MISSION ===== */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.vision-card {
    background: #2A2A2A;
    padding: 32px 28px;
    border-radius: 16px;
    border: 1px solid #3A3A3A;
    transition: all 0.3s;
}

.vision-card:hover {
    border-color: #D4AF37;
}

.vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.vision-card p {
    color: #CCCCCC;
    line-height: 1.7;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-card {
    background: #2A2A2A;
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid #3A3A3A;
    transition: all 0.3s;
}

.why-card:hover {
    border-color: #D4AF37;
}

.why-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-card p {
    color: #CCCCCC;
    line-height: 1.7;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #3A3A3A;
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: #D4AF37;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* ===== DETAIL STRIP ===== */
.detail-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.detail-item {
    overflow: hidden;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    border: 2px solid #D4AF37;
    transition: all 0.3s;
}

.detail-item:hover {
    transform: scale(1.05);
    border-color: #FFFFFF;
}

.detail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: #2A2A2A;
    border: 1px solid #3A3A3A;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}

.service-card i {
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #D4AF37;
    margin-bottom: 10px;
}

.service-card p {
    color: #CCCCCC;
    line-height: 1.6;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    background: #222222;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.portfolio-item {
    background: #2A2A2A;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #3A3A3A;
    transition: all 0.3s;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: scale(1.02);
    border-color: #D4AF37;
}

.portfolio-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-item h4 {
    padding: 15px 15px 5px;
    color: #FFFFFF;
}

.portfolio-item p {
    padding: 0 15px 15px;
    color: #D4AF37;
}

/* ===== GALLERY ICON OVERLAY ===== */
.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 26, 26, 0.85);
    padding: 12px 18px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #D4AF37;
    opacity: 0;
    transition: all 0.3s;
}

.portfolio-item:hover .gallery-icon {
    opacity: 1;
}

.gallery-icon i {
    color: #D4AF37;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 4px;
}

.gallery-icon span {
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== PLAY OVERLAY ===== */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #D4AF37;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.play-overlay i {
    color: #1A1A1A;
    font-size: 1.2rem;
}

.portfolio-item:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

/* ===== VIDEO MODAL ===== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #D4AF37;
}

.video-modal iframe {
    width: 100%;
    height: 450px;
    border-radius: 12px;
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #D4AF37;
}

.lightbox-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    border-radius: 12px;
    background: #111;
}

.lightbox-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* ===== LIGHTBOX ARROW BUTTONS ===== */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    color: #1A1A1A;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
}

.lightbox-arrow:hover {
    background: #D4AF37;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow:focus {
    outline: none;
}

.lightbox-arrow.lightbox-prev {
    left: 15px;
}

.lightbox-arrow.lightbox-next {
    right: 15px;
}

.lightbox-arrow i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.lightbox-counter {
    text-align: center;
    color: #CCCCCC;
    font-size: 0.9rem;
    margin-top: 15px;
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.lightbox-thumbnails img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    opacity: 0.6;
}

.lightbox-thumbnails img:hover,
.lightbox-thumbnails img.active-thumb {
    border-color: #D4AF37;
    opacity: 1;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.testimonial-card {
    background: #2A2A2A;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #3A3A3A;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: #D4AF37;
}

.testimonial-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* ===== CEO SECTION ===== */
.ceo-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.ceo-image {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #D4AF37;
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ceo-text h2 {
    text-align: left;
    margin-bottom: 4px;
}

.ceo-text blockquote {
    margin-top: 20px;
}

/* ===== PARTNERS / LOGOS ===== */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px 50px;
    margin-top: 20px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.partner-logo img {
    height: 70px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: all 0.3s;
    filter: none;
}

.partner-logo img:hover {
    transform: scale(1.05);
}

.partner-logo img[src*="logo-britam"],
.partner-logo img[src*="logo-equity"],
.partner-logo img[src*="logo-mastercard"],
.partner-logo img[src*="logo-ntv"] {
    max-width: 100px;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-detail i {
    width: 40px;
    height: 40px;
    background: #2A2A2A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    transition: all 0.3s;
}

.contact-detail:hover i {
    transform: scale(1.1);
    background: #D4AF37;
    color: #1A1A1A;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    color: #FFFFFF;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-links a:hover {
    color: #D4AF37;
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    background: #2A2A2A;
    border: 1px solid #3A3A3A;
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

button {
    background: #D4AF37;
    color: #1A1A1A;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

button:hover {
    background: #B8960F;
    transform: translateY(-2px);
}

/* ===== FORM MESSAGE STYLES ===== */
.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.form-message.success {
    background-color: #D4AF37;
    color: #1A1A1A;
}

.form-message.error {
    background-color: #3A1A1A;
    color: #D4AF37;
    border: 1px solid #D4AF37;
}

/* ===== FOOTER ===== */
.footer-logo {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-logo-img:hover {
    opacity: 1;
}

footer {
    background: #111;
    padding: 30px;
    text-align: center;
    border-top: 1px solid #2A2A2A;
    color: #888;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #1A1A1A;
        padding: 20px;
        position: absolute;
        top: 70px;
        left: 0;
        text-align: center;
        border-bottom: 1px solid #333;
    }

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

    .nav-links a.active::after {
        display: none;
    }

    .hero-slideshow {
        height: 300px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .detail-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 400px;
    }

    .video-modal iframe {
        height: 250px;
    }

    .logo-img {
        height: 35px;
    }

    .footer-logo-img {
        height: 35px;
    }

    .gallery-item img {
        height: 200px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .services-grid {
        gap: 15px;
    }

    .portfolio-grid {
        gap: 15px;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        grid-column: 1 !important;
    }

    .ceo-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .ceo-image {
        max-width: 200px;
        margin: 0 auto;
    }

    .ceo-text h2 {
        text-align: center;
    }

    .ceo-text blockquote {
        text-align: center;
        border-left: none;
        padding-left: 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        gap: 20px 30px;
    }

    .partner-logo {
        height: 50px;
    }

    .partner-logo img {
        height: 50px;
        max-width: 120px;
    }

    .partner-logo img[src*="logo-britam"],
    .partner-logo img[src*="logo-equity"],
    .partner-logo img[src*="logo-mastercard"],
    .partner-logo img[src*="logo-ntv"] {
        max-width: 80px;
    }

    .lightbox-slider {
        height: 50vh;
    }

    .lightbox-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .lightbox-arrow.lightbox-prev {
        left: 8px;
    }

    .lightbox-arrow.lightbox-next {
        right: 8px;
    }

    .lightbox-thumbnails img {
        width: 50px;
        height: 35px;
    }

    .gallery-icon {
        padding: 8px 12px;
    }

    .gallery-icon i {
        font-size: 1.2rem;
    }

    .gallery-icon span {
        font-size: 0.6rem;
    }

    /* Mobile-specific particle boost */
    .lively-bg::before {
        background-size: 250px 250px;
        opacity: 1;
    }

    .lively-bg::after {
        background-size: 350px 350px;
        opacity: 1;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .detail-strip {
        max-width: 700px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .ceo-grid {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }

    .ceo-image {
        max-width: 250px;
    }

    .hero-slideshow {
        height: 400px;
    }
}
