/* Custom CSS for inline styles */

/* CSS Variables */
:root {
    --orca-dark-blue: #003f5c;
    --orca-sky-blue: #2f80ed;
    --orca-industrial-gray: #7d8b99;
    --orca-fire-red: #d62828;
    --orca-white: #ffffff;
    --orca-ice-gray: #f2f4f7;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Image Loading */
.responsive-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Icon Optimization */
.icon-55 {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.icon-40 {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Content Image Optimization */
.content-img {
    max-width: 400px;
    height: auto;
}

.content-img-small {
    max-width: 300px;
    height: auto;
}

/* Lazy Loading */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Image Placeholder */
.img-placeholder {
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    min-height: 200px;
}

/* Modern Animation Section */
.modern-animation-section {
    background: transparent;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    padding: 60px 0;
}

.animation-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
    transition: all 0.3s ease;
    pointer-events: auto;
    z-index: 5;
}

.floating-element:hover {
    opacity: 1;
    transform: scale(1.1);
    z-index: 10;
}

.element-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orca-sky-blue) 0%, var(--orca-dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 8px 25px rgba(47, 128, 237, 0.3);
    flex-shrink: 0;
}

.element-icon i {
    color: var(--orca-white);
    font-size: 24px;
}

.element-text {
    color: var(--orca-dark-blue);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    max-width: 80px;
    line-height: 1.2;
}

/* Better positioning for floating elements */
.element-1 {
    top: 10%;
    left: 10%;
    animation: float1 6s ease-in-out infinite;
}

.element-2 {
    top: 15%;
    right: 15%;
    animation: float2 8s ease-in-out infinite;
}

.element-3 {
    bottom: 20%;
    left: 15%;
    animation: float3 7s ease-in-out infinite;
}

.element-4 {
    bottom: 15%;
    right: 10%;
    animation: float4 9s ease-in-out infinite;
}

.element-5 {
    top: 45%;
    left: 5%;
    animation: float5 10s ease-in-out infinite;
}

.element-6 {
    top: 50%;
    right: 5%;
    animation: float6 11s ease-in-out infinite;
}

/* Center Content */
.center-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.pulse-circle {
    width: 140px;
    height: 140px;
    background: var(--orca-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin: 0 auto 30px;
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    flex-shrink: 0;
}

.pulse-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--orca-sky-blue);
    border-radius: 50%;
    animation: pulse-ring 2s ease-in-out infinite;
}

.pulse-circle img {
    width: 90px;
    height: auto;
    max-width: 90px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--orca-dark-blue), var(--orca-sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: none;
    line-height: 1.2;
}

.subtitle {
    color: var(--orca-industrial-gray);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Animated Lines */
.animated-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orca-sky-blue), transparent);
    animation: lineMove 4s linear infinite;
}

.line-1 {
    top: 25%;
    width: 150px;
    left: -150px;
    animation-delay: 0s;
}

.line-2 {
    top: 55%;
    width: 200px;
    left: -200px;
    animation-delay: 1s;
}

.line-3 {
    bottom: 35%;
    width: 180px;
    left: -180px;
    animation-delay: 2s;
}

/* Animations */
@keyframes float1 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(-3deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(3deg);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-18px) rotate(-3deg);
    }
}

@keyframes float5 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-22px) rotate(3deg);
    }
}

@keyframes float6 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-16px) rotate(-4deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes lineMove {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(calc(100vw + 100%));
    }
}

/* Slider Styles */
.slider-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    object-fit: cover !important;
    cursor: pointer;
    margin: 0 !important;
    padding: 0 !important;
}

.slider-item:hover {
    transform: scale(1.02);
}

.slider-item.clickable {
    cursor: pointer;
}

.slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    transition: 0.5s;
}

.slider-item:hover::before {
    animation: shine 1s;
}

@keyframes shine {
    100% {
        left: 150%;
    }
}

