﻿.features-section {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #64748b;
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-image {
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .5s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.08);
}

.feature-content {
    padding: 30px;
    text-align: center;
}

.feature-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.feature-content p {
    color: #64748b;
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

@media(max-width:768px) {
    .section-title {
        font-size: 32px;
    }

    .feature-image img {
        height: 220px;
    }
}

.about-section{
    background:#f8fafc;
}

.section-tag{
    display:inline-block;
    background:#e8fff1;
    color:#0f766e;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.about-heading{
    font-size:42px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:20px;
    line-height:1.3;
}

.about-description{
    color:#64748b;
    line-height:1.9;
    margin-bottom:30px;
}

.about-gallery{
    position:relative;
}

.big-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.small-images{
    display:flex;
    gap:15px;
    margin-top:15px;
}

.small-images img{
    width:50%;
    height:180px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.experience-badge{
    position:absolute;
    top:25px;
    right:-20px;
    background:#16a34a;
    color:#fff;
    padding:20px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(22,163,74,.3);
}

.experience-badge h2{
    margin:0;
    font-size:40px;
    font-weight:700;
}

.features-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.feature-item{
    background:#fff;
    padding:15px;
    border-radius:15px;
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.06);
    transition:.3s;
}

.feature-item:hover{
    transform:translateY(-5px);
}

.feature-item i{
    width:45px;
    height:45px;
    background:#16a34a;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.btn-about{
    display:inline-block;
    margin-top:30px;
    background:#16a34a;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-about:hover{
    background:#15803d;
    color:#fff;
    transform:translateY(-3px);
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #16a34a;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all .3s ease;
}

#scrollTopBtn:hover {
    background: #15803d;
    transform: translateY(-5px);
    color: #fff;
}

.slide {
    position: relative;
    min-height: 700px;
}

.background_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.home_container {
    position: relative;
    z-index: 2;
    padding-top: 180px;
}

.booking_box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;

    padding: 35px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.home_title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.booking_input {
    height: 55px;
    border-radius: 10px;
    border: none;
}

.booking_button {
        width: 100px;
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 10px;
    background: #D4AF37;
    color: #000;
    font-weight: 700;
    transition: .3s;
}

.booking_button:hover {
    background: #c49b1d;
}

.popup-overlay{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.7);
    z-index:9999;
}

.popup-content{
    width:100%;
    max-width:988px;
    background:#fff;
    margin:5% auto;
    padding:40px;
    border-radius:10px;
    position:relative;
}

