/* --- Contact Sidebar Mejorado --- */
.contact-sidebar {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 24px 28px 24px;
}
.contact-sidebar h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e53958;
    margin-top: 18px;
    margin-bottom: 12px;
}
.contact-sidebar .business-hours {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 16px 14px;
    margin-bottom: 18px;
}
.contact-sidebar .hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
    padding: 6px 0;
    border-bottom: 1px solid #ececec;
}
.contact-sidebar .hours-item:last-child {
    border-bottom: none;
}
.contact-sidebar p strong {
    color: #e53958;
    font-size: 1.15rem;
    letter-spacing: 1px;
}
.contact-sidebar .social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}
.contact-sidebar .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e53958;
    color: #fff;
    font-size: 1.3rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(229,57,88,0.08);
}
.contact-sidebar .social-links a:hover {
    background: #fff;
    color: #e53958;
    border: 1.5px solid #e53958;
    transform: scale(1.08);
}
/* Separación entre filas de servicios */
.services-cards-row > .col-lg-4:nth-child(4) {
    margin-top: 20px;
}
/* --- BOTÓN LEER MÁS FOOTER --- */
.site-footer .readmore {
    background: #e53958 !important;
    color: #fff !important;
    border-radius: 8px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-block;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
}
.site-footer .readmore:hover {
    background: #fff !important;
    color: #e53958 !important;
    text-decoration: none;
}
/* --- ICONOS SOCIALES FOOTER --- */
.footer-bottom-social .dlab-social-icon {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}
.footer-bottom-social .dlab-social-icon li {
    list-style: none;
}
.footer-bottom-social .dlab-social-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    width: 48px;
    min-width: 48px;
    max-width: 48px;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    border-radius: 50%;
    background: #fff;
    color: #e53958;
    font-size: 1.7rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: none;
}
.footer-bottom-social .dlab-social-icon a:hover {
    background: #e53958;
    color: #fff !important;
    filter: drop-shadow(0 2px 8px rgba(229,57,88,0.15));
    transform: scale(1.08);
}
/* --- BLOQUES DE CONTACTO PERSONALIZADOS (sin fondo rojo) --- */
.dlab-newsletter .ft-contact-bx {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #fff !important;
    border-radius: 18px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin: 0 8px !important;
    padding: 32px 16px !important;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    min-width: 220px;
    transition: transform 0.2s, box-shadow 0.2s;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.dlab-newsletter .ft-contact-bx:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 0.1) !important;
}
.dlab-newsletter .ft-contact-bx i,
.dlab-newsletter .ft-contact-bx .fas {
    color: #fff !important;
    margin-bottom: 10px;
    font-size: 2.2rem;
}
.dlab-newsletter .ft-contact-bx .title {
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff !important;
    font-size: 1.3rem;
}
.dlab-newsletter .ft-contact-bx p {
    color: #fff !important;
    margin-bottom: 0;
    font-size: 1.1rem;
}
.dlab-newsletter .ft-contact-bx:after {
    display: none !important;
}
@media (max-width: 991px) {
    .dlab-newsletter .ft-contact.d-flex {
        flex-direction: column !important;
        gap: 16px !important;
    }
    .dlab-newsletter .ft-contact-bx {
        margin: 0 !important;
    }
}
/* Custom CSS for XOLOGAS Portal Web */

/* Global Styles */
/* Paleta de colores XOLOGAS basada en el logo */
:root {
    /* Colores principales del logo - Sincronizados con skin-1.css */
    --primary-color: var(--color-primary);        /* Rojo principal del logo */
    --primary-dark: var(--color-hover);            /* Rojo oscuro para hover */
    --primary-light: #E63950;                     /* Rojo claro para efectos */
    --secondary-color: var(--color-secondry);     /* Negro del logo */
    --secondary-light: #1a1a1a;                    /* Negro suave para fondos */
    --accent-color: var(--color-primary);          /* Acento rojo */
    --text-color: var(--text-sec);                 /* Color de texto */
    --text-dark: var(--color-secondry);           /* Texto oscuro */
    --light-gray: #f8f9fa;                        /* Gris claro para fondos */
    --dark-gray: #6c757d;                         /* Gris oscuro */
    --white: var(--color-white);                  /* Blanco del logo */
    
    /* Gradientes basados en la paleta del logo */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-hover) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--color-secondry) 0%, #1a1a1a 100%);
    --gradient-red-black: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondry) 100%);
    
    /* Sombras */
    --shadow-light: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-red: 0 10px 30px var(--rgba-primary-3);
    
    /* Otros */
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 999;
}

