/* Base Styles */
.hero-section {
    padding: 80px 20px;
    max-width: 100%;
    margin: 0 auto;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    margin-bottom: 40px;
}

.text-content {
    flex: 0 0 400px;
    opacity: 0;
    animation: slideInLeft 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.text-content p {
    font-size: 18px;
    line-height: 120%;
    color: #151719;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.main-heading {
    flex: 1;
    text-align: right;
    position: relative;
}

.heading-with-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.main-heading h1 {
    text-align: left;
    font-size: 64px;
    font-weight: bold;
    line-height: 120%;
    color: #0C2951;
    flex: 1;
}

/* Navigation Arrows */
.slider-nav {
    display: flex;
    gap: 15px;
    align-items: center;
    pointer-events: none;
    z-index: 100;
    position: relative;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid #0C2951;
    border-radius: 50%;
    background: transparent;
    color: #0C2951;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto;
    z-index: 100;
    position: relative;
    min-width: 48px;
    min-height: 48px;
}

.slider-arrow:hover {
    background: #0C2951;
    color: #fff;
    transform: scale(1.1);
}

.slider-arrow:active {
    transform: scale(0.95);
}

/* Slider Styles */
.slider-container {
    position: relative;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.slider-container:active {
    cursor: grabbing;
}

.slider-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease-out;
    padding: 0 20px;
}

.slide {
    flex: 0 0 360px;
    height: 340px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    opacity: 1;
    transition: background 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.slide:hover::before {
    background: rgba(255, 255, 255, 0.15);
}

.slide-label {
    font-family: 'Marcellus';
    color: #f2f2f2;
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    font-size: 18px;
    text-transform: uppercase;
    z-index: 2;
}

.slide-location {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #F2F2F2;
    font-size: 18px;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Tablet Version (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    .hero-section {
        padding: 50px 20px;
    }

    .content-wrapper {
        gap: 40px;
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .text-content {
        flex: 1;
        max-width: 100%;
    }

    .text-content p {
        font-size: 15px;
        line-height: 140%;
        margin-bottom: 15px;
    }

    .main-heading {
        width: 100%;
    }

    .heading-with-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .main-heading h1 {
        font-size: 48px;
    }

    .slider-nav {
        position: relative;
        margin-top: 20px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
    }

    .slide {
        flex: 0 0 300px;
        height: 300px;
    }
}

/* Mobile Version (below 768px) */
@media (max-width: 767px) {
    .hero-section {
        padding: 50px 20px;
    }

    .content-wrapper {
        align-items: baseline;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 80px;
    }

    .text-content {
        flex: 1;
        order: 2;
        position: static;
    }

    .main-heading {
        text-align: left;
        order: 1;
    }

    .heading-with-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .main-heading h1 {
        font-size: 48px;
    }

    .slider-nav {
        gap: 12px;
        position: relative;
        margin-top: 30px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .slide {
        flex: 0 0 280px;
        height: 300px;
        max-width: calc(100vw - 80px);
    }
}

/* Small Mobile (below 480px) */
@media (max-width: 480px) {
    .main-heading h1 {
        font-size: 36px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .slide {
        flex: 0 0 270px;
        height: 265px;
        max-width: calc(100vw - 80px);
    }
}

/*****************************************************************************************************/

.itinerary-hero-section {
    background: #0b2950;
    padding: 80px 60px 40px;
    max-width: 100%;
    margin: 0 auto;
}

        .itinerary-top-content {
            display: flex;
            justify-content: space-between;
            align-items:end;
            margin-bottom: 60px;
        }

        .itinerary-left-content {
            max-width: 600px;
        }

       .itinerary-label {
    color: #f2f2f2;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

       .itinerary-main-heading {
    color: #f2f2f2;
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px;
}

        .itinerary-main-heading em {
            font-style: italic;
        }

        .itinerary-description {
    font-size: 18px;
    line-height: 1.2;
    color: #f2f2f2;
    max-width: 550px;
}

        .itinerary-explore-btn {
			font-weight:lighter;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 28px;
            background: transparent;
            color: #f2f2f2;
            font-size: 18px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
        }

        .itinerary-explore-btn:hover {
            border-color: white;
        }

        .itinerary-arrow-icon {
            width: 20px;
            height: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: all 0.4s ease;
        }

        .itinerary-explore-btn:hover .itinerary-arrow-icon {
            transform: translateX(5px);
            border-color: white;
        }

        .itinerary-progress-bar {
            width: 100%;
            height: 2px;
            background: rgba(255, 255, 255, 0.2);
            margin-top: 60px;
            position: relative;
            cursor: pointer;
        }

        .itinerary-progress-fill {
            height: 100%;
            background: white;
            width: 25%;
            transition: width 0.3s ease;
            pointer-events: none;
        }

        .itinerary-slider-section {
    margin-bottom: 25px;
    margin-top: -30px;
    position: relative;
}

        .itinerary-drag-indicator {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            letter-spacing: 1px;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 10;
        }

        .itinerary-slider-container {
            position: relative;
            overflow: hidden;
            cursor: grab;
            user-select: none;
        }

        .itinerary-slider-container:active {
            cursor: grabbing;
        }

        .itinerary-slider-container:hover .itinerary-drag-indicator {
            opacity: 1;
        }

        .itinerary-slider-wrapper {
            display: flex;
            gap: 20px;
            transition: transform 0.3s ease-out;
        }

        .itinerary-slide {
            flex: 0 0 400px;
            height: 550px;
            position: relative;
            border-radius: 0;
            overflow: hidden;
        }

        .itinerary-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
            filter: blur(0);
        }

        .itinerary-slide:hover img {
            filter: blur(4px);
            transform: scale(1.05);
        }

       .itinerary-days-badge {
    color: #f2f2f2;
    position: absolute;
    top: 20px;
    right: 20px;
    background: #B99D75;
    padding: 8px 16px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: lighter;
    z-index: 2;
    border-radius: 2px;
}

        .itinerary-slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            z-index: 2;
        }

       .itinerary-slide-title {
    color: #f2f2f2;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
}

        .itinerary-slide-title em {
            font-style: italic;
            font-family: 'Times New Roman', serif;
        }

        .itinerary-slide-btn {
    font-weight: lighter;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    transition: all 0.3s 
ease;
}

        .itinerary-slide-btn::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: white;
            transition: width 0.3s ease;
        }

        .itinerary-slide-btn:hover::after {
            width: calc(100% + 10px);
        }

     .itinerary-slide-arrow {
    width: 35px;
    height: 35px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: transform 0.3s 
ease;
}

        .itinerary-slide-btn:hover .itinerary-slide-arrow {
            transform: translateX(5px);
        
}

        /* Navigation Arrows */
        .itinerary-nav-arrow {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            color: #0b2950;
            border: none;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .itinerary-nav-arrow:hover {
            background: white;
            transform: scale(1.1);
        }

        .itinerary-prev-arrow {
            margin-right: 15px;
        }

        .itinerary-next-arrow {
            margin-left: 0;
        }
        
     .itinerary-arrows-container {
			margin-top: 50px;
			display: flex;
			align-items: center;
			gap: 15px;
		}

		@media (max-width: 768px) {
            .itinerary-hero-section {
                padding: 40px 20px;
            } 
            
             .itinerary-top-content {
    display: block;

}
		
            .itinerary-main-heading {
                font-size: 42px;
            }

            .itinerary-slide {
                flex: 0 0 300px;
                height: 450px;
            }

            .itinerary-slide-title {
                font-size: 22px;
            }
			
			        .itinerary-slider-section {
    margin-bottom: 20px;
    margin-top: -50px;
    position: relative;
}

            .itinerary-nav-arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
                opacity: 1;
            }

            .itinerary-prev-arrow {
                left: 10px;
            }

            .itinerary-next-arrow {
                right: 10px;
            }
			
        }
    /* ---------- FIX MOBILE PADDING FOR SLIDE CONTENT ---------- */
@media (max-width: 768px) {
    .itinerary-slide-content {
        padding-top: 1px !important;
        padding-right: 15px !important;
        padding-bottom: 10px !important;
        padding-left: 15px !important;
    }
}

/*******************************************************************************************/
   /* Main Section Wrapper */
.wickside-section {
    max-width: 100%;
    background: white;
    padding: 80px 20px 0px;
    min-height: 100vh;
    position: relative;
}

.wickside-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* Header Styles */
.wickside-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.wickside-header h2 {
    line-height: 1.2;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #0C2951;
}

.wickside-header h5 {
    font-size: 18px;
    color: #151719;
    font-weight: normal;
}

/* Card Container Styles */
.wickside-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Base Styles */
.wickside-card {
    position: absolute;
    width: 240px;
    background: #e8e4e0;
    border: 3px solid transparent;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.7s cubic-bezier(0.2, 0.8, 0.4, 1.2);
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

/* Card Inner Elements */
.wickside-card-icon {
    background: #e8e4e0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    transition: background 0.4s ease;
}

.wickside-card-icon svg {
    width: 80px;
    height: 80px;
    fill: white;
}

.wickside-card-content {
    background: white;
    padding: 20px;
}

.wickside-card-title {
    font-size: 24px;
    font-weight: 500;
    color: #151719ab;
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.wickside-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Dot Indicators */
.wickside-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.wickside-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wickside-dot.active {
    background: #0C2951;
    width: 12px;
    height: 12px;
}

/* Arrow Navigation */
.carousel-arrows {
    display: none;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(12, 41, 81, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: rgba(12, 41, 81, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.left {
    left: 10px;
}

.carousel-arrow.right {
    right: 10px;
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* --- MOBILE STYLES (SMOOTH CAROUSEL) --- */
@media (max-width: 767px) {
    .wickside-section {
        min-height: 90vh;
        padding: 60px 0 60px;
    }
    
    .wickside-header h2 {
        font-size: 2rem;
    }

    .wickside-cards-container {
        height: 450px;
        overflow: hidden;
    }

    .wickside-card {
        width: 250px;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        pointer-events: none;
    }

    .wickside-card.active {
        opacity: 1;
        pointer-events: auto;
        z-index: 10;
    }

    .wickside-card.prev {
        opacity: 0;
        transform: translate(-150%, -50%);
    }

    .wickside-card.next {
        opacity: 0;
        transform: translate(50%, -50%);
    }

    /* Color application for mobile */
    .wickside-card:nth-child(1) .wickside-card-icon { background: #0b2950; }
    .wickside-card:nth-child(1) .wickside-card-title { color: #0b2950; }

    .wickside-card:nth-child(2) .wickside-card-icon { background: #B99D75; }
    .wickside-card:nth-child(2) .wickside-card-title { color: #B99D75; }

    .wickside-card:nth-child(3) .wickside-card-icon { background: #151719; }
    .wickside-card:nth-child(3) .wickside-card-title { color: #151719; }

    .wickside-card:nth-child(4) .wickside-card-icon { background: #0b2950; }
    .wickside-card:nth-child(4) .wickside-card-title { color: #0b2950; }

    .wickside-card:nth-child(5) .wickside-card-icon { background: #B99D75; }
    .wickside-card:nth-child(5) .wickside-card-title { color: #B99D75; }

    .wickside-card:nth-child(6) .wickside-card-icon { background: #151719; }
    .wickside-card:nth-child(6) .wickside-card-title { color: #151719; }

    .wickside-card:nth-child(7) .wickside-card-icon { background: #0b2950; }
    .wickside-card:nth-child(7) .wickside-card-title { color: #0b2950; }

    /* Show dots and arrows on mobile */
    .wickside-dots {
        display: flex;
    }

    .carousel-arrows {
        display: block;
    }
}

/* --- TABLET STYLES (769px to 1024px) - Scattered but Less Cards --- */
@media (min-width: 768px) and (max-width: 1024px) {
    .wickside-section {
        padding: 30px 20px 20px;
    }
	.wickside-card-icon{
		min-height:80px;
		padding:5px;
	}
	.wickside-card-title {
    font-size: 18px;
	}
	.wickside-card-content p {
    font-size: 12px;
    color: #666;
    line-height: 1.2;
}
	.wickside-card-icon svg {
    width: 55px;
		height: 55px;
	}
    .wickside-header h2 {
        font-size: 2.5rem;
    }
    
    .wickside-cards-container {
        height: 400px;
    }
    
    .wickside-card {
        width: 150px;
    }
    
    /* Wiggle Animation Definition */
    @keyframes wiggle-animation {
        0%, 100% { transform: translate(0, 0) rotate(var(--initial-rotate, 0deg)); }
        25% { transform: translate(1px, -1px) rotate(calc(var(--initial-rotate, 0deg) + 0.5deg)); }
        75% { transform: translate(-1px, 1px) rotate(calc(var(--initial-rotate, 0deg) - 0.5deg)); }
    }
    
    /* Tablet Positions - Cards overlapping more */
    .wickside-card:nth-child(1) {
        left: calc(50% - 350px);
        --initial-rotate: -8deg;
        transform: rotate(-8deg);
        z-index: 1;
    }
    
    .wickside-card:nth-child(2) {
        left: calc(50% - 270px);
        --initial-rotate: 6deg;
        transform: rotate(6deg);
        z-index: 2;
    }
    
    .wickside-card:nth-child(3) {
        left: calc(50% - 180px);
        --initial-rotate: -5deg;
        transform: rotate(-5deg);
        z-index: 5;
    }
    
    .wickside-card:nth-child(4) {
        left: calc(50% - 80px);
        --initial-rotate: 7deg;
        transform: rotate(7deg);
        z-index: 4;
    }
    
    .wickside-card:nth-child(5) {
        left: calc(50% + 30px);
        --initial-rotate: -6deg;
        transform: rotate(-6deg);
        z-index: 3;
    }
    
    .wickside-card:nth-child(6) {
        left: calc(50% + 130px);
        --initial-rotate: 5deg;
        transform: rotate(5deg);
        z-index: 2;
    }
    
    .wickside-card:nth-child(7) {
        left: calc(50% + 220px);
        --initial-rotate: -4deg;
        transform: rotate(-4deg);
        z-index: 1;
    }
    
    /* Apply Smooth Wiggle */
    .wickside-card {
        animation: wiggle-animation 5s infinite alternate ease-in-out;
    }
    
    /* Hover Effect */
    .wickside-card:hover {
        transform: rotate(0deg) scale(1.12) translateY(-25px);
        z-index: 100 !important;
        box-shadow: 0 18px 45px rgba(0,0,0,0.25);
        animation: none;
    }
    
    /* Freeze other cards on hover */
    .wickside-cards-container:hover .wickside-card:not(:hover) {
        animation: none !important;
        transform: rotate(var(--initial-rotate)) !important;
        z-index: 1 !important;
    }
    
    /* Tablet Hover Colors */
    .wickside-card:nth-child(1):hover .wickside-card-icon { background: #0b2950; }
    .wickside-card:nth-child(1):hover .wickside-card-title { color: #0b2950; }
    
    .wickside-card:nth-child(2):hover .wickside-card-icon { background: #B99D75; }
    .wickside-card:nth-child(2):hover .wickside-card-title { color: #B99D75; }
    
    .wickside-card:nth-child(3):hover .wickside-card-icon { background: #151719; }
    .wickside-card:nth-child(3):hover .wickside-card-title { color: #151719; }
    
    .wickside-card:nth-child(4):hover .wickside-card-icon { background: #0b2950; }
    .wickside-card:nth-child(4):hover .wickside-card-title { color: #0b2950; }
    
    .wickside-card:nth-child(5):hover .wickside-card-icon { background: #B99D75; }
    .wickside-card:nth-child(5):hover .wickside-card-title { color: #B99D75; }
    
    .wickside-card:nth-child(6):hover .wickside-card-icon { background: #151719; }
    .wickside-card:nth-child(6):hover .wickside-card-title { color: #151719; }
    
    .wickside-card:nth-child(7):hover .wickside-card-icon { background: #0b2950; }
    .wickside-card:nth-child(7):hover .wickside-card-title { color: #0b2950; }
}
/* --- DESKTOP STYLES (1025px and above) --- */
@media (min-width: 1025px) {
    /* Wiggle Animation Definition */
    @keyframes wiggle-animation {
        0%, 100% { transform: translate(0, 0) rotate(var(--initial-rotate, 0deg)); }
        25% { transform: translate(1px, -1px) rotate(calc(var(--initial-rotate, 0deg) + 0.5deg)); }
        75% { transform: translate(-1px, 1px) rotate(calc(var(--initial-rotate, 0deg) - 0.5deg)); }
    }

    /* Set Initial Positions and Rotation */
    .wickside-card:nth-child(1) {
        left: calc(50% - 580px);
        --initial-rotate: -6deg;
        transform: rotate(-6deg);
        z-index: 1;
    }

    .wickside-card:nth-child(2) {
        left: calc(50% - 450px);
        --initial-rotate: 5deg;
        transform: rotate(5deg);
        z-index: 2;
    }

    .wickside-card:nth-child(3) {
        left: calc(50% - 320px);
        --initial-rotate: -4deg;
        transform: rotate(-4deg);
        z-index: 5;
    }

    .wickside-card:nth-child(4) {
        left: calc(50% - 120px);
        --initial-rotate: 4deg;
        transform: rotate(4deg);
        z-index: 5;
    }

    .wickside-card:nth-child(5) {
        left: calc(50% + 60px);
        --initial-rotate: -5deg;
        transform: rotate(-3deg);
        z-index: 5;
    }

    .wickside-card:nth-child(6) {
        left: calc(50% + 220px);
        --initial-rotate: 5deg;
        transform: rotate(5deg);
        z-index: 6;
    }

    .wickside-card:nth-child(7) {
        left: calc(50% + 340px);
        --initial-rotate: -4deg;
        transform: rotate(-4deg);
        z-index: 6;
    }
    
    /* Apply Smooth Wiggle */
    .wickside-card {
        animation: wiggle-animation 5s infinite alternate ease-in-out;
    }

    /* Hover Effect: Bigger and Smooth */
    .wickside-card:hover {
        transform: rotate(0deg) scale(1.15) translateY(-30px);
        z-index: 100 !important;
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        animation: none;
    }

    /* Freeze all other cards when one is hovered */
    .wickside-cards-container:hover .wickside-card:not(:hover) {
        animation: none !important;
        transform: rotate(var(--initial-rotate)) !important;
        z-index: 1 !important;
    }

    .wickside-card:hover {
        z-index: 100 !important;
    }

    /* Desktop Hover Colors */
    .wickside-card:nth-child(1):hover .wickside-card-icon { background: #0b2950; }
    .wickside-card:nth-child(1):hover .wickside-card-title { color: #0b2950; }

    .wickside-card:nth-child(2):hover .wickside-card-icon { background: #B99D75; }
    .wickside-card:nth-child(2):hover .wickside-card-title { color: #B99D75; }

    .wickside-card:nth-child(3):hover .wickside-card-icon { background: #151719; }
    .wickside-card:nth-child(3):hover .wickside-card-title { color: #151719; }

    .wickside-card:nth-child(4):hover .wickside-card-icon { background: #0b2950; }
    .wickside-card:nth-child(4):hover .wickside-card-title { color: #0b2950; }

    .wickside-card:nth-child(5):hover .wickside-card-icon { background: #B99D75; }
    .wickside-card:nth-child(5):hover .wickside-card-title { color: #B99D75; }

    .wickside-card:nth-child(6):hover .wickside-card-icon { background: #151719; }
    .wickside-card:nth-child(6):hover .wickside-card-title { color: #151719; }

    .wickside-card:nth-child(7):hover .wickside-card-icon { background: #0b2950; }
    .wickside-card:nth-child(7):hover .wickside-card-title { color: #0b2950; }
}
/*****************************************************************************************************/
 .stories-section {
    background: #0b2950;
    padding: 30px 0px 50px 60px;
    max-width: 100%;
    margin: 0 auto;
}
        .stories-header {
            margin-bottom: 60px;
        }

       .stories-label {
    line-height: 1.2;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #0c2951;
    font-weight: 500;
}

        .stories-title-wrap {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 5px;
        }

.stories-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: #f2f2f2;
}

        .stories-title em {
            font-style: italic;
        }

        .stories-nav {
			    margin-right: 60px;
            display: flex;
            gap: 1px;
        }

        .stories-nav-btn {
            width: 50px;
            height: 50px;
/*             border: 1px solid rgba(21, 23, 25, 0.3); */
            border-radius: 50%;
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 40px;
            color: #f2f2f2;
        }

/*         .stories-nav-btn:hover {
            border-color: #151719;
            background: #151719;
            color: white;
        } */

        .stories-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .stories-nav-btn:disabled:hover {
            background: transparent;
            color: #151719;
            border-color: rgba(21, 23, 25, 0.3);
        }

       .stories-description {
    font-size: 18px;
    line-height: 1.2;
    color: #f2f2f2;
    max-width: 740px;
    margin-bottom: 30px;
}

       .stories-explore-btn {
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: none;
    color: #f2f2f2;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s 
ease;
}

     .stories-explore-icon {
    width: 35px;
    height: 35px;
    border: 1px solid #f2f2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.3s 
ease;
}

/*         .stories-explore-btn:hover .stories-explore-icon {
            border-color: #151719;
            background: #151719;
            color: white;
            transform: translateX(3px);
        }
 */
        .stories-slider-container {
            position: relative;
            overflow: hidden;
        }

        .stories-slider-wrapper {
            display: flex;
            gap: 20px;
            transition: transform 0.5s ease;
        }

        .stories-card {
            flex: 0 0 calc(30% - 15px);
            overflow: hidden;
            cursor: pointer;
        }

        .stories-card-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
        }

        .stories-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .stories-card:hover .stories-card-image img {
            transform: scale(1.1);
        }

        .stories-card-content {
            padding:30px 0px;
        }

      .stories-card-date {
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f2f2f2;
    margin-bottom: 15px;
}
        .stories-card-title {
            font-size: 24px;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #f2f2f2;
            font-weight: 400;
        }

        .stories-card-title em {
            font-style: italic;
            font-family: 'Times New Roman', serif;
        }

        .stories-card-btn {
			font-weight:300;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0;
            background: transparent;
            border: none;
            color: #f2f2f2;
            font-size: 18px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .stories-card-arrow {
            width: 35px;
            height: 35px;
            border: 1px solid #f2f2f2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            transition: all 0.3s ease;
        }

/*         .stories-card-btn:hover .stories-card-arrow {
            border-color: #151719;
            background: #151719;
            color: white;
            transform: translateX(3px);
        } */

        @media (max-width: 1024px) {
            .stories-card {
                flex: 0 0 calc(33.333% - 14px);
            }
        }

        @media (max-width: 768px) {
            .stories-section {
                padding: 40px 20px;
            }

            .stories-title {
                font-size: 36px;
            }

            .stories-card {
                flex: 0 0 calc(50% - 10px);
            }
        }

        @media (max-width: 480px) {
            .stories-card {
                flex: 0 0 100%;
            }

            .stories-title-wrap {
                flex-direction: column;
                gap: 20px;
            }
        }

/*************************************************************************************/
      
        .testimonials-section {
            background: #f2f2f2;
            padding: 70px 60px 40px;
            max-width: 100%;
            margin: 0 auto;
        }
        
        .testimonials-header {
            margin-bottom: 60px;
        }
        
        .stories-label {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: #151719;
            font-weight: 400;
        }
        
        .stories-title {
            font-size: 56px;
            font-weight: 400;
            line-height: 1.2;
            color: #0c2951;
        }
        
        .stories-title em {
            font-style: italic;
            font-family: 'Times New Roman', serif;
        }
        
        /* Desktop Grid */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        
        .testimonial-card {
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .testimonial-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
        }
        
        .testimonial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .testimonial-card:hover .testimonial-image img {
            transform: scale(1.1);
        }
        
        .testimonial-content {
            padding: 30px;
            display: flex;
            flex-direction: column;
        }
        
        .testimonial-quote {
            font-size: 18px;
            line-height: 1.4;
            color: #151719;
            margin-bottom: 30px;
            flex: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .testimonial-flag {
            font-size: 24px;
            flex-shrink: 0;
        }
        
        .testimonial-name {
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #151719;
            font-weight: 400;
        }

        /* Slider controls - hidden on desktop */
        .testimonials-slider-controls {
            display: none;
        }

        .testimonials-slider-wrapper {
            position: relative;
        }

        @media (max-width: 1200px) {
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 40px 20px;
            }
            
            .stories-title {
                font-size: 36px;
            }

            .testimonials-slider-wrapper {
                overflow: hidden;
                position: relative;
                width: 100%;
            }

            /* Convert to slider */
            .testimonials-grid {
                display: flex;
                gap: 0;
                transition: transform 0.5s ease;
                grid-template-columns: none;
                width: 100%;
            }

            .testimonial-card {
                min-width: 100%;
                max-width: 100%;
                flex-shrink: 0;
                flex-grow: 0;
                padding: 0 10px;
            }
            
            .testimonial-card:first-child {
                padding-left: 0;
            }
            
            .testimonial-card:last-child {
                padding-right: 0;
            }

            /* Show slider controls */
            .testimonials-slider-controls {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 20px;
                margin-top: 30px;
            }

            .testimonials-slider-btn {
                width: 45px;
                height: 45px;
                border-radius: 50%;
                background: #0c2951;
                border: none;
                color: white;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .testimonials-slider-btn:hover {
                background: #163d6b;
            }

            .testimonials-slider-btn:active {
                transform: scale(0.95);
            }

            .testimonials-dots {
                display: flex;
                gap: 10px;
            }

            .testimonials-dot {
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background: #cbcbcb;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .testimonials-dot.active {
                background: #0c2951;
                width: 30px;
                border-radius: 5px;
            }
        }

        @media (max-width: 480px) {
            .testimonials-section {
                padding: 30px 15px;
            }
            
            .testimonial-content {
                padding: 20px;
            }
            
            .testimonial-quote {
                font-size: 16px;
            }
        }

/**************************************************************************************************/
    .accordion-section {
    position: relative;
    margin: 0;
    padding: 0;
}

.accordion-wrapper {
    height: 400vh;
    position: relative;
}

/* Sticky Container */
.accordion-container {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    z-index: 10;
    overflow: hidden;
}

/* Accordion Panel - Single unified element */
.accordion-panel {
    position: relative;
    display: flex;
    flex-direction: row;
    transition: flex 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 0 0 60px;
    overflow: hidden;
}

/* First panel special case */
.accordion-panel:first-child {
    flex: 1 1 100%;
}

.accordion-panel:first-child.inactive {
    flex: 0 0 0px;
}

/* Active panel */
.accordion-panel.active {
    flex: 1 1 100%;
}

/* Panel Inner Wrapper - holds sidebar + content together */
.accordion-panel-inner {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-width: 80px;
    height: 100%;
}

/* Sidebar with vertical text */
.accordion-sidebar {
    font-family: 'Marcellus';
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    padding: 40px 0;
    white-space: nowrap;
    width: 60px;
    min-width: 60px;
    flex-shrink: 0;
}

.accordion-panel:nth-child(1) .accordion-sidebar { background: #F2F2F2; }
.accordion-panel:nth-child(2) .accordion-sidebar { background: #0b2950; }
.accordion-panel:nth-child(3) .accordion-sidebar { background: #B99D75; }
.accordion-panel:nth-child(4) .accordion-sidebar { background: #151719; }

/* Main Content Area */
.accordion-content {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    overflow: hidden; /* Important: prevent overflow */
}

.accordion-panel:nth-child(1) .accordion-content { background: #f5f1ed; }
.accordion-panel:nth-child(2) .accordion-content { background: #0b2950; }
.accordion-panel:nth-child(3) .accordion-content { background: #b99d75; }
.accordion-panel:nth-child(4) .accordion-content { background: #151719; }

.accordion-content-inner {
    display: flex;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1400px; /* Increased from 1200px */
    position: relative;
}

.accordion-text-section {
    flex: 1 1 45%; /* Changed from fixed 500px to flexible % */
    max-width: 600px; /* Max width instead of fixed */
    min-width: 0; /* Allow shrinking */
}

.accordion-label {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #0C2951;
}

.accordion-panel:not(:nth-child(1)) .accordion-label {
    color: #cbcbcb;
}

.accordion-heading {
    font-weight: bold;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #0C2951;
}

.accordion-heading .accordion-italic {
    font-style: italic;
}

.accordion-panel:not(:nth-child(1)) .accordion-heading {
    color: #fff;
}

.accordion-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #151719;
}

.accordion-panel:not(:nth-child(1)) .accordion-description {
    color: #f2f2f2;
}

.accordion-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    background: none;
    border: none;
    cursor: pointer;
}

.accordion-panel:nth-child(1) .accordion-explore-btn {
    color: #151719;
}

.accordion-panel:not(:nth-child(1)) .accordion-explore-btn {
    color: #fff;
}

.accordion-explore-btn:hover {
    opacity: 0.7;
}

.accordion-explore-btn:hover .accordion-btn-circle {
    transform: translateX(5px);
}

.accordion-btn-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 18px;
}

.accordion-panel:nth-child(1) .accordion-btn-circle {
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
}

.accordion-panel:not(:nth-child(1)) .accordion-btn-circle {
    border: 1px solid #fff;
    color: #fff;
}

.accordion-image-section {
    flex: 1 1 45%; /* Changed from fixed 500px to flexible % */
    max-width: 600px; /* Max width instead of fixed */
    height: 500px;
    min-width: 0; /* Allow shrinking */
}

.accordion-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Large screens (1400px+) */
@media (min-width: 1400px) {
    .accordion-content-inner {
        gap: 80px;
    }
    
    .accordion-text-section,
    .accordion-image-section {
        max-width: 650px;
    }
}

/* Medium-Large screens */
@media (max-width: 1200px) {
    .accordion-content-inner {
        gap: 40px;
        max-width: 1000px;
    }

    .accordion-text-section,
    .accordion-image-section {
        flex: 1 1 48%;
        max-width: 500px;
    }
    
    .accordion-heading {
        font-size: 32px;
    }
    
    .accordion-content {
        padding: 60px 40px;
    }

    .accordion-image-section {
        height: 450px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .accordion-content-inner {
        flex-direction: column;
        gap: 40px;
        max-width: 600px;
    }

    .accordion-text-section,
    .accordion-image-section {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .accordion-image-section {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .accordion-panel {
        flex: 0 0 40px;
    }
    
    .accordion-sidebar {
        font-size: 16px;
        width: 40px;
        min-width: 40px;
        padding: 20px 0;
    }
    
    .accordion-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .accordion-label {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .accordion-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .accordion-image-section {
        height: 280px;
    }

    .accordion-content {
        padding: 40px 20px;
    }
    
    .accordion-explore-btn {
        font-size: 14px;
    }
    
    .accordion-btn-circle {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* Very small mobile */
@media (max-width: 480px) {
    .accordion-heading {
        font-size: 20px;
    }
    
    .accordion-description {
        font-size: 13px;
    }
    
    .accordion-image-section {
        height: 220px;
    }
    
    .accordion-content {
        padding: 30px 15px;
    }
}
/***************************************************************************************************/
  .containerr {
			background:#cbcbcb;
            width: 100%;
              padding:60px 20px;
        }

        .clocks-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
/*             gap: 20px; */
        }

        .clock-card {
            padding: 30px 20px;
        }

        .location {
            color: #0C2951;
            font-size: 24px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 15px;
        }

        .led-display {
            background: #151719;
            border-radius: 8px;
            padding: 20px 10px;
            box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6);
        }

.digital-time {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.digit-container {
    display: flex;
    gap: 3px;
}

.segment-digit {
    width: 20px;
    height: 35px;
    position: relative;
    display: inline-block;
}

.segment {
    position: absolute;
    background: #B99D75;
    box-shadow: 0 0 5px rgba(185, 157, 117, 0.6);
}

.segment.off {
    background: #2a2a2a;
    box-shadow: none;
    opacity: 0.15;
}

.segment.horizontal {
    height: 4px;
    width: 14px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
}

.segment.vertical {
    width: 4px;
    height: 13px;
    border-radius: 1px;
}

.seg-a { top: 0; }
.seg-b { top: 3px; right: 1px; }
.seg-c { bottom: 3px; right: 1px; }
.seg-d { bottom: 0; }
.seg-e { bottom: 3px; left: 1px; }
.seg-f { top: 3px; left: 1px; }
.seg-g { top: 50%; transform: translateX(-50%) translateY(-50%); }

.colon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    margin: 0 2px;
}

.colon-dot {
    width: 5px;
    height: 5px;
    background: #B99D75;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(185, 157, 117, 0.6);
}

@media (max-width: 1200px) {
    .clocks-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .clocks-grid {
        grid-template-columns: 1fr;
    }
    
    .segment-digit {
        width: 25px;
        height: 45px;
    }
    
    .segment.horizontal {
        height: 5px;
        width: 18px;
    }
    
    .segment.vertical {
        width: 5px;
        height: 17px;
    }
    
    .colon-dot {
        width: 6px;
        height: 6px;
    }
}
/*************************************************************************************/
.sis-scroll-container {
    position: relative;
    /* Don't set height - let shortcode control it */
}

.sis-content-wrapper {
    position: fixed !important;  /* Changed from absolute */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;  /* Higher z-index */
    padding: 0 5%;
    pointer-events: none;
}

        .sis-canvas {
            width: 100%;
            height: 100%;
            object-fit: contain;
object-position: center;
        }

        .sis-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
/*             background: rgb(0 0 0 / 11%); */
            z-index: 1;
        }

        .sis-content-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            padding: 0 5%;
            pointer-events: none;
        }

        .sis-content-slide {
            position: absolute;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            opacity: 0;
            will-change: transform, opacity;
        }

        .sis-content-slide.sis-visible {
            opacity: 1;
        }

        .sis-content-inner {
            max-width: 450px;
            pointer-events: all;
        }

        /* First two slides - Left aligned */
        .sis-content-slide:nth-child(1),
        .sis-content-slide:nth-child(2) {
            justify-content: flex-start;
        }

        .sis-content-slide:nth-child(1) .sis-content-inner,
        .sis-content-slide:nth-child(2) .sis-content-inner {
            margin-left: 0;
        }

.sis-content-slide:nth-child(3) .sis-content-inner {
            margin-left: 30px;
        }

        /* Third slide - Center aligned */
        .sis-content-slide:nth-child(3) {
            justify-content: flex-start;
        }

      .sis-content-slide:nth-child(3) .sis-content-inner {
    text-align: left;
    max-width: 450px;
/*     margin: 0 auto; */
}
       .sis-content-slide h1, .sis-content-slide h2 {
    color:  #fff;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

     .sis-content-slide p {
    font-size: 18px;
    line-height: 1.2;
    color:  #fff;
}

        .sis-explore-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border-radius: 4px;
        }

        .sis-explore-btn:hover {
            background: white;
            color: #000;
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .sis-content-slide h1,
            .sis-content-slide h2 {
                font-size: 2rem;
            }

            .sis-content-slide p {
                font-size: 1rem;
            }

            .sis-explore-btn {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }

            .sis-content-inner {
                max-width: 85%;
            }
			
			.sis-content-slide:nth-child(3) .sis-content-inner {
				text-align: unset;
				max-width: 300px;
				margin: 0 auto;
			}
        }

/********************************RESPONSIVE**************************************************/
/* Tablet (≤1024px) */
@media (max-width: 1024px) {
    /*.sis-scroll-container {*/
    /*    top: -75px;*/
    /*}*/

.wickside-header {
    text-align: center;
    margin-bottom: 0px;
    position: relative;
    z-index: 1;
}
	
}

/* Mobile (≤768px) */
/*@media (max-width: 768px) {*/
/*    .sis-scroll-container {*/
/*        top: -75px;*/
/*    }*/
/*}*/

/********************************************************************************/

    body {
      margin: 0;
      padding: 0;
      background-color: #f5f5f5; /* light grey background */
    }

    .site-container {
      background-color: #f5f5f5; /* light grey background */
      padding: 40px 20px;
    }

    .partner-logos__grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      align-items: center;
      border-collapse: collapse;
    }

    .partner-logos__grid__item {
      border-right: 1px solid #21212166;
      padding: 0 10px;
    }

    .partner-logos__grid__item:last-child {
      border-right: none;
    }

    .partner-logos__text h6 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1rem;
      text-align: center;
    }

    .swiper {
      height: 100px;
      overflow: hidden;
      background-color: transparent;
      border-radius: 8px;
      padding: 10px;
    }

    .swiper-slide img {
      width: 50%;
      height: auto;
      display: block;
      margin: 0 auto; /* center the logo */
      object-fit: contain;
      filter: grayscale(100%);
      transition: filter 0.3s, transform 0.3s, opacity 0.5s;
      opacity: 0.85;
    }

    .swiper-slide img:hover {
      filter: grayscale(0%);
      transform: scale(1.05);
      opacity: 1;
    }

    @media (max-width: 1024px) {
      .partner-logos__grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .partner-logos__grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .swiper {
        height: 80px;
      }
      .swiper-slide img {
        width: 70%;
      }
    }
  .partner-logos__text {
  text-align: center;
  max-width: 800px; /* keeps text nicely contained */
  margin: 0 auto;   /* centers the block itself */
  padding: 40px 20px; /* breathing room */
}

.partner-logos__text h2 {
  font-size: 2rem;       /* modern, readable heading size */
  font-weight: 600;      /* elegant thickness */
  color: #222;           /* deep neutral color */
  margin-bottom: 15px;   /* space between heading & paragraph */
}

.partner-logos__text p {
  font-size: 1rem;
  line-height: 1.7;      /* comfortable readability */
  color: #555;           /* softer tone for paragraph */
  margin: 0 auto;
}