.close-btn{
    position:absolute;
    top:10px;
    right:15px;
    font-size:30px;
    cursor:pointer;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
body{
    margin:0;
    font-family:'Poppins',sans-serif;
}

/* TOP BAR */

.top_bar{
    background:linear-gradient(90deg,#8d2c00,#ff6a00);
    padding:12px 0;
}

.top_bar_content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top_left a,
.top_right a{
    color:#fff;
    text-decoration:none;
    margin-right:20px;
    font-size:16px;
}

.top_right a{
    margin-left:15px;
}

/* HEADER */

.main_header{
   
    margin-top:-5px;
}

.header_box{
       position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #041F1A, #0B3D2E, #157A5C, #0F5C46, #06352B);



    
    min-height:50px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:8px 40px;
}

/* LOGO */

.logo_section{
    display:flex;
    align-items:center;
}

.logo_section img{
    height:60px;
    margin-right:10px;
}

.logo_text h2{
    margin:0;
    color:#fff;
    font-size:24px;
    font-weight:700;
}

.logo_text span{
    color:#ddd;
    font-size:13px;
    letter-spacing:3px;
}

/* MENU */

.main_nav ul{
    display:flex;
    margin:0;
    padding:0;
    list-style:none;
}

.main_nav ul li{
    margin:0 18px;
}

.main_nav ul li a{
    color:#fff;
    text-decoration:none;
    font-size:12px;
    font-weight:600;
}

.main_nav ul li.active a{
    background:#1e88ff;
    padding:14px 30px;
    border-radius:30px;
}

/* BUTTONS */

.header_btns{
    display:flex;
    align-items:center;
}

.brochure_btn{
    border:1px solid #5f78ff;
    color:#2e7cff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:40px;
    margin-right:15px;
    font-weight:600;
}

.book_btn{
    background:linear-gradient(135deg,#0a8dff,#3ba8ff);
    color:#fff;
    text-decoration:none;
    padding:16px 35px;
    border-radius:40px;
    font-weight:700;
    box-shadow:0 0 20px rgba(0,123,255,.4);
}

/* MOBILE */

.hamburger{
    display:none;
    color:#fff;
    font-size:30px;
    margin-left:20px;
    cursor:pointer;
}

.mobile_menu{
    position:fixed;
    top:0;
    right:-320px;
    width:300px;
    height:100%;
    background:#0f766e;
    z-index:9999;
    transition:.4s;
    padding:30px;
}

.mobile_menu.active{
    right:0;
}

.mobile_menu ul{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.mobile_menu ul li{
    margin-bottom:20px;
}

.mobile_menu ul li a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
}

.close_menu{
    color:#fff;
    text-align:right;
    font-size:25px;
    cursor:pointer;
}

@media(max-width:991px){

    .main_nav,
    .brochure_btn,
    .book_btn{
        display:none;
    }

    .hamburger{
        display:block;
    }

    .logo_section img{
        height:70px;
    }

    .logo_text h2{
        font-size:20px;
    }

    .logo_text span{
        font-size:11px;
    }

    .header_box{
        padding:15px 20px;
    }
}
.popup-overlay {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: rgba(0,0,0,0.75);
}

.booking-card {
    background: #fff;
    width: 90%;
    max-width: 850px;
    margin: 40px auto;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

.booking-header {
    text-align: center;
    margin-bottom: 25px;
}

.booking-header h2 {
    color: #0f766e;
    font-weight: 700;
    margin-bottom: 5px;
}

.booking-header p {
    color: #666;
    margin-bottom: 10px;
}

.booking-header h4 {
    color: #333;
    font-weight: 600;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #555;
}

.form-control {
    width: 100%;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 15px;
}

textarea.form-control {
    height: auto;
}

label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #333;
}

.book-btn {
    width: 100%;
    background: linear-gradient(135deg,#0f766e,#14b8a6);
    color: #fff;
    border: 0;
    height: 55px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.book-btn:hover {
    transform: translateY(-2px);
}

.top_bar {
    background: #0f766e;
    padding: 10px 0;
}

.top_bar_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top_contact {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top_contact a,
.top_contact span {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
}

.top_contact i {
    color: #ffcc00;
   
}

.top_action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social_icons {
    display: flex;
    gap: 10px;
}

.social_icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.social_icons a:hover {
    background: #ffcc00;
    color: #000;
}

.book_btn {
    background: #ffcc00;
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.book_btn:hover {
    background: #fff;
    color: #0f766e;
}

.book_btn i {
    margin-right: 5px;
}

@media(max-width:991px)
{
    .top_bar_content{
        flex-direction:column;
        gap:10px;
    }

    .top_contact{
        flex-wrap:wrap;
        justify-content:center;
    }

    .top_action{
        flex-wrap:wrap;
        justify-content:center;
    }
}


.book_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffcc00;
    color: #000 !important;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: all .3s ease;
}

.book_btn:hover {
    background: #fff;
    color: #0f766e !important;
}

.book_btn i {
    margin-right: 8px;
}

@media(max-width:991px)
{
    .top_bar_content{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:10px;
    }

    .top_contact{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    .top_action{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:10px;
        flex-wrap:wrap;
    }

    .book_btn{
        display:inline-flex !important;
    }
}

.mobile_book_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

   background: linear-gradient(135deg, #4CAF50, #A5D6A7);
    color: #000 !important;

        padding: 4px 25px;
    border-radius: 50px;

    font-size: 16px;
    font-weight: 700;
    text-decoration: none;

    box-shadow: 0 8px 25px rgba(244, 180, 0, 0.4);
    transition: all 0.3s ease;

    position: relative;
    overflow: hidden;
}

.mobile_book_btn i {
    font-size: 18px;
}

.mobile_book_btn:hover {
    transform: translateY(-3px);
    color: #000 !important;
    box-shadow: 0 12px 30px rgba(244, 180, 0, 0.6);
}

.mobile_book_btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-25deg);
    transition: 0.8s;
}

.mobile_book_btn:hover:before {
    left: 120%;
}

@media(max-width:768px)
{
    .mobile_book_btn {
        /*position: fixed;*/
        bottom: 5px;
        left: 15px;
        right: 15px;
        z-index: 9999;
    }
}