.main-bar {
    position: relative;
}

.main-bar .container {
    position: relative;
}

.top-bar {
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 0;
}

.top-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.top-bar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.top-bar ul li a:hover {
    color: var(--primary-color);
}

.sticky-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Navigation Styles */
.header-nav .nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-right: 60px; /* Add space for search button */
}

.header-nav .nav > li > a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 23px 17px 22px 17px;
    position: relative;
    transition: color 0.3s ease;
    border: none !important;
    border-radius: 0;
}

.header-nav .nav > li > a:hover,
.header-nav .nav > li.active > a {
    color: var(--primary-color);
    background-color: transparent !important;
}

.header-nav .nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.header-nav .nav > li > a:hover::after,
.header-nav .nav > li.active > a::after {
    width: 100%;
}

/* Remove black borders from navbar items */
.header-nav .nav > li {
    border: none !important;
    border-left: none !important;
    border-right: none !important;
}

.header-nav .nav > li > a {
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

/* Dropdown Menu Styles */
.header-nav .nav > li {
    position: relative;
}

.header-nav .nav > li .mega-menu,
.header-nav .nav > li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 200px;
}

.header-nav .nav > li:hover .mega-menu,
.header-nav .nav > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-nav .nav > li .mega-menu {
    min-width: 600px;
    padding: 20px;
}

.header-nav .nav > li .sub-menu {
    padding: 10px 0;
}

.header-nav .nav > li .sub-menu li {
    list-style: none;
}

.header-nav .nav > li .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-nav .nav > li .sub-menu li a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

