/* ===================================
    Crafto - Medical
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* variable */
:root {
    --base-color: #4B9CB6;
    --base-color-light: #65ebf0;
    /* --base-color: #26b4be; */
    /* --seccondary-color: #524973; */
    --seccondary-color: #0047AB;
    --alt-font: 'Manrope', sans-serif;
    --primary-font: 'Manrope', sans-serif;
    --dark-gray: #303334;
    --red: #f45959;
    --white: #ffffff;
    --medium-light-gray: #b4b4b4;
    --medium-gray: #848587;

    --border-radius-large: 100px;
    --border-radius-medium: 30px;
    --border-radius-small: 10px;
}

/* :root {     
    --base-color: #18bcc7;  
    --alt-font: 'Manrope', sans-serif; 
    --primary-font: 'Manrope', sans-serif;
    --dark-gray: #303334;
    --red: #f45959;
    --medium-light-gray:#b4b4b4;
    --medium-gray:#848587;
} */
/* box layout */
.box-layout {
    padding: 0 100px;
}

body {
    font-size: 17px;
    line-height: 30px;
}

/* header */
.navbar .navbar-nav .nav-link {
    font-weight: 700;
    font-size: 18px;
    padding: 10px 22px;
}



header .container-fluid {
    padding-left: 85px;
    padding-right: 85px;
}

.sticky-wrap.shadow-in {
    left: 31px;
}

header .navbar-brand img {
    max-height: 80px;
    width: 100%;
}

.highlight-animation {
    animation: fadeInHighlight 0.5s ease-in-out;
    animation-delay: 2.5s;
    /* Delay to allow text animation to complete */
    animation-fill-mode: both;
}

.fs-55 {
    font-size: 55px;
}

.icon-swiper-slide {

    color: #16C1CC !important;
}

/* YouTube Shorts Gallery Styling */
.youtube-shorts-container {
    max-width: 410px;
    margin: 0 auto;
}

.youtube-shorts-container>div {
    position: relative;
    padding-bottom: 177.78%;
    /* 16:9 aspect ratio for vertical video */
    height: 0;
}

.youtube-shorts-container iframe {
    position: absolute;
    top: 30px;
    left: 35px;
    width: 86%;
    height: 90%;
    border-radius: 18px;
}



/* Improve mobile viewing */
@media (max-width: 768px) {
    .youtube-shorts-container iframe {
        top: 15px;
        left: 25px;
        width: 88%;
        height: 92%;
    }
}

@keyframes fadeInHighlight {
    0% {
        opacity: 0;
        transform: scaleX(0);
        transform-origin: left;
    }

    100% {
        opacity: 0.5;
        /* Match your opacity-5 class */
        transform: scaleX(1);
        transform-origin: left;
    }
}

.swiper-caption {
    font-size: 20px;
    font-weight: 600;
    color: var(--extra-very-slate-blue) !important;
    margin-bottom: 20px;
}

/* bg color */
.bg-light-turquoise-blue {
    background-color: #edf9fadd;
}

.bg-light-red {
    background-color: var(--red);
}

/* jrq */
.bg-secondary-color {
    background-color: var(--seccondary-color)
}

.bg-light-cian-blue-transparent {
    background-color: rgb(75, 156, 182, 0.9);
}

.bg-light-sea-green-transparent {
    background-color: rgba(22, 193, 204, 0.8);
}

.accordion-style-05 .accordion-item .accordion-body {
    padding: 0 0px 0px 0px;
}

