/* Original Interactive Banner Slider Styles */
.overflow-hidden {
    overflow: hidden;
}

.bg-regal-blue {
    background: #162340;
}

.position-relative {
    position: relative;
}

.border-radius-6px {
    border-radius: 6px;
}

.lg-border-radius-0px {
    border-radius: 0;
}

.z-index-0 {
    z-index: 0;
}

.z-index-minus-1 {
    z-index: -1;
}

.position-absolute {
    position: absolute;
}

.top-minus-150px {
    top: -150px;
}

.left-minus-30px {
    left: -30px;
}

/* Background Image Animation */
.position-absolute[data-bottom-top] {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    50% { transform: rotate(-20deg) translateY(-20px); }
}

/* Header Styles */
.ps-25px {
    padding-left: 25px;
}

.pe-25px {
    padding-right: 25px;
}

.mb-10px {
    margin-bottom: 10px;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-white {
    color: white;
}

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

.lh-42px {
    line-height: 42px;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.border-radius-100px {
    border-radius: 100px;
}

.bg-gradient-blue-whale-transparent {
    background: rgba(255, 255, 255, 0.1);
}

.d-inline-block {
    display: inline-block;
}

.mb-0 {
    margin-bottom: 0;
}

.ls-minus-1px {
    letter-spacing: -1px;
}

/* Grid Layout */
.row {
    margin: 0;
}

.col-lg-5,
.col-lg-2,
.col-12 {
    padding: 0 15px;
}

/* Section Container Styling */
.bg-regal-blue {
    margin: 0 50px;
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .bg-regal-blue {
        margin: 0 30px;
        border-radius: 18px;
    }
}

@media (max-width: 992px) {
    .bg-regal-blue {
        margin: 0 20px;
        border-radius: 16px;
    }
}

@media (max-width: 768px) {
    .bg-regal-blue {
        margin: 0 15px;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .bg-regal-blue {
        margin: 0 10px;
        border-radius: 12px;
    }
}

.mb-6 {
    margin-bottom: 3rem;
}

.sm-mb-9 {
    margin-bottom: 2rem;
}

.md-mb-20px {
    margin-bottom: 1.25rem;
}

.text-center {
    text-align: center;
}

.text-lg-start {
    text-align: left;
}

.align-items-center {
    align-items: center;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-lg-end {
    justify-content: flex-end;
}

.w-85 {
    width: 85%;
}

.md-w-100 {
    width: 100%;
}

.last-paragraph-no-margin {
    margin-bottom: 0;
}

/* Navigation Buttons */
.slider-one-slide-prev-1,
.slider-one-slide-next-1 {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.slider-one-slide-prev-1:hover,
.slider-one-slide-next-1:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.icon-extra-medium {
    font-size: 18px;
}

.slider-navigation-style-04 {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Outside Box */
.outside-box-right-25 {
    margin-right: 25px;
}

.sm-outside-box-right-0 {
    margin-right: 0;
}

/* Swiper Slider Styles */
.slider-one-slide {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin-left: -5%;
}

.slider-one-slide .swiper-container {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.slider-one-slide .swiper-wrapper {
    display: flex;
    align-items: center;
    transition-timing-function: ease-out;
}

.slider-one-slide .swiper-slide {
    flex-shrink: 0;
    width: auto;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.slider-one-slide .swiper-slide:hover {
    transform: translateY(-5px);
}

.slider-one-slide .swiper-slide-active {
    z-index: 2;
}

.slider-one-slide .swiper-slide-prev,
.slider-one-slide .swiper-slide-next {
    z-index: 1;
}

/* Slider Navigation */
.slider-one-slide .swiper-button-next,
.slider-one-slide .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-one-slide .swiper-button-next:hover,
.slider-one-slide .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.slider-one-slide .swiper-button-prev {
    left: -25px;
}

.slider-one-slide .swiper-button-next {
    right: -25px;
}

/* Slider Pagination */
.slider-one-slide .swiper-pagination {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slider-one-slide .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-one-slide .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
}

/* Custom Pagination Container - Right Side */
.slider-pagination-container {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slider-pagination-container .swiper-pagination {
    position: static;
    transform: none;
    flex-direction: column;
    gap: 12px;
}

.slider-pagination-container .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

.slider-pagination-container .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
}

.slider-pagination-container .swiper-pagination-bullet-active {
    background: white;
    border-color: white;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Interactive Banner Cards */
.interactive-banner-style-09 {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    height: 450px;
    min-width: 280px;
    max-width: 320px;
    background: #fff;
    transition: all 0.4s ease;
    cursor: pointer;
    margin: 0 auto;
}

.interactive-banner-style-09:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.interactive-banner-style-09 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.interactive-banner-style-09:hover img {
    transform: scale(1.05);
}

/* Overlays */
.opacity-extra-medium {
    opacity: 0.7;
}

.bg-gradient-dark-transparent {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
}

.opacity-very-light {
    opacity: 0.3;
}

.bg-slate-blue {
    background: #64748b;
}

.bg-gradient-regal-blue-transparent {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.9) 100%);
}

.opacity-9 {
    opacity: 0.9;
}

.bg-gradient-base-color-transparent {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(30, 58, 138, 0.3) 100%);
}

/* Content Layout */
.image-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    color: white;
}

.h-100 {
    height: 100%;
}

.w-100 {
    width: 100%;
}

.ps-15 {
    padding-left: 1.5rem;
}

.pe-15 {
    padding-right: 1.5rem;
}

.pt-13 {
    padding-top: 2rem;
}

.pb-13 {
    padding-bottom: 2rem;
}

.md-p-10 {
    padding: 1rem;
}

.justify-content-bottom {
    justify-content: flex-end;
}

.align-items-start {
    align-items: flex-start;
}

.flex-column {
    flex-direction: column;
}

/* Label and Icon */
.hover-label-icon {
    position: relative;
    z-index: 9;
    margin-bottom: auto;
}

.label {
    background: var(--color-accent, #3b82f6);
    color: white;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.bg-base-color {
    background: var(--color-accent, #3b82f6);
}

.ls-05px {
    letter-spacing: 0.5px;
}

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

.icon-extra-large {
    font-size: 2.5rem;
    color: white;
    display: block;
    margin-top: 0.5rem;
}

/* Content Text */
.mt-auto {
    margin-top: auto;
}

.z-index-1 {
    z-index: 1;
}

.overflow-hidden {
    overflow: hidden;
}

.fs-20 {
    font-size: 1.25rem;
}

.content-title {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.content-title-hover {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content-title-hover:hover {
    color: white;
}

.lh-24 {
    line-height: 24px;
}

.opacity-6 {
    opacity: 0.6;
}

.text-decoration-line-bottom {
    text-decoration: underline;
}

/* Arrow */
.content-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark, #333);
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
}

.interactive-banner-style-09:hover .content-arrow {
    opacity: 1;
    transform: translateX(0);
}

.lh-42px {
    line-height: 42px;
}

.rounded-circle {
    border-radius: 50%;
}

.bg-white {
    background: white;
}

.w-50px {
    width: 50px;
}

.h-50px {
    height: 50px;
}

.ms-20px {
    margin-left: 20px;
}

.text-center {
    text-align: center;
}

.text-dark-gray {
    color: #666;
}

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

/* Footer */
.fs-18 {
    font-size: 18px;
}

.me-10px {
    margin-right: 10px;
}

.md-m-5px {
    margin: 5px;
}

.align-middle {
    vertical-align: middle;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .outside-box-right-25 {
        margin-right: 0;
    }
    
    .interactive-banner-style-09 {
        height: 375px;
    }
}

@media (max-width: 992px) {
    .text-lg-start {
        text-align: center;
    }
    
    .justify-content-lg-end {
        justify-content: center;
    }
    
    .w-85 {
        width: 100%;
    }
    
    .interactive-banner-style-09 {
        height: 338px;
    }
}

@media (max-width: 768px) {
    .text-center {
        text-align: center;
    }
    
    .text-lg-start {
        text-align: center;
    }
    
    .justify-content-lg-end {
        justify-content: center;
    }
    
    .w-85 {
        width: 100%;
    }
    
    .interactive-banner-style-09 {
        height: 300px;
    }
    
    .image-content {
        padding: 1rem;
    }
    
    .fs-20 {
        font-size: 1.1rem;
    }
    
    .content-arrow {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .outside-box-right-25 {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .interactive-banner-style-09 {
        height: 263px;
    }
    
    .image-content {
        padding: 0.8rem;
    }
    
    .fs-20 {
        font-size: 1rem;
    }
    
    .content-title {
        font-size: 12px;
    }
    
    .fs-18 {
        font-size: 16px;
    }
}

/* .site-header styles are now consolidated in assets/css/style.css to avoid conflicts. */

/* Responsive Pagination Container */
@media (max-width: 1200px) {
    .slider-pagination-container {
        right: 15px;
    }
    
    .slider-pagination-container .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 992px) {
    .slider-pagination-container {
        right: 10px;
        gap: 10px;
    }
    
    .slider-pagination-container .swiper-pagination {
        gap: 10px;
    }
    
    .slider-pagination-container .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
    }
}

@media (max-width: 768px) {
    .slider-pagination-container {
        right: 8px;
        gap: 8px;
    }
    
    .slider-pagination-container .swiper-pagination {
        gap: 8px;
    }
    
    .slider-pagination-container .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .slider-pagination-container {
        right: 5px;
        gap: 6px;
    }
    
    .slider-pagination-container .swiper-pagination {
        gap: 6px;
    }
    
    .slider-pagination-container .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
    }
} 