/********** Template CSS **********/


:root {
--primary:#87CEEB;
--light: #F1F8FF;
--dark: #0F172B;
}

.fw-medium {
font-weight: 500 !important;
}

.fw-semi-bold {
font-weight: 600 !important;
}

.back-to-top {
position: fixed;
display: none;
right: 45px;
bottom: 45px;
z-index: 99;
}

/*** Spinner ***/
#spinner {
opacity: 0;
visibility: hidden;
transition: opacity .5s ease-out, visibility 0s linear .5s;
z-index: 99999;
}

#spinner.show {
transition: opacity .5s ease-out, visibility 0s linear 0s;
visibility: visible;
opacity: 1;
}

/*** Button ***/
.btn {
font-weight: 500;
text-transform: uppercase;
transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
color: #FFFFFF;
}

.btn-square {
width: 38px;
height: 38px;
}

.btn-sm-square {
width: 32px;
height: 32px;
}

.btn-lg-square {
width: 48px;
height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
padding: 0;
display: flex;
align-items: center;
justify-content: center;
font-weight: normal;
border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
margin-right: 30px;
padding: 25px 0;
color: #FFFFFF;
font-size: 15px;
text-transform: uppercase;
outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
color: var(--primary);
}

@media (max-width: 991.98px) {
.navbar-dark .navbar-nav .nav-link {
margin-right: 0;
padding: 10px 0;
}
}

/*** Header ***/
.carousel-caption {
top: 0;
left: 0;
right: 0;
bottom: 0;
background:rgba(0, 191, 255, 0.15);
z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
width: 3rem;
height: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 350px;
    overflow: hidden;
  }
  #header-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.page-header {
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}

.page-header-inner {
background: rgba(135, 206, 235, 0.35)
}

.breadcrumb-item + .breadcrumb-item::before {
color: var(--light);
}

.booking {
position: relative;
margin-top: -100px !important;
z-index: 1;
}

/*** Section Title ***/
.section-title {
position: relative;
display: inline-block;
}

.section-title::before {
position: absolute;
content: "";
width: 45px;
height: 2px;
top: 50%;
left: -55px;
margin-top: -1px;
background: var(--primary);
}

.section-title::after {
position: absolute;
content: "";
width: 45px;
height: 2px;
top: 50%;
right: -55px;
margin-top: -1px;
background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
display: none;
}

/*** Service ***/
.service-item {
height: 320px;
padding: 30px;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
background: #FFFFFF;
box-shadow: 0 0 45px rgba(0, 0, 0, .08);
transition: .5s;
}

.service-item:hover {
background: var(--primary);
}

.service-item .service-icon {
margin: 0 auto 30px auto;
width: 65px;
height: 65px;
transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
color: #FFFFFF !important;
}

/*** Youtube Video ***/
.video {
position: relative;
height: 100%;
min-height: 500px;
background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}

.video .btn-play {
position: absolute;
z-index: 3;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
box-sizing: content-box;
display: block;
width: 32px;
height: 44px;
border-radius: 50%;
border: none;
outline: none;
padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
content: "";
position: absolute;
z-index: 0;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 100px;
height: 100px;
background: var(--primary);
border-radius: 50%;
animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
content: "";
position: absolute;
z-index: 1;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 100px;
height: 100px;
background: var(--primary);
border-radius: 50%;
transition: all 200ms;
}

.video .btn-play img {
position: relative;
z-index: 3;
max-width: 100%;
width: auto;
height: auto;
}

.video .btn-play span {
display: block;
position: relative;
z-index: 3;
width: 0;
height: 0;
border-left: 32px solid var(--dark);
border-top: 22px solid transparent;
border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
0% {
transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
opacity: 1;
}

}

#videoModal {
z-index: 99999;
}

#videoModal .modal-dialog {
position: relative;
max-width: 800px;
margin: 60px auto 0 auto;
}

#videoModal .modal-body {
position: relative;
padding: 0px;
}

#videoModal .close {
position: absolute;
width: 30px;
height: 30px;
right: 0px;
top: -30px;
z-index: 999;
font-size: 30px;
font-weight: normal;
color: #FFFFFF;
background: #000000;
opacity: 1;
}

/*** Testimonial ***/
.testimonial {
background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../images/_MG_9842.jpg);
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}