.accordion-body {
    padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.bg-light-sea-green-transparent-light {
    background-color: rgba(22, 193, 204, 0.15);
}

.bg-whatsapp-green {
    /* background-color: #25D366; */
    /* background-color: #00FF66; */
    /* background-color: #00D26A; */
    background-color: #00CC44;
    /* background-color: #009E60  ; */
}

/* Document Link Styling */
.document-link-container {
    margin: 20px 0;

}

/* jrq */
/* Add these styles to make buttons align properly */
.buttons-container {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.document-link-container {
    flex: 1;
    min-width: 200px;
    /* Prevents it from getting too small */
}

.document-link {
    width: 50%;
    /* Full width of its container */
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--base-color) 0%, #26b4be 100%);
    color: var(--white-color);
    text-decoration: none;
    border-radius: var(--border-radius-medium);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
    gap: 15px;
    position: relative;
    overflow: hidden;
    font-family: var(--body-font-family);
    font-weight: var(--font-weight-semibold);
    min-height: 80px;
    /* Ensures consistent button height */
    display: flex !important;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .buttons-container {
        flex-direction: column;
        gap: 10px;
    }

    .document-link-container {
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .document-link {
        padding: 12px 16px;
        font-size: 14px;
    }

    .document-icon {
        width: 35px;
        height: 35px;
    }

    .announcement-icon {
        width: 35px;
        height: 35px;
    }
}

.document-link::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;
}

.document-link:hover::before {
    left: 100%;
}

.document-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
    text-decoration: none;
    color: var(--white-color);
    background: linear-gradient(135deg, #26b4be 0%, var(--base-color) 100%);
}

.announcement-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
    text-decoration: none;
    color: var(--white-color);
    background: linear-gradient(135deg, #FFCB00 0%, #26b4be 100%);
}

.document-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;

}

.document-link:hover .document-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.announcement-icon {
    flex-shrink: 0;
    width: 130px;
    height: 85px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;

}

.announcement-icon {
    background: rgba(255, 255, 255, 0.3);
}

.document-content {
    flex: 1;
}

.document-title {
    display: block;
    font-weight: var(--font-weight-bold);
    font-size: var(--btn-font-size);
    margin-bottom: 4px;
    font-family: var(--body-font-family);
}

.document-subtitle {
    display: block;
    font-size: var(--copyright-font-size);
    opacity: 0.9;
    font-weight: var(--font-weight-normal);
    font-family: var(--body-font-family);
}

.document-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.document-link:hover .document-arrow {
    transform: translateX(4px);
}

/* Enhanced WhatsApp Button Animations */