.slider-content {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slider-button {
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    padding: 12px 30px;
    position: relative;
    overflow: hidden;
}

.slider-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.slider-button i {
    transition: transform 0.3s ease;
}

.slider-button:hover i {
    transform: translateX(5px);
}

/* Scroll Down Arrow Styles */
.scroll-down-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.scroll-down-arrow:hover {
    border-color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.scroll-down-arrow i {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.scroll-down-arrow:hover i {
    color: rgba(255, 255, 255, 1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Image centering */
.bg-img {
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

/* Ensure the background image container is properly sized */
.cover-background {
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Responsive heights */
@media (max-width: 767.98px) {
    .slider-height-2 {
        height: 50vh !important;
    }

    .slider-height-3 {
        height: 33.33vh !important;
    }

    .slider-height-4 {
        height: 25vh !important;
    }

    /* Mobilde yazı boyutlarını küçült */
    .slider-content h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .slider-content h4 {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
    }

    /* Mobilde padding azalt */
    .slider-content {
        padding: 1rem !important;
    }

    /* Mobilde scroll arrow'u gizle */
    .scroll-down-arrow {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .slider-height-2,
    .slider-height-3,
    .slider-height-4 {
        height: 100vh !important;
    }
}

/* Background image styles */
.bg-img-1 {
    background-image: url("https://orcasafety.com.tr/storage/sliders/nI6xsFnVJ3UEXMzUWmLXkjriL5PKiY0lHRSqEUkv.webp");
}

.bg-img-2 {
    background-image: url("https://orcasafety.com.tr/storage/sliders/G5toHoFJwKMOUZiqvUqBK4k1uO1HoEf6VjlpYXNI.jpg");
}

.video-bg-img {
    background-image: url("https://orcasafety.com.tr/assets/img/banner/video-bg-img.jpg");
}

/* Dynamic height calculations - moved from JavaScript */
.full-screen {
    min-height: 100vh;
}

/* Slider container layout - remove gaps */
.full-screen .container-fluid {
    padding: 0 !important;
    margin: 0 !important;
}

.full-screen .row {
    margin: 0 !important;
    padding: 0 !important;
}

.full-screen .col-12,
.full-screen .col-md-6,
.full-screen .col-md-4,
.full-screen .col-md-3 {
    padding: 0 !important;
    margin: 0 !important;
}

.screen-height {
    height: calc(100vh - 80px); /* 80px is header height */
}

/* Scroll progress indicator */
.scroll-top-percentage {
    background: conic-gradient(#09b850 0%, #14212B 0%);
}

.scroll-top-percentage.active {
    background: conic-gradient(#09b850 100%, #14212B 0%);
}

/* Video banner section */
.video-banner-section {
    width: 98%;
    margin: 0 auto;
}

/* About section responsive styles */
@media (max-width: 767.98px) {
    .about-style04 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .about-right {
        padding-left: 0 !important;
        margin-top: 2rem !important;
    }

    .about-left {
        margin-bottom: 2rem !important;
    }

    .exp-box {
        margin-top: 1rem !important;
        position: relative !important;
        z-index: 1 !important;
    }

    .exp-box .row {
        position: relative !important;
        z-index: 1 !important;
    }

    .exp-box .bg-img {
        position: relative !important;
        z-index: 1 !important;
    }

    .exp-box .d-flex {
        position: relative !important;
        z-index: 1 !important;
    }

    .section-title01 h2 {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }

    .section-title01 span {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }

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

    .resp-tabs-container {
        padding: 0 !important;
    }

    .resp-tabs-container p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
    }

    .resp-tabs-container h1,
    .resp-tabs-container h2,
    .resp-tabs-container h3,
    .resp-tabs-container h4,
    .resp-tabs-container h5,
    .resp-tabs-container h6 {
        font-size: 1.2rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.75rem !important;
    }

    .image-hover {
        margin-bottom: 1rem !important;
    }

    .d-flex.py-4.px-4 {
        padding: 1rem !important;
    }

    .w-55px {
        width: 40px !important;
    }

    .exp-box .col-sm-4,
    .exp-box .col-sm-8 {
        position: relative !important;
        z-index: 1 !important;
    }

    .exp-box .cover-background {
        position: relative !important;
        background-attachment: scroll !important;
    }
}

/* Genel exp-box düzenlemeleri */
.exp-box {
    position: relative;
    z-index: 1;
}

.exp-box .row {
    position: relative;
    z-index: 1;
}

/* Wow animation visibility fixes - simple and safe */
.wow {
    visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .w-lg-60 {
        width: 100% !important;
    }

    .w-xl-50 {
        width: 100% !important;
    }

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

    .height-560px {
        height: 300px !important;
    }

    .h-100 {
        height: auto !important;
    }

    .d-flex.h-100 {
        height: auto !important;
    }

    .align-items-center.h-100 {
        height: auto !important;
    }

    /* Modern Animation Section Mobile Fixes */
    .modern-animation-section {
        min-height: 300px;
        padding: 40px 0;
    }

    .animation-container {
        height: 300px;
        max-width: 100%;
    }

    .gradient-text {
        font-size: 2rem;
    }

    .element-icon {
        width: 50px;
        height: 50px;
    }

    .element-icon i {
        font-size: 20px;
    }

    .element-text {
        font-size: 12px;
        max-width: 60px;
    }

    .pulse-circle {
        width: 100px;
        height: 100px;
    }

    .pulse-circle img {
        width: 70px;
        max-width: 70px;
    }

    .floating-element {
        transform: scale(0.8);
    }

    /* Better mobile positioning */
    .element-1 {
        top: 5%;
        left: 5%;
    }

    .element-2 {
        top: 10%;
        right: 5%;
    }

    .element-3 {
        bottom: 15%;
        left: 10%;
    }

    .element-4 {
        bottom: 10%;
        right: 5%;
    }

    .element-5 {
        top: 40%;
        left: 2%;
    }

    .element-6 {
        top: 45%;
        right: 2%;
    }

    /* Genel mobil responsive düzeltmeler */
    .display-1 {
        font-size: 2.5rem !important;
    }

    .display-4 {
        font-size: 2rem !important;
    }

    .display-5 {
        font-size: 1.75rem !important;
    }

    .ls-minus-2px {
        letter-spacing: -0.5px !important;
    }

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

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

    .py-20 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .pb-20 {
        padding-bottom: 3rem !important;
    }

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

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

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

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

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

    .ps-lg-1-9 {
        padding-left: 1rem !important;
    }

    .ps-xxl-10 {
        padding-left: 1rem !important;
    }

    .mx-xxl-1-9 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .mx-xxl-1-8 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .w-md-70 {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .gradient-text {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .floating-element {
        transform: scale(0.7);
    }

    .pulse-circle img {
        width: 60px;
    }

    /* Extra small screen fixes */
    .modern-animation-section {
        min-height: 250px;
        padding: 30px 0;
    }

    .animation-container {
        height: 250px;
    }

    .element-icon {
        width: 40px;
        height: 40px;
    }

    .element-icon i {
        font-size: 16px;
    }

    .element-text {
        font-size: 10px;
        max-width: 50px;
    }

    .pulse-circle {
        width: 80px;
        height: 80px;
    }

    .pulse-circle img {
        width: 50px;
        max-width: 50px;
    }

    /* Even better positioning for small screens */
    .element-1 {
        top: 2%;
        left: 2%;
    }

    .element-2 {
        top: 8%;
        right: 2%;
    }

    .element-3 {
        bottom: 12%;
        left: 8%;
    }

    .element-4 {
        bottom: 8%;
        right: 2%;
    }

    .element-5 {
        top: 35%;
        left: 1%;
    }

    .element-6 {
        top: 40%;
        right: 1%;
    }
}

/* Blog details specific styles */
.blog-details-wow-fadeInUp-100 {
    visibility: visible;
    animation-delay: 100ms;
    animation-name: fadeInUp;
}

.blog-details-wow-fadeInUp-200 {
    visibility: visible;
    animation-delay: 200ms;
    animation-name: fadeInUp;
}

.blog-details-wow-fadeInUp-300 {
    visibility: visible;
    animation-delay: 300ms;
    animation-name: fadeInUp;
}

.blog-details-wow-fadeInUp-400 {
    visibility: visible;
    animation-delay: 400ms;
    animation-name: fadeInUp;
}

/* Blog section specific styles */
.blog-section-wow-fadeInUp-100 {
    visibility: visible;
    animation-delay: 100ms;
    animation-name: fadeInUp;
}

.blog-section-wow-fadeInUp-200 {
    visibility: visible;
    animation-delay: 200ms;
    animation-name: fadeInUp;
}

.blog-section-wow-fadeInUp-300 {
    visibility: visible;
    animation-delay: 300ms;
    animation-name: fadeInUp;
}

/* About section specific styles */
.about-section-wow-fadeInDown-100 {
    visibility: hidden;
    animation-delay: 100ms;
    animation-name: none;
}

.about-section-wow-fadeInUp-200 {
    visibility: hidden;
    animation-delay: 200ms;
    animation-name: none;
}

.about-section-wow-fadeInUp-100 {
    visibility: hidden;
    animation-delay: 100ms;
    animation-name: none;
}

.about-section-wow-fadeInUp-150 {
    visibility: hidden;
    animation-delay: 150ms;
    animation-name: none;
}

/* Services section specific styles */
.services-section-wow-fadeInUp-100 {
    visibility: hidden;
    animation-delay: 100ms;
    animation-name: none;
}

/* Home section specific styles */
.home-section-wow-fadeInUp-100 {
    visibility: hidden;
    animation-delay: 100ms;
    animation-name: none;
}

.home-section-wow-fadeInUp-150 {
    visibility: hidden;
    animation-delay: 150ms;
    animation-name: none;
}

/* Swiper Hero Slider Styles - Clean Version */
.hero-swiper {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
}

.hero-swiper .swiper-slide {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
}

/* Swiper Navigation Buttons */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
    position: absolute !important;
}

.hero-swiper .swiper-button-next {
    right: 30px !important;
}

.hero-swiper .swiper-button-prev {
    left: 30px !important;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
}

/* Swiper Pagination - Completely Redesigned */
.hero-swiper .swiper-pagination {
    position: absolute !important;
    bottom: 40px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    text-align: center !important;
    z-index: 10 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.hero-swiper .swiper-pagination-bullet {
    display: inline-block !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.3) !important;
    margin: 0 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
    flex-shrink: 0 !important;
}

.hero-swiper .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.6) !important;
    transform: scale(1.1) !important;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: white !important;
    transform: scale(1.3) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8) !important;
}

/* Swiper Fade Effect */
.hero-swiper .swiper-slide {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-swiper .swiper-slide-active {
    opacity: 1;
}

/* Fix for page scrolling - Enhanced */
body {
    overflow-x: hidden;
    overflow-y: auto !important;
}

html, body {
    height: auto;
    min-height: 100vh;
}

/* Fix for Swiper mousewheel interference */
.hero-swiper {
    touch-action: pan-y pinch-zoom;
}

/* Ensure content below slider is accessible */
.full-screen + * {
    position: relative;
    z-index: 2;
}

/* Responsive Swiper */
@media (max-width: 768px) {
    .hero-swiper {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: 0 !important;
    }
    
    .hero-swiper .swiper-button-next {
        right: 20px !important;
    }
    
    .hero-swiper .swiper-button-prev {
        left: 20px !important;
    }
    
    .hero-swiper .swiper-button-next::after,
    .hero-swiper .swiper-button-prev::after {
        font-size: 16px;
    }
    
    .hero-swiper .swiper-pagination {
        bottom: 25px !important;
    }
    
    .hero-swiper .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
        margin: 0 4px !important;
    }
}

@media (max-width: 480px) {
    .hero-swiper {
        height: 100vh;
        min-height: 100vh;
    }
    
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
        margin-top: 0 !important;
    }
    
    .hero-swiper .swiper-button-next {
        right: 15px !important;
    }
    
    .hero-swiper .swiper-button-prev {
        left: 15px !important;
    }
    
    .hero-swiper .swiper-button-next::after,
    .hero-swiper .swiper-button-prev::after {
        font-size: 14px;
    }
    
    .hero-swiper .swiper-pagination {
        bottom: 20px !important;
    }
    
    .hero-swiper .swiper-pagination-bullet {
        width: 6px !important;
        height: 6px !important;
        margin: 0 3px !important;
    }
}