.testimonial-carousel {
padding-left: 65px;
padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
padding: 30px;
}

.testimonial-carousel .owl-nav {
position: absolute;
width: 100%;
height: 40px;
top: calc(50% - 20px);
left: 0;
display: flex;
justify-content: space-between;
z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
position: relative;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
color: #FFFFFF;
background: var(--primary);
border-radius: 2px;
font-size: 18px;
transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
color: var(--primary);
background: #FFFFFF;
}

/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
transition: .5s;
}

.team-item:hover {
border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
color: var(--secondary) !important;
}

/*** Footer ***/
.newsletter {
position: relative;
z-index: 1;
}

.footer {
position: relative;
margin-top: -110px;
padding-top: 180px;
}

.footer .btn.btn-social {
margin-right: 5px;
width: 35px;
height: 35px;
display: flex;
align-items: center;
justify-content: center;
color: var(--light);
border: 1px solid #FFFFFF;
border-radius: 35px;
transition: .3s;
}

.footer .btn.btn-social:hover {
color: var(--primary);
}

.footer .btn.btn-link {
display: block;
margin-bottom: 5px;
padding: 0;
text-align: left;
color: #FFFFFF;
font-size: 15px;
font-weight: normal;
text-transform: capitalize;
transition: .3s;
}

.footer .btn.btn-link::before {
position: relative;
content: "\f105";
font-family: "Font Awesome 5 Free";
font-weight: 900;
margin-right: 10px;
}

.footer .btn.btn-link:hover {
letter-spacing: 1px;
box-shadow: none;
}

.footer .copyright {
padding: 25px 0;
font-size: 15px;
border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
color: var(--light);
}

.footer .footer-menu a {
margin-right: 15px;
padding-right: 15px;
border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
margin-right: 0;
padding-right: 0;
border-right: none;
}