/* Main floating animation with enclosed movement */
.bg-whatsapp-green {
    animation:
        whatsappFloat 6s ease-in-out infinite,
        whatsappGlow 3s ease-in-out infinite,
        whatsappPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* Icon rotation animation */
.bg-whatsapp-green .video-icon i {
    animation: iconRotate 8s linear infinite;
    transform-origin: center center;
}

/* Enhanced hover effects */
.bg-whatsapp-green:hover {
    animation-play-state: paused;
    transform: scale(1.1) !important;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
}

/* Keyframe Animations */

/* Floating animation within enclosed zone */
@keyframes whatsappFloat {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        transform: translate(8px, -12px) rotate(1deg);
    }

    40% {
        transform: translate(-6px, -20px) rotate(-1deg);
    }

    60% {
        transform: translate(-12px, -15px) rotate(2deg);
    }

    80% {
        transform: translate(6px, -8px) rotate(-1deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

/* Glowing highlight effect */
@keyframes whatsappGlow {

    0%,
    100% {
        box-shadow:
            0 0 10px rgba(37, 211, 102, 0.3),
            0 0 20px rgba(37, 211, 102, 0.2);
    }

    50% {
        box-shadow:
            0 0 20px rgba(37, 211, 102, 0.6),
            0 0 40px rgba(37, 211, 102, 0.4),
            0 0 60px rgba(37, 211, 102, 0.2);
    }
}

/* Pulsing scale effect */
@keyframes whatsappPulse {

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

    50% {
        transform: scale(1.05);
    }
}

/* Icon rotation */
@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Orbital movement around container */
@keyframes whatsappOrbital {
    0% {
        transform: rotate(0deg) translateX(20px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(20px) rotate(-360deg);
    }
}

/* Attention-grabbing bounce */
@keyframes whatsappBounce {

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

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-8px);
    }
}

/* Breathing effect */
@keyframes whatsappBreathe {

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

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

/* Enhanced license category tooltips */
.license-category {
    animation: categoryFloat 5s ease-in-out infinite;
    transition: all 0.3s ease;
}

.license-category:nth-child(1) {
    animation-delay: 0s;
}

.license-category:nth-child(2) {
    animation-delay: 1s;
}

.license-category:nth-child(3) {
    animation-delay: 2s;
}

.license-category:nth-child(4) {
    animation-delay: 3s;
}

.license-category:nth-child(5) {
    animation-delay: 4s;
}

@keyframes categoryFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Highlight on hover */
.license-category:hover {
    animation: categoryHighlight 0.5s ease-in-out;
}

@keyframes categoryHighlight {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(13, 153, 145, 0);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(13, 153, 145, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(13, 153, 145, 0.3);
    }
}

/* Alternative animation classes you can use */


.floating-wpp .floating-wpp-button {
    animation:
        whatsappBounce 2s ease-in-out infinite,
        whatsappGlow 1.5s ease-in-out infinite !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

/* Target the button image/icon */
.floating-wpp .floating-wpp-button-image {
    animation: iconRotate 8s linear infinite;
    transform-origin: center center;
}

/* Enhanced hover effects */
.floating-wpp .floating-wpp-button:hover {
    animation-play-state: paused;
    transform: scale(1.1) !important;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8) !important;
}

/* Your existing keyframes animations */
@keyframes whatsappBounce {

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

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-8px);
    }
}

@keyframes whatsappGlow {

    0%,
    100% {
        box-shadow:
            0 0 10px rgba(37, 211, 102, 0.3),
            0 0 20px rgba(37, 211, 102, 0.2);
    }

    50% {
        box-shadow:
            0 0 20px rgba(37, 211, 102, 0.6),
            0 0 40px rgba(37, 211, 102, 0.4),
            0 0 60px rgba(37, 211, 102, 0.2);
    }
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* For a more subtle effect */
.whatsapp-subtle {
    animation:
        whatsappBreathe 4s ease-in-out infinite,
        whatsappGlow 3s ease-in-out infinite;
}

/* For attention-grabbing effect */
.whatsapp-attention {
    animation:
        whatsappBounce 2s ease-in-out infinite,
        whatsappGlow 1.5s ease-in-out infinite;
}

/* For orbital movement */
.whatsapp-orbital {
    animation: whatsappOrbital 12s linear infinite;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .bg-whatsapp-green {
        animation-duration: 4s, 2s, 1.5s;
    }

    @keyframes whatsappFloat {
        0% {
            transform: translate(0px, 0px);
        }

        50% {
            transform: translate(5px, -10px);
        }

        100% {
            transform: translate(0px, 0px);
        }
    }
}

/* Accessibility - respect user preferences */
@media (prefers-reduced-motion: reduce) {

    .bg-whatsapp-green,
    .bg-whatsapp-green .video-icon i,
    .license-category {
        animation: none !important;
    }

    .bg-whatsapp-green:hover {
        transform: scale(1.05);
        transition: transform 0.3s ease;
    }
}

/* Additional utility classes */
.animation-delay-1 {
    animation-delay: 0.5s;
}

.animation-delay-2 {
    animation-delay: 1s;
}

.animation-delay-3 {
    animation-delay: 1.5s;
}

.animation-delay-4 {
    animation-delay: 2s;
}

.animation-delay-5 {
    animation-delay: 2.5s;
}

.bg-contrast {
    /* background-color: #232323; */
    /* background-color: #FFC107; */
    /* background-color: #00838F; */
    /* background-color: #FF6F00; */
    background-color: #0047AB;
}

/* border color */
.border-color-transparent-dark-gray {
    border-color: rgba(39, 47, 48, 0.1) !important;
}

.border-color-red {
    border-color: var(--red) !important;
}

h1,
.h1 {
    font-size: 3.8rem;
    line-height: 4rem;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 25px;
}

/* btn */
.btn {
    text-transform: inherit;
    font-weight: 600;
    letter-spacing: 0px;
}

.btn.btn-extra-large {
    font-size: 18px;
}

.btn.btn-large {
    font-size: 17px;
}

.btn.btn-medium {
    font-size: 16px;
}

.btn.btn-small {
    font-size: 15px;
}

.btn.btn-very-small {
    font-size: 14px;
}

.btn.btn-dark-gray {
    background-color: var(--seccondary-color);
    color: var(--white);
}

.btn.btn-dark-gray:hover,
.btn.btn-dark-gray:active,
.btn.btn-transparent-light-gray:hover,
.btn.btn-transparent-light-gray:active,
.btn.btn-box-shadow.btn-base-color:hover,
.btn.btn-box-shadow.btn-base-color:active {
    background-color: var(--base-color);
    border-color: var(--base-color);
    color: var(--white);
}

.btn.btn-base-color:hover {
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
    color: var(--white);
}

.underliner {
    --cnvs-underliner-size: 30%;
    --cnvs-underliner-color: var(--base-color);
    --cnvs-underliner-opacity: 0.5;
    --cnvs-underliner-speed: 0.3s;
    position: relative;
    opacity: 1 !important;
    background-image: linear-gradient(to bottom, transparent calc(100% - var(--cnvs-underliner-size)), rgba(var(--cnvs-underliner-color), var(--cnvs-underliner-opacity)) calc(100% - var(--cnvs-underliner-size)));
    background-repeat: no-repeat;
    background-size: 0 100%;
    transition: background-size var(--cnvs-underliner-speed) cubic-bezier(.14, .15, .13, .99);
}

.map {
    position: relative;
    height: 450px;
    width: 100%;
}

.infowindow {
    padding: 10px 0;
}

.infowindow strong {
    color: #232323;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.infowindow p {
    font-size: 14px;
    margin: 0;
}

.google-maps-link {
    margin-top: 8px;
    display: inline-block;
}

.google-maps-link a {
    color: #18bcc7;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* page title */
.page-title-extra-large h2 {
    font-size: 17px;
    line-height: 20px;
    letter-spacing: 0px;
}

/* social media icon */
.social-icon-style-02 .small-icon li {
    margin: 0;
}

/* outside box right */
.outside-box-right-2 {
    margin-left: 10vw;
}

.left-22 {
    left: 22%;
}

.left-35 {
    left: 35%;
}


.youtube-shorts-gallery {
    padding: 2px;
    /* background-color: #f8f9fa; */
    /* border-radius: 15px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.youtube-shorts-swiper {
    height: 700px;
    /* background-color: red; */
}

.youtube-placeholder {
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.youtube-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.youtube-placeholder:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    background-color: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.play-button i {
    margin-left: 5px;
}

.youtube-placeholder:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(255, 0, 0, 1);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.loading-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid white;
    margin-bottom: 10px;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.license-category {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.license-category:hover {
    transform: translateY(-5px);
}

.license-tooltip {
    visibility: hidden;
    position: absolute;
    bottom: 120%;
    left: 21%;
    transform: translateX(-50%) translateY(-10px);
    width: 280px;
    background-color: rgba(255, 255, 255, 0.952);
    color: #333;
    text-align: left;
    border-radius: 8px;
    padding: 12px 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    z-index: 100;
    opacity: 0;
    transition: all 0.3s ease;
}

.license-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.license-category:hover .license-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-20px);
}

.license-tooltip h5 {
    color: var(--base-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.license-tooltip p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .license-tooltip {
        width: 230px;
    }

    .license-category.active .license-tooltip {
        visibility: visible;
        opacity: 1;
        transform: translateX(-50%) translateY(-20px);
    }
}

.youtube-shorts-button-next,
.youtube-shorts-button-prev {
    color: var(--base-color-light) !important;
}

.youtube-shorts-button-next:after,
.youtube-shorts-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}

.banner-with-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* Adjust opacity as needed */
    z-index: 0;
}

.image-background-banner {
    background-image: url("/images/CRC/background-banner03.jpg") !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    /* Ajusta la altura según tus necesidades */
}

@media (max-width: 768px) {

    .image-background-banner {
        background-image: url("/images/CRC/background-banner3-movil.jpg") !important;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        /* Adjust height as needed for your vertical image */
        height: 100%;
        width: 100%;

    }
}

.banner-with-overlay .container {
    position: relative;
    z-index: 1;
}

header .navbar-brand .alt-logo,
header .navbar-brand .mobile-logo {
    visibility: hidden;
    opacity: 0;
    max-width: 180px;
}

/* tab style 01 */
.tab-style-01 .nav-tabs .nav-link.show,
.tab-style-01 .nav-tabs .nav-link.active,
.tab-style-01 .nav-tabs .nav-link:hover {
    background-color: var(--base-color) !important;
    color: var(--white) !important;
    ;
}

.tab-style-01 .nav-tabs .nav-link {
    padding: 7px 29px;
    color: var(--dark-gray);
}

.tab-style-01 .nav-tabs>li.nav-item {
    padding: 0 13px;
}

.time-schedule {
    max-width: 1200px;
    /* Adjust this value based on your desired maximum width */
    margin: 0 auto;
    /* This centers the table */
}

.time-schedule-min-width {
    min-width: auto;
    /* Override any minimum width */
    width: 100%;
    /* Take full width of parent */
}

/* time table */
.time-table-box .hover-detail {
    padding: 25px 30px;
}

.time-table-box {
    flex-basis: 14.28% !important;
    /* For 7 columns (100% ÷ 7 = 14.28%) */
}

/* accordion style 05 */
.accordion-style-05 .accordion-item {
    padding: 25px 35px 27px 75px;
}

/* footer */
footer .nav-link {
    color: var(--white);
}

footer .nav-title {
    color: var(--white);
}

.elements-social .light li a:hover {
    color: var(--base-color) !important;
}

footer .footer-logo img {
    max-height: 40px;
}

footer .elements-social ul li:last-child {
    margin-right: 0;
}

.service-image {
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Revolution Slider */
#demo-corporate-slider {
    border-radius: 6px;
}

.hesperiden.tparrows {
    width: 54px;
    height: 54px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out
}

.hesperiden.tparrows:hover {
    border: 1px solid rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 1);
    ;
}

.hesperiden.tparrows:hover:before {
    color: #232323
}

.hesperiden.tparrows:before {
    line-height: 52px;
}

.hesperiden.tparrows.tp-leftarrow:before {
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-size: 16px;
    font-weight: 900
}

.hesperiden.tparrows.tp-rightarrow:before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 16px;
    font-weight: 900
}

