/**
 * Hero Experience Elementor Widget Styles v3.5 (Fade Effect Support)
 */

.aw-hero-slider-main-container {
    width: 100% !important;
    position: relative !important;
    overflow: visible !important;

    background: transparent !important;
}

/* SWIPER FADE EFFECT: required rules */
.aw-hero-slider-main-container .swiper-wrapper {
    overflow: visible !important;
    position: relative !important;
}

.aw-hero-slider-main-container .swiper-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    opacity: 0 !important;
    transition: opacity 0.8s ease !important;
    pointer-events: none !important;
}

.aw-hero-slider-main-container .swiper-slide-active {
    position: relative !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 1 !important;
}

.aw-hero-slider-main-container .swiper-slide {
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.aw-hero-slide-item {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 8rem 2rem !important;
    gap: 4rem !important;
    width: 100% !important;
    max-width: 80rem !important;
    margin: 0 auto !important;
    overflow: visible !important;
}

@media (max-width: 991px) {
    .aw-hero-slide-item {
        flex-direction: column-reverse !important;
        text-align: center !important;
        padding: 4rem 1.5rem !important;
        gap: 2.5rem !important;
    }
}

/* CONTENT CONTAINER */
.aw-hero-experience-content {
    flex: 0 0 50% !important;
    max-width: 600px;
    width: 50% !important;
    position: relative;
    z-index: 10;
}

@media (max-width: 991px) {
    .aw-hero-experience-content {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100%;
    }
}

.aw-hero-experience-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

@media (max-width: 767px) {
    .aw-hero-experience-title {
        font-size: 2.8rem;
    }
}

.aw-hero-experience-title span.highlight {
    position: relative;
    display: inline; /* Use inline to wrap text strictly */
    white-space: normal;
}

.aw-hero-experience-title span.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px; /* Adjusted for better alignment with text base */
    left: -2%;   /* Slightly less overshoot to avoid container clipping */
    width: 104%;
    height: 12px;
    background-color: #FBBF24;
    z-index: -1;
    opacity: 0.8;
    border-radius: 100% 10% 80% 5% / 10% 5% 10% 5%;
}

.aw-hero-experience-subtitle {
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 2.5rem;
}

@media (max-width: 767px) {
    .aw-hero-experience-subtitle {
        font-size: 1.25rem;
    }
}

.aw-hero-experience-buttons {
    display: flex;
    gap: 1.25rem;
}

@media (max-width: 991px) {
    .aw-hero-experience-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .aw-hero-experience-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem !important;
    }
}

.aw-hero-btn {
    padding: 1.1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.aw-hero-btn-primary {
}

.aw-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.aw-hero-btn-outline {
    border-width: 2px;
    border-style: solid;
    background-color: transparent !important;
}

.aw-hero-btn-outline:hover {
    transform: translateY(-2px);
}

/* IMAGE RIGHT CONTAINER */
.aw-hero-experience-image-wrap {
    flex: 0 0 50% !important;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    width: 50% !important;
    overflow: visible !important;
    z-index: 5;
}

@media (max-width: 991px) {
    .aw-hero-experience-image-wrap {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100%;
    }
}

.aw-hero-blob-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    z-index: 1;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    pointer-events: none;
    transition: all 0.5s ease;
}

.aw-hero-blob-bg.primary {
    animation: blobMorph 10s infinite ease-in-out;
}

.aw-hero-blob-bg.secondary {
    width: 90%;
    height: 90%;
    z-index: 2;
    animation: blobMorph 12s infinite ease-in-out reverse;
    transform: translate(20px, 20px);
}

@keyframes blobMorph {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    33% {
        border-radius: 60% 40% 40% 60% / 50% 60% 40% 60%;
    }

    66% {
        border-radius: 45% 55% 35% 65% / 45% 45% 65% 55%;
    }
}

.aw-hero-image-clip {
    position: relative;
    z-index: 5; /* Above both blobs */
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1/0.9;
    background-size: cover;
    background-position: center;
    border-radius: 50% 50% 40% 60% / 60% 30% 70% 40%;
    box-shadow: 0 40px 100px -15px rgba(0, 165, 181, 0.35), 0 20px 50px -20px rgba(0, 0, 0, 0.45) !important;
    animation: heroImageFloat 6s infinite ease-in-out;
    transition: box-shadow 0.4s ease;
}

/* Overrides removed to favor Elementor Controls */
.aw-hero-style-ceramics .aw-hero-dashed-circle {
    width: 110%;
    height: 110%;
}

@keyframes heroImageFloat {

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

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

.aw-hero-dashed-circle {
    position: absolute;
    width: 105%;
    height: 105%;
    border: 2px dashed rgba(0, 165, 181, 0.4);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* PAGINATION DOTS CENTERING */
.aw-hero-pagination-dots {
    position: absolute !important;
    bottom: 1.25rem !important;
    left: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem !important;
    z-index: 100 !important;
}

.aw-hero-pagination-dots .swiper-pagination-bullet {
    width: 0.625rem !important;
    height: 0.625rem !important;
    opacity: 1 !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    margin: 0 !important;
}

.aw-hero-pagination-dots .swiper-pagination-bullet-active {
    width: 2rem !important;
    border-radius: 0.625rem !important;
}