/* YUNYZU Custom Font Styles - Rajdhani */

/* Aplicar Rajdhani Bold a todos los títulos principales */
h1,
h2,
h3.title,
.title,
.section-title .title,
.hero-content .title,
.features-content .title,
.footer-widget-title {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 700 !important;
}

/* Aplicar Rajdhani Semibold a subtítulos */
h3,
h4,
h5,
.sub-title,
.hero-content .sub-title,
.section-title .sub-title,
.features-item .title,
.service-content .title {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 600 !important;
}

/* Aplicar Rajdhani Regular a párrafos y texto de lectura */
p,
span,
a,
li,
.hero-content p,
.features-content p,
.service-content p,
.overview-text,
.footer-contact span,
.contact-item span,
body {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 400 !important;
}

/* Estilos específicos del footer */
.footer-contact .contact-item {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
}

.footer-message p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.footer-copyright p {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
}

/* Estilos para las imágenes de la sección de servicios con borde hexagonal */
.service-section-9 .service-item .service-icon {
    position: relative;
    display: inline-block;
    padding: 25px;
}

.service-section-9 .service-item .service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, #E05726 0%, #E05726 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 0;
}

.service-section-9 .service-item .service-icon::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 124px;
    height: 124px;
    background: #ffffff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}

.service-section-9 .service-item .service-icon img {
    position: relative;
    z-index: 2;
    height: 70px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}