/* Small Zigzag Border */
.small-zigzag-border {
    height: 20px;
    background: 
        linear-gradient(135deg, #87CEEB 25%, transparent 25%) -10px 0,
        linear-gradient(225deg, #87CEEB 25%, transparent 25%) -10px 0,
        linear-gradient(315deg, #87CEEB 25%, transparent 25%),
        linear-gradient(45deg, #87CEEB 25%, transparent 25%);
    background-size: 20px 20px;
    background-color: white;
    margin-bottom:0px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .small-zigzag-border {
        height: 15px;
        background-size: 15px 15px;
    }
}





/* Premium Photo Section Styling */
.z-index-2 {
    z-index: 2;
}

.tracking-wide {
    letter-spacing: 2px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin-bottom: 1rem;
}

.btn-premium {
    position: relative;
    background: linear-gradient(135deg, var(--primary), #5bb3e8);
    border: none;
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
    transition: all 0.4s ease;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(135, 206, 235, 0.4);
}

.btn-premium-outline {
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.btn-premium-outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(135, 206, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    background: rgba(135, 206, 235, 0.2);
    transform: scale(1.1);
}

.premium-image {
    transition: all 0.5s ease;
    filter: brightness(1.1) contrast(1.1) saturate(1.1);
}

.premium-image:hover {
    transform: scale(1.05);
}

.premium-badge {
    padding: 12px 20px;
    border-radius: 25px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    animation: premium-float 4s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.2);
}

.decorative-circle {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(135, 206, 235, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    opacity: 0.7;
}

.decorative-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 2px solid rgba(254, 161, 22, 0.3);
    border-radius: 50%;
    animation: rotate 15s linear infinite reverse;
}

@keyframes premium-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Enhanced section title */
.section-title {
    position: relative;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .premium-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .decorative-circle {
        width: 150px;
        height: 150px;
    }
    
    .decorative-circle::before {
        width: 100px;
        height: 100px;
    }
}

/* Scroll animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow {
    animation: fadeInUp 1s ease-out;
}



/* Modern Bunjako Beach Section */
.z-index-2 {
    z-index: 2;
}

.modern-title {
    letter-spacing: 2px;
    position: relative;
    font-size: 0.9rem;
}

.modern-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin-bottom: 1rem;
}

.modern-heading {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.modern-text {
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.modern-btn-primary {
    background: linear-gradient(135deg, var(--primary), #00bfff);
    border: none;
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.modern-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.modern-btn-primary:hover::before {
    left: 100%;
}

.modern-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(135, 206, 235, 0.4);
}

.modern-btn-secondary {
    background: linear-gradient(135deg, var(--secondary), #ffb84d);
    border: none;
    box-shadow: 0 8px 25px rgba(254, 161, 22, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.modern-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.modern-btn-secondary:hover::before {
    left: 100%;
}

.modern-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(254, 161, 22, 0.4);
}

.modern-feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.modern-feature-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.modern-image {
    transition: all 0.5s ease;
    filter: brightness(1.1) contrast(1.1) saturate(1.1);
}

.modern-image:hover {
    transform: scale(1.05);
}

.modern-badge {
    padding: 12px 18px;
    border-radius: 30px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    backdrop-filter: blur(15px);
    animation: modern-float 4s ease-in-out infinite;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.modern-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.modern-image-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-image:hover + .modern-image-overlay {
    opacity: 1;
}

.modern-circle-1 {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(135, 206, 235, 0.4);
    border-radius: 50%;
    animation: modern-rotate 15s linear infinite;
}

.modern-circle-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(254, 161, 22, 0.4);
    border-radius: 50%;
    animation: modern-rotate 10s linear infinite reverse;
}

@keyframes modern-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes modern-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive modern design */
@media (max-width: 768px) {
    .modern-heading {
        font-size: 1.8rem;
    }
    
    .modern-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
    
    .modern-circle-1 {
        width: 100px;
        height: 100px;
    }
    
    .modern-circle-2 {
        width: 70px;
        height: 70px;
    }
    
    .modern-feature-icon {
        width: 40px;
        height: 40px;
    }
}

/* Modern shadow and glow effects */
.row.shadow-lg {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

.rounded-3 {
    border-radius: 1rem !important;
}

/* Enhanced text effects */
.modern-heading span {
    transition: all 0.3s ease;
}

.modern-heading:hover span {
    text-shadow: 0 0 20px rgba(135, 206, 235, 0.5);
}


/* Unique Gallery Section - No Conflicts */
.bunjako-gallery-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

/* Different Sizes */
.bunjako-gallery-large {
    height: 500px;
}

.bunjako-gallery-medium {
    height: 500px;
}

.bunjako-gallery-small {
    height: 200px;
}

.bunjako-gallery-wide {
    height: 240px;
}

.bunjako-gallery-small-vertical {
    height: 240px;
}

/* Image Styling */
.bunjako-gallery-card img {
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.9);
}

.bunjako-gallery-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Overlay */
.bunjako-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(135, 206, 235, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.bunjako-gallery-card:hover .bunjako-gallery-overlay {
    opacity: 1;
}

/* Content Animation */
.bunjako-gallery-content {
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.bunjako-gallery-card:hover .bunjako-gallery-content {
    transform: translateY(0);
}

/* Icons */
.bunjako-gallery-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.bunjako-gallery-small .bunjako-gallery-icon,
.bunjako-gallery-small-vertical .bunjako-gallery-icon {
    width: 60px;
    height: 60px;
}

/* Badge for Featured */
.bunjako-gallery-badge {
    background: linear-gradient(135deg, var(--primary), #00bfff);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

/* Hover Effects */
.bunjako-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Staggered Animation */
.bunjako-gallery-card {
    animation: bunjakoFadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.bunjako-gallery-card:nth-child(1) { animation-delay: 0.1s; }
.bunjako-gallery-card:nth-child(2) { animation-delay: 0.2s; }
.bunjako-gallery-card:nth-child(3) { animation-delay: 0.3s; }
.bunjako-gallery-card:nth-child(4) { animation-delay: 0.4s; }
.bunjako-gallery-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes bunjakoFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Section Title */
.bunjako-section-title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
}

.bunjako-section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #FEA116;
}

/* Responsive Design */
@media (max-width: 992px) {
    .bunjako-gallery-large {
        height: 400px;
        margin-bottom: 2rem;
    }
    
    .bunjako-gallery-medium {
        height: 350px;
    }
    
    .bunjako-gallery-small {
        height: 180px;
    }
    
    .bunjako-gallery-wide {
        height: 220px;
    }
    
    .bunjako-gallery-small-vertical {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .bunjako-gallery-large {
        height: 300px;
    }
    
    .bunjako-gallery-medium {
        height: 250px;
        margin-bottom: 1rem;
    }
    
    .bunjako-gallery-small,
    .bunjako-gallery-wide,
    .bunjako-gallery-small-vertical {
        height: 200px;
        margin-bottom: 1rem;
    }
    
    .bunjako-gallery-content h2 {
        font-size: 1.5rem;
    }
    
    .bunjako-gallery-content h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .bunjako-gallery-large {
        height: 250px;
    }
    
    .bunjako-gallery-medium,
    .bunjako-gallery-small,
    .bunjako-gallery-wide,
    .bunjako-gallery-small-vertical {
        height: 180px;
    }
    
    .bunjako-gallery-icon {
        width: 60px;
        height: 60px;
    }
    
    .gallery-small .bunjako-gallery-icon,
    .bunjako-gallery-small-vertical .bunjako-gallery-icon {
        width: 50px;
        height: 50px;
    }
}

/* Subtle Animation */
.bunjako-gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.bunjako-gallery-card:hover::before {
    opacity: 1;
}

/* Gallery Button Styles */
.bunjako-btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: rgb(187, 223, 244);
    font-weight: 600;
    transition: all 0.3s ease;
}

.bunjako-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}






/* ====== Layout ====== */
.attractions-section {
  position: relative;
  overflow: visible;
}

.bg-content {
  position: relative;
  background: url('../images/_MG_9865backgroundabout.jpg') center/cover no-repeat;
  padding: 80px 20px 140px;
  text-align: center;
  color: rgb(13, 17, 22);
  min-height: 300px;
  
}

.text-overlay {
  max-width: 700px;
  margin: 0 auto;
}

.text-overlay h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.text-overlay p {
  font-size: 1rem;
  line-height: 1.6;
}

/* ====== Carousel Wrapper ====== */
.carousel-wrapper {
  position: absolute;
  bottom: -110px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  overflow: hidden;
  padding: 0 50px;
  box-sizing: border-box;
}

/* ====== Track Content (Animated) ====== */
.image-track {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.track-content {
  display: flex;
  gap: 20px;
  animation: scroll-left 30s linear infinite;
}

.track-content img {
  height: 200px;
  width: 250px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.track-content img:hover {
  transform: scale(1.05);
}

/* ====== Keyframes ====== */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ====== Arrow Buttons ====== */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 2rem;
  color: rgb(30, 188, 250);
  z-index: 2;
  cursor: pointer;
  transition: color 0.3s;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.arrow:hover {
  color: #007BFF;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .text-overlay h2 {
    font-size: 2rem;
  }

  .text-overlay p {
    font-size: 0.9rem;
  }

  .carousel-wrapper {
    bottom: -90px;
    padding: 0 20px;
  }

  .track-content img {
    width: 180px;
    height: 150px;
  }
}





/* Carousel Fade */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 0.8s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev {
    transform: none;
}

.water-wave-border {
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
}

.wave {
    animation: wave-movement 4s ease-in-out infinite;
}

@keyframes wave-movement {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-25px);
    }
}



/* Nightlife Rectangle with Semi-circles */
.nightlife-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    height: 200px;
}

.semi-circle {
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.left-circle {
    border-radius: 200px 0 0 200px;
    border-right: none;
}

.right-circle {
    border-radius: 0 200px 200px 0;
    border-left: none;
}

.center-rectangle {
    width: 400px;
    height: 200px;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-left: none;
    border-right: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.circle-image,
.rectangle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.circle-overlay,
.rectangle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 26, 46, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.semi-circle:hover .circle-overlay,
.center-rectangle:hover .rectangle-overlay {
    opacity: 1;
}

.semi-circle:hover .circle-image,
.center-rectangle:hover .rectangle-image {
    transform: scale(1.1);
}

.circle-content,
.rectangle-content {
    text-align: center;
    padding: 15px;
}

.circle-content h6 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.circle-content p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.rectangle-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.rectangle-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Hover effects */
.semi-circle:hover,
.center-rectangle:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.left-circle:hover {
    border-color: rgba(255, 193, 7, 0.6);
}

.center-rectangle:hover {
    border-color: rgba(135, 206, 235, 0.6);
}

.right-circle:hover {
    border-color: rgba(23, 162, 184, 0.6);
}

/* Responsive design */
@media (max-width: 768px) {
    .nightlife-container {
        flex-direction: column;
        height: auto;
        gap: 0;
    }
    
    .semi-circle {
        width: 300px;
        height: 150px;
        border-radius: 0;
        border: 3px solid rgba(255, 255, 255, 0.2);
    }
    
    .left-circle {
        border-radius: 150px 150px 0 0;
        border-bottom: none;
    }
    
    .right-circle {
        border-radius: 0 0 150px 150px;
        border-top: none;
    }
    
    .center-rectangle {
        width: 300px;
        height: 150px;
        border: 3px solid rgba(255, 255, 255, 0.2);
        border-top: none;
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .semi-circle,
    .center-rectangle {
        width: 250px;
        height: 120px;
    }
    
    .left-circle {
        border-radius: 120px 120px 0 0;
    }
    
    .right-circle {
        border-radius: 0 0 120px 120px;
    }
    
    .circle-content,
    .rectangle-content {
        padding: 10px;
    }
    
    .rectangle-content h4 {
        font-size: 1rem;
    }
    
    .rectangle-content p {
        font-size: 0.8rem;
    }
}


/* Protruding Image Effect */
.protruding-image-container {
    position: relative;
    z-index: 10;
    margin-bottom: 30px;
}

.protruding-image {
    border: 5px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateX(50px);
    transition: all 0.3s ease;
}

.protruding-image:hover {
    transform: translateX(60px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.background-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.background-img-1 {
    position: absolute;
    top: 50px;
    left: -30px;
    opacity: 0.8;
    border: 3px solid #fff;
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.background-img-2 {
    position: absolute;
    bottom: 50px;
    right: -20px;
    opacity: 0.8;
    border: 3px solid #fff;
    transform: rotate(5deg);
    transition: all 0.3s ease;
}

.background-img-3 {
    position: absolute;
    top: 20px;
    right: -40px;
    opacity: 0.7;
    border: 3px solid #fff;
    transform: rotate(10deg);
    transition: all 0.3s ease;
}

.background-img-4 {
    position: absolute;
    bottom: 20px;
    left: -20px;
    opacity: 0.7;
    border: 3px solid #fff;
    transform: rotate(-10deg);
    transition: all 0.3s ease;
}

.background-img-5 {
    position: absolute;
    top: 150px;
    left: -50px;
    opacity: 0.6;
    border: 3px solid #fff;
    transform: rotate(15deg);
    transition: all 0.3s ease;
}

.background-img-1:hover,
.background-img-2:hover,
.background-img-3:hover,
.background-img-4:hover,
.background-img-5:hover {
    opacity: 1;
    transform: rotate(0deg) scale(1.05);
}

.about-content-container {
    padding-left: 30px;
    position: relative;
    z-index: 8;
}

/* Decorative elements */
.protruding-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.protruding-image-container::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

/* Additional decorative circles */
.protruding-image-container::before {
    content: '';
    position: absolute;
    top: 100px;
    right: 50px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), rgba(135, 206, 235, 0.3));
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .protruding-image {
        transform: translateX(0);
    }
    
    .protruding-image:hover {
        transform: translateX(0) scale(1.02);
    }
    
    .about-content-container {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .background-img-1 {
        left: 10px;
        top: 30px;
    }
    
    .background-img-2 {
        right: 10px;
        bottom: 30px;
    }
    
    .background-img-3 {
        right: 5px;
        top: 10px;
    }
    
    .background-img-4 {
        left: 5px;
        bottom: 10px;
    }
    
    .background-img-5 {
        left: -10px;
        top: 120px;
    }
}

@media (max-width: 768px) {
    .background-img-1,
    .background-img-2,
    .background-img-3,
    .background-img-4,
    .background-img-5 {
        display: none;
    }
    
    .protruding-image-container {
        margin-bottom: 20px;
    }
}


/* Additional Image Section Styles */
.image-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(135, 206, 235, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-overlay:hover {
    opacity: 1;
}

.image-overlay .btn {
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.image-overlay:hover .btn {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-overlay {
        height: 200px !important;
    }
    
    .image-overlay h4 {
        font-size: 1.1rem;
    }
    
    .image-overlay p {
        font-size: 0.9rem;
    }
}