/* Hero Section Styles */
.hero-sec {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-content .description {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-content .buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-content .buttons a {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.hero-content .buttons a:hover {
    background: transparent;
    color: var(--primary-color);
}

.hero-content .buttons a:last-child {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.hero-content .buttons a:last-child:hover {
    background: #fff;
    color: var(--text-color);
}

/* Section Styles */
.section-full {
    padding: 80px 0;
}

.section-head {
    margin-bottom: 60px;
}

.section-head .title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-head p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Margen entre primera y segunda fila de cards de servicios */
.services-cards-row .col-lg-4:nth-child(n+4) {
    margin-top: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .services-cards-row .col-lg-4:nth-child(n+3) {
        margin-top: 20px;
    }
}
@media (max-width: 767px) {
    .services-cards-row .col-lg-4:nth-child(n+2) {
        margin-top: 20px;
    }
}

/* Service Box Styles */
.service-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(220, 20, 60, 0.1);
    line-height: 1;
    z-index: 1;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-box:hover .service-number {
    color: rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.service-box:hover .service-icon {
    background: var(--gradient-secondary);
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-box p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.service-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.service-box ul li {
    padding: 5px 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 20px;
}

.service-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.readmore {
    display: inline-block;
    padding: 12px 25px;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.readmore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.readmore:hover::before {
    left: 100%;
}

.readmore:hover {
    background: var(--gradient-secondary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* About Section Styles */
.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.about-feature {
    margin-bottom: 30px;
}

.about-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

/* Fact Box Styles */
.fact-box {
    text-align: center;
    padding: 30px 20px;
}

.fact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.fact-icon i {
    font-size: 2rem;
    color: #fff;
}

.fact-box h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.fact-box p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Team Member Styles */
.team-member {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 30px 20px;
}

.team-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.team-content p {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Contact Styles */
.contact-info-box {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 2rem;
    color: #fff;
}

.contact-info-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.contact-info-box p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Form Styles */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--text-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.form-control.error {
    border-color: #dc3545;
}

/* Button Styles */
.site-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.site-button:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

.site-button.btnhover13 {
    position: relative;
    overflow: hidden;
}

.site-button.btnhover13::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.site-button.btnhover13:hover::before {
    left: 100%;
}

/* Footer Styles */
.site-footer {
    background: var(--secondary-color);
    color: #fff;
    overflow: hidden;
}

/* Sección de contacto (teléfono, dirección, correo) - fondo oscuro, sin rojo */
.dlab-newsletter {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    padding: 50px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Quitar la capa gris que templete.css pone encima de las cards (::after) */
.site-footer.style1 .dlab-newsletter::after {
    display: none !important;
}

/* Asegurar que las cards de contacto queden por encima de capas del footer */
.dlab-newsletter .container,
.dlab-newsletter .ft-contact {
    position: relative;
    z-index: 2;
}

.dlab-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 1;
    pointer-events: none;
}

/* Quitar fondo rojo del contenedor de las cards (override de templete.css) */
.dlab-newsletter .ft-contact {
    background: transparent !important;
    border-radius: 0;
}

.ft-contact {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.ft-contact-bx {
    text-align: center;
    flex: 1;
    min-width: 250px;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.ft-contact-bx:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ft-contact-bx img {
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.ft-contact-bx:hover img {
    transform: scale(1.1);
}

/* Títulos y texto en blanco para contraste (anula .title con gradiente) */
.dlab-newsletter .ft-contact-bx h4,
.dlab-newsletter .ft-contact-bx .title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
}

.dlab-newsletter .ft-contact-bx p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.5;
}

.dlab-newsletter .ft-contact-bx i,
.dlab-newsletter .ft-contact-bx .fas {
    color: #ffffff !important;
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.footer-top {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.footer-top .container {
    position: relative;
    z-index: 2;
}

.footer-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.widget p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1rem;
}

.list-2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-2 li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.list-2 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    transition: var(--transition);
}

.list-2 li:hover::before {
    transform: translateX(5px);
}

.list-2 li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.list-2 li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    background: #000000;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-in {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.dlab-social-icon {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dlab-social-icon li a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dlab-social-icon li a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Professional Search Button Styles */
.extra-nav {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    padding: 0;
    border: none;
}

.extra-nav .site-button-link {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.extra-nav .site-button-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.extra-nav .site-button-link i {
    font-size: 16px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.extra-nav .site-button-link:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Modal Open Body Class - Prevents layout shift */
body.modal-open {
    overflow: hidden;
    padding-right: 0 !important;
}

/* Search Popup Styles */
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    box-sizing: border-box;
}

.search-popup-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Modal active state removed for simplicity */

.search-popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #B0112F 50%, var(--primary-color) 100%);
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.search-popup-content::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border-radius: 20px;
    z-index: -1;
}

.search-popup-content .form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
    align-items: center;
}

.search-popup-content .form-control {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.search-popup-content .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.15);
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.search-popup-content .form-control::placeholder {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.search-popup-content .btn {
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    min-width: 140px;
}

.search-popup-content .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #B0112F 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.search-popup-content .btn-primary:hover {
    background: linear-gradient(135deg, #B0112F 0%, #DC143C 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.4);
}

.search-popup-content .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.search-popup-content .btn-primary:hover::before {
    left: 100%;
}

.search-popup-content .form-control {
    flex: 1;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Page Banner Styles */
.page-banner {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    position: relative;
    color: #fff;
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* Background Colors */
.bg-gray {
    background: var(--light-gray);
}

.bg-primary {
    background: var(--primary-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content .title {
        font-size: 2.5rem;
    }

    .hero-content .buttons {
        align-items: center;
    }

    .hero-content .buttons a {
        text-align: center;
    }

    .section-head .title {
        font-size: 2rem;
    }

    .ft-contact {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .ft-contact-bx {
        min-width: 100%;
        margin-bottom: 20px;
    }

    .footer-bottom-in {
        flex-direction: column;
        text-align: center;
    }

    .footer-top {
        padding: 60px 0;
    }

    .footer-top .row {
        text-align: center;
    }

    .footer-top .col-md-4 {
        margin-bottom: 40px;
    }

    .header-nav .nav {
        flex-direction: column;
        gap: 0;
    }

    .header-nav .nav > li {
        width: 100%;
        border-bottom: none !important;
        border: none !important;
    }

    .header-nav .nav > li > a {
        display: block;
        padding: 15px 20px;
        border: none !important;
        border-left: none !important;
        border-right: none !important;
        border-top: none !important;
        border-bottom: none !important;
    }

    .header-nav .nav > li > a:after {
        content: '' !important;
        height: 3px !important;
        background: var(--primary-color) !important;
        width: 0 !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        transition: width 0.3s ease !important;
        border-radius: 2px !important;
    }

    .header-nav .nav > li:hover > a:after,
    .header-nav .nav > li.active > a:after {
        width: 100% !important;
    }

    .header-nav .nav > li .mega-menu,
    .header-nav .nav > li .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
        border-radius: 0;
    }

    .search-popup-content {
        width: 95%;
        padding: 40px 25px;
        margin: 20px auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .search-popup-content .form-group {
        flex-direction: column;
        gap: 20px;
    }

    .search-popup-content .btn {
        width: 100%;
        padding: 16px 30px;
    }

    .search-popup-content .form-control {
        padding: 16px 20px;
        font-size: 1rem;
    }

    /* Mobile search button positioning */
    .extra-nav {
        right: 10px;
    }
    
    /* Remove margin on mobile to prevent overlap */
    .header-nav .nav {
        margin-right: 50px;
    }

    .extra-nav .site-button-link {
        width: 40px;
        height: 40px;
    }

    .extra-nav .site-button-link i {
        font-size: 16px;
    }
}

/* Professional Close Button */
.search-popup-content .btn-outline-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-popup-content .btn-outline-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Search Popup Title Styling */
.search-popup-content h3 {
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.search-popup-content p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

/* Resultados del buscador */
.search-results {
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.search-results .search-result-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    padding: 4px 0;
}
.search-results .search-result-link:hover {
    text-decoration: underline;
    color: var(--color-hover, #B0112F);
}

.hero-section {
    padding: 30px 0;
    min-height: 90vh;
}

.hero-content {
    text-align: center;
    padding-right: 0;
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 2.8rem;
}

.hero-content .description {
    font-size: 1.1rem;
}

.hero-features {
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    min-width: 120px;
    padding: 18px 12px;
}

.feature-item i {
    font-size: 1.8rem;
}

.hero-content .buttons {
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.hero-content .buttons a {
    max-width: 250px;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.8rem;
}

.hero-image {
    padding-left: 0;
    margin-top: 20px;
    align-items: center;
}

@media (max-width: 576px) {
    .hero-section {
        padding: 30px 0;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content .description {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 25px;
    }

    .feature-item {
        min-width: 100%;
        padding: 15px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 18px;
    }

    .hero-content .buttons a {
        padding: 8px 18px;
        font-size: 0.75rem;
    }

    .hero-image {
        margin-top: 15px;
        align-items: center;
    }

    .section-full {
        padding: 60px 0;
    }

    .contact-form {
        padding: 20px;
    }

    .service-box {
        padding: 30px 20px;
    }
}

/* Animation Classes */
.wow {
    visibility: hidden;
}

.fadeIn {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 20, 60, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 20, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 20, 60, 0);
    }
}

/* Loading Animation */
#loading-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#loading-area::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-white {
    color: #fff !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

/* Modern Enhancements */
.service-number {
    transition: var(--transition);
}

.service-box:hover .service-number {
    color: rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
}

/* Enhanced Service Cards */
.service-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.service-box:hover::after {
    width: 100%;
}

/* Modern Typography Enhancement */
.title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Enhanced Navigation - Override conflicting styles */
.navbar-nav li a {
    position: relative;
}

.navbar-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar-nav li.active a::after,
.navbar-nav li a:hover::after {
    width: 100%;
}

/* Override style.css navbar conflicts */
.header-nav .nav > li > a:after {
    content: '' !important;
    height: 3px !important;
    background: var(--primary-color) !important;
    width: 0 !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    transition: width 0.3s ease !important;
    border-radius: 2px !important;
}

.header-nav .nav > li:hover > a:after {
    width: 100% !important;
    transform: none !important;
    transform-origin: left !important;
}

.header-nav .nav > li.active > a:after {
    width: 100% !important;
    height: 3px !important;
    background: var(--primary-color) !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    border-radius: 2px !important;
}

/* Remove all borders from navbar */
.header-nav .nav > li {
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

.header-nav .nav > li > a {
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-width: 0 !important;
}

/* Additional navbar border removal */
.site-header .header-nav .nav > li {
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

.site-header .header-nav .nav > li > a {
    border: none !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-width: 0 !important;
}

/* Remove any remaining borders from navbar container */
.header-nav {
    border: none !important;
}

.header-nav .nav {
    border: none !important;
}

/* Glass Effect for Cards */
.service-box,
.contact-form,
.about-feature {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Hero Section Styles */
.hero-section {
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    width: 100%;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="rgba(255,107,53,0.2)" stroke-width="1.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
    margin: 0;
    padding-right: 30px;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    animation: fadeInUp 0.8s ease-out;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-content h3 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.hero-content .description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    min-width: 140px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.feature-item i {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.feature-item:hover i {
    transform: scale(1.1);
    color: var(--primary-color);
}

.feature-item span {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.hero-content .buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-content .buttons a {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.hero-content .buttons .btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-content .buttons .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(220, 20, 60, 0.5);
    background: linear-gradient(135deg, #DC143C 0%, #B0112F 100%);
}

.hero-content .buttons .btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.hero-content .buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

/* Hero Image Styles */
.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-left: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    max-width: 100%;
    height: auto;
}

.hero-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