.hesperiden.tparrows.tp-leftarrow:before {
    margin-left: 0;
}

.hesperiden.tparrows.tp-rightarrow:before {
    margin-right: 0;
}

.get-started-btn {
    transition: 0.3s ease-in-out !important;
}

.hesperiden.tparrows {
    z-index: 97;
}

/* media query responsive */
@media (min-width: 768px) {
    .page-title-extra-large h1 {
        font-size: 3.8rem;
        line-height: 3.8rem;
    }
}

@media (max-width: 1600px) {
    .box-layout {
        padding: 0 60px;
    }

    .sticky-wrap.shadow-in {
        left: 10px;
    }

    header .container-fluid {
        padding-left: 45px;
        padding-right: 45px;
    }
}

@media (max-width: 1400px) {
    footer .nav-link {
        padding-left: .75rem;
        padding-right: .75rem;
    }
}

@media (max-width: 1199px) {
    .box-layout {
        padding: 0 0;
    }

    .navbar .navbar-nav .nav-link {
        padding-left: 18px;
        padding-right: 18px;
    }

    header .btn.btn-switch-text.btn-small>span {
        padding: 8px 10px;
    }

    .tab-style-01 .nav-tabs>li.nav-item {
        padding: 0 8px;
    }

    header .navbar [class*=col-] {
        padding: 0px;
    }

    .time-table-box {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media (max-width: 991px) {
    .tab-style-01 .nav-tabs .nav-link {
        padding: 5px 25px;
    }

    .time-schedule-scroll {
        overflow-x: auto;
        overflow-y: hidden;
    }

    .time-schedule-scroll .time-schedule-min-width {
        min-width: 1050px;
    }




    .tab-style-01 .nav-tabs>li.nav-item {
        padding: 0 4px;
    }

    header .navbar [class*=col-] {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .accordion-style-05 .accordion-item .number {
        top: 13px;
    }
}

.row.row-cols-lg-2 .col {
    margin-bottom: 20px;
}

.row.row-cols-lg-2 .col:last-child {
    margin-bottom: 0;
}

/* //Services */
/* Marketing Card Styles */
.bg-gradient-base-color {
    background: linear-gradient(135deg, var(--base-color) 0%, #26b4be 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-base-color::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: gradientMove 10s ease-in-out infinite;
}

@keyframes gradientMove {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

.marketing-card {
    padding: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(13, 153, 145, 0.15);
}

.marketing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(13, 153, 145, 0.25);
}

.pricing-highlight {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pricing-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.btn-white {
    background: white;
    border: 2px solid white;
    color: var(--base-color);
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.btn-transparent-white {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-transparent-white:hover {
    background: white;
    color: var(--base-color);
    border-color: white;
    transform: translateY(-2px);
}

.border-color-transparent-white-light {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .marketing-card {
        margin-bottom: 30px;
        padding: 10px;
    }

    .pricing-highlight {
        padding: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .marketing-card {
        padding: 5px;
    }

    .w-100px {
        width: 80px !important;
        height: 80px !important;
    }
}

/* Enhanced Contact Section Styling */
.feature-box {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.contact-links a {
    transition: all 0.3s ease;
    padding: 5px 0;
    border-radius: 4px;
}

.contact-links a:hover {
    padding-left: 10px;
    background: rgba(13, 153, 145, 0.05);
}

.hover-text-base-color:hover {
    color: var(--base-color) !important;
}

/* Map container improvements */
.position-relative iframe {
    min-height: 400px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .feature-box {
        margin-bottom: 20px;
    }

    .position-relative iframe {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .feature-box {
        padding: 20px 15px;
    }

    .feature-box-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .position-relative iframe {
        min-height: 250px;
    }
}

.bg-primary-color {
    background: linear-gradient(135deg, var(--base-color) 0%, #3ec0c959 100%);
    color: var(--white);
}

.img_mision {

    width: 100%;
    max-height: 502px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Custom Tab Navigation Styling for Green Mint Background */
.nav-tabs {
    border: none !important;
    gap: 10px;
}

.nav-tabs .nav-item {
    margin: 0 5px;
}

.nav-tabs .nav-link {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    padding: 20px 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.8) !important;
    text-align: center;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

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

.nav-tabs .nav-link:hover::before {
    left: 100%;
}

.nav-tabs .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.nav-tabs .nav-link.active {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: white;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-tabs .nav-link i {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-tabs .nav-link:hover i,
.nav-tabs .nav-link.active i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.nav-tabs .nav-link span {
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-tabs .nav-link:hover span,
.nav-tabs .nav-link.active span {
    font-weight: 700;
}

/* Service Columns Background Icons */
.service-bg-icon {
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
}

.service-bg-icon i {
    font-size: 400px;
    color: var(--base-color-light);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.459));
}

/* Service Navigation Pills */
.service-nav .nav-link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

.service-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateX(5px);
}

.service-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.service-nav .nav-link i {
    font-size: 16px;
    opacity: 0.8;
}

.service-nav .nav-link.active i,
.service-nav .nav-link:hover i {
    opacity: 1;
}

/* Service Header */
.service-header h4,
.service-header h6 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-icon .w-70px {
    transition: all 0.3s ease;
}

.service-column:hover .service-icon .w-70px {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Animation for tab content */
.tab-pane {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tab-pane.active,
.tab-pane.show {
    opacity: 1;
}

/* Enhanced hover effects */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.nav-tabs .nav-link.active {
    animation: pulse 2s infinite;
}

/* Enhanced Button Styling */
.btn-white {
    background: white;
    color: var(--base-color);
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-transparent-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-transparent-white:hover {
    background: white;
    color: var(--base-color);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Animation for background icons */
@keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(2deg);
    }
}

.service-column:hover .service-bg-icon i {
    opacity: 0.15;
    animation: float 4s ease-in-out infinite;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Extra Large devices (1200px and up) */
@media (min-width: 1200px) {
    .service-bg-icon i {
        font-size: 450px;
    }
    
    .nav-tabs .nav-link {
        padding: 22px 28px;
        min-width: 160px;
    }
}

/* Large devices (992px and up) */
@media (max-width: 1199px) and (min-width: 992px) {
    .service-bg-icon i {
        font-size: 350px;
    }
    
    .nav-tabs .nav-link {
        padding: 18px 22px;
        min-width: 130px;
        font-size: 15px;
    }
}

/* Medium devices (768px and up) */
@media (max-width: 991px) and (min-width: 768px) {
    .service-bg-icon i {
        font-size: 200px;
    }
    
    .service-column {
        margin-bottom: 30px;
    }
    
    .nav-tabs .nav-link {
        padding: 15px 18px;
        min-width: 110px;
        font-size: 14px;
    }
    
    .service-nav .nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    /* Stack the two columns vertically on medium screens */
    .col-lg-6.mb-4 {
        margin-bottom: 20px !important;
    }
}

/* Small devices (576px and up) */
@media (max-width: 767px) and (min-width: 576px) {
    .service-bg-icon i {
        font-size: 120px;
        opacity: 0.15;
    }
    
    .nav-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-tabs .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-tabs .nav-link {
        margin: 0;
        min-width: auto;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .service-nav .nav-link {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    /* Adjust button grid for mobile */
    .col-6 {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .col-12.mt-2 {
        margin-top: 8px !important;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    /* Reduce margins */
    .row.mb-4 {
        margin-bottom: 15px !important;
    }
}

/* Extra Small devices (less than 576px) */
@media (max-width: 575px) {
    .service-bg-icon i {
        font-size: 80px;
        opacity: 0.1;
    }
    
    .nav-tabs {
        flex-direction: column;
        gap: 6px;
    }
    
    .nav-tabs .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-tabs .nav-link {
        margin: 0;
        min-width: auto;
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 8px !important;
    }
    
    .nav-tabs .nav-link i {
        font-size: 14px;
    }
    
    .service-nav .nav-link {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .service-nav .nav-link i {
        font-size: 14px;
    }
    
    /* Compact button layout for very small screens */
    .col-6 {
        padding-left: 3px;
        padding-right: 3px;
    }
    
    .col-12.mt-2 {
        margin-top: 6px !important;
        padding-left: 3px;
        padding-right: 3px;
    }
    
    /* Reduce padding and margins */
    .border-radius-10px.p-25px {
        padding: 15px !important;
    }
    
    .row.mb-4 {
        margin-bottom: 10px !important;
    }
    
    /* Adjust service headers */
    .service-header h6 {
        font-size: 14px;
        margin-bottom: 10px !important;
    }
    
    /* Responsive buttons */
    .btn-medium {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    /* Stack CTA buttons vertically */
    .cta-buttons .col-md-4 {
        margin-bottom: 10px;
    }
}

/* Ultra Small devices (less than 400px) */
@media (max-width: 399px) {
    .service-bg-icon i {
        font-size: 60px;
        opacity: 0.08;
    }
    
    .nav-tabs .nav-link {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .nav-tabs .nav-link span {
        font-size: 11px;
    }
    
    .service-nav .nav-link {
        padding: 5px 8px;
        font-size: 10px;
    }
    
    .border-radius-10px.p-25px {
        padding: 10px !important;
    }
    
    .service-header h6 {
        font-size: 12px;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .service-bg-icon i {
        font-size: 100px;
    }
    
    .nav-tabs .nav-link {
        padding: 8px 12px;
    }
    
    .border-radius-10px.p-25px {
        padding: 15px !important;
    }
}

/* High DPI screens adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-tabs .nav-link {
        border-width: 1px;
    }
    
    .service-nav .nav-link {
        border-width: 1px;
    }
}

/* Pricing Table Responsive Styles */
.pricing-table-style-12 {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pricing-table-style-12 li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-table-style-12 li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.pricing-table-style-12 .number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
}

.pricing-table-style-12 .flex-grow-1 {
    flex: 1;
    min-width: 0;
}

.pricing-table-style-12 .d-flex {
    margin-bottom: 10px;
}

.pricing-table-style-12 .d-flex:last-child {
    margin-bottom: 0;
}

.pricing-table-style-12 .divider-style-03 {
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        transparent,
        transparent 4px,
        rgba(0, 0, 0, 0.2) 4px,
        rgba(0, 0, 0, 0.2) 8px
    );
    margin: 0 15px;
}

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .pricing-table-style-12 li {
        padding: 20px 0;
        margin-bottom: 25px;
    }
    
    .pricing-table-style-12 .number {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-right: 25px;
    }
    
    .pricing-table-style-12 .d-flex {
        margin-bottom: 12px;
    }
    
    .pricing-table-style-12 .divider-style-03 {
        margin: 0 20px;
    }
}

/* Medium screens (768px to 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .pricing-table-style-12 li {
        padding: 15px 0;
        margin-bottom: 20px;
    }
    
    .pricing-table-style-12 .number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 15px;
    }
    
    .pricing-table-style-12 .d-flex {
        margin-bottom: 8px;
        font-size: 16px;
    }
    
    .pricing-table-style-12 .divider-style-03 {
        margin: 0 12px;
    }
}

/* Small screens (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .pricing-table-style-12 {
        padding: 0 10px;
    }
    
    .pricing-table-style-12 li {
        flex-direction: column;
        padding: 20px 0;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .pricing-table-style-12 .number {
        width: 60px;
        height: 60px;
        font-size: 22px;
        margin: 0 auto 15px auto;
    }
    
    .pricing-table-style-12 .flex-grow-1 {
        width: 100%;
    }
    
    .pricing-table-style-12 .d-flex {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
        padding: 10px;
        background: rgba(0, 0, 0, 0.02);
        border-radius: 8px;
    }
    
    .pricing-table-style-12 .d-flex span:first-child {
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 1.4;
    }
    
    .pricing-table-style-12 .d-flex .ms-auto {
        margin: 0 auto;
        font-size: 18px;
        font-weight: 700;
        color: var(--base-color);
    }
    
    .pricing-table-style-12 .divider-style-03 {
        display: none;
    }
}

/* Extra small screens (less than 576px) */
@media (max-width: 575px) {
    .pricing-table-style-12 {
        padding: 0 5px;
    }
    
    .pricing-table-style-12 li {
        flex-direction: column;
        padding: 15px 0;
        margin-bottom: 20px;
        text-align: center;
        border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    }
    
    .pricing-table-style-12 .number {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin: 0 auto 12px auto;
    }
    
    .pricing-table-style-12 .flex-grow-1 {
        width: 100%;
    }
    
    .pricing-table-style-12 .d-flex {
        flex-direction: column;
        text-align: center;
        margin-bottom: 12px;
        padding: 12px;
        background: rgba(0, 0, 0, 0.03);
        border-radius: 6px;
    }
    
    .pricing-table-style-12 .d-flex span:first-child {
        margin-bottom: 6px;
        font-size: 13px;
        line-height: 1.3;
    }
    
    .pricing-table-style-12 .d-flex .ms-auto {
        margin: 0 auto;
        font-size: 16px;
        font-weight: 700;
        color: var(--base-color);
    }
    
    .pricing-table-style-12 .divider-style-03 {
        display: none;
    }
}

/* Ultra small screens (less than 400px) */
@media (max-width: 399px) {
    .pricing-table-style-12 {
        padding: 0;
    }
    
    .pricing-table-style-12 li {
        padding: 12px 0;
        margin-bottom: 15px;
    }
    
    .pricing-table-style-12 .number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin: 0 auto 10px auto;
    }
    
    .pricing-table-style-12 .d-flex {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .pricing-table-style-12 .d-flex span:first-child {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .pricing-table-style-12 .d-flex .ms-auto {
        font-size: 14px;
    }
}

/* Additional spacing for pricing highlight container */
.pricing-highlight {
    overflow: hidden;
}

@media (max-width: 767px) {
    .pricing-highlight {
        padding: 25px 15px !important;
    }
}

@media (max-width: 575px) {
    .pricing-highlight {
        padding: 20px 10px !important;
    }
}

@media (max-width: 399px) {
    .pricing-highlight {
        padding: 15px 8px !important;
    }
}

/* Ensure proper spacing for the pricing title */
.pricing-highlight .fs-14 {
    margin-bottom: 20px !important;
}

@media (max-width: 575px) {
    .pricing-highlight .fs-14 {
        margin-bottom: 15px !important;
        font-size: 13px !important;
    }
}