﻿

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Background */
.menu_btn {
    display: none;
}

.hero_bg {
    position: absolute;
    inset: 0;
    background: url('../img/ganga_flow_view.png') center center/cover no-repeat;
    /*background:url('../img/droneview.jpeg') center center/cover no-repeat;*/
    z-index: 1;
}

    .hero_bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.20);
    }

.follow_text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
/* Social Sidebar */
.top_action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.social_sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

    .social_sidebar a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        background: rgba(255,255,255,0.15);
        color: #fff;
        border: 1px solid rgba(255,255,255,.25);
        transition: .3s ease;
        font-size: 10px;
    }

        .social_sidebar a:hover {
            background: #d4af37;
            color: #fff;
            transform: translateY(-3px);
        }



@media (max-width: 768px) {

    .top_action {
        display: flex;
        flex-direction: row; /* Keep horizontal */
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .social_sidebar {
        display: flex;
        flex-direction: row; /* Horizontal */
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap; /* Don't stack */
        gap: 8px;
        width: auto;
        margin: 0 auto;
    }

        .social_sidebar a {
            width: 34px;
            height: 34px;
            font-size: 16px;
        }

    .mobile_book_btn {
        width: auto;
        font-size: 14px;
        padding: 8px 14px;
    }

    .menu_btn {
        top: 1px;
        right: 0px;
        width: 40px;
        height: 40px;
        background: #004d40;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 22px;
        z-index: 20;
        cursor: pointer;
    }
}

/* Menu Button */

/*.menu_btn {
    
    top: 1px;
    right: -174px;
    width: 40px;
    height: 40px;
    background: #004d40;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    z-index: 20;
    cursor: pointer;
}*/

/* Center Content */

.hero_content {
    position: relative;
    z-index: 10;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Logo Card */

.logo_card {
    width: 550px;
    max-width: 100%;
    /*background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);*/
    border-radius: 35px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .logo_card img {
        width: 120px;
        margin-bottom: 10px;
    }

.logo_text h2 {
    color: #fff;
    font-size: 58px;
    font-family: Georgia, serif;
    line-height: 1.2;
}

.logo_text span {
    color: #ddd;
    font-size: 13px;
    letter-spacing: 3px;
}

/* Dots */

.slider_dots {
    display: flex;
    gap: 15px;
    margin: 6px 0;
}

    .slider_dots span {
        width: 45px;
        height: 4px;
        background: #fff;
        border-radius: 20px;
        opacity: .5;
    }

    .slider_dots .active {
        opacity: 1;
        background: #00796b;
    }

/* Tagline */

.hero_content h3 {
    color: aliceblue;
    font-size: 48px;
    font-style: italic;
    font-family: Georgia, serif;
    margin-bottom: 20px;
}

.hero_content p {
    color: aliceblue;
    font-size: 14px;
    letter-spacing: 6px;
    font-weight: 700;
}

/* Mobile */

@media(max-width:768px) {

    .social_sidebar {
        width: 60px;
        left: 8px;
    }

        .social_sidebar a {
            width: 42px;
            height: 42px;
            font-size: 18px;
        }

    .menu_btn {
        font-size: 24px;
    }



    .logo_card img {
        width: 210px;
    }

    .logo_text h2 {
        font-size: 34px;
    }

    .hero_content h3 {
        font-size: 16px;
    }

    .hero_content p {
        font-size: 14px;
        letter-spacing: 3px;
    }
}

.mobile_menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #005c4b;
    transition: .4s;
    z-index: 99999;
    padding: 10px 30px;
}

    .mobile_menu.active {
        right: 0;
    }

    .mobile_menu ul {
        list-style: none;
    }

        .mobile_menu ul li {
            margin-bottom: 5px;
        }

            .mobile_menu ul li a {
                color: #fff;
                text-decoration: none;
                font-size: 18px;
                display: block;
                padding: 12px;
            }

.close_menu {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.social_sidebar a {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
    transition: .3s;
}

    .social_sidebar a:hover {
        transform: translateY(-4px);
    }

/* Brand Colors */

.social_sidebar .fa-facebook {
    color: #1877F2;
}

.social_sidebar .fa-instagram {
    color: #E4405F;
}

.social_sidebar .fa-youtube-play {
    color: #FF0000;
}

.social_sidebar .fa-twitter {
    color: #1DA1F2;
}

.social_sidebar .fa-linkedin {
    color: #0A66C2;
}

.social_sidebar .fa-whatsapp {
    color: #25D366;
    font-size: 22px;
}

.social_sidebar a:hover .fa-whatsapp {
    color: #128C7E;
    transform: scale(1.1);
}

.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*new for specail packes*/
/* ==========================
   OFFER BANNER
========================== */

.offer-banner {
    background: linear-gradient( 135deg, #005f4b, #008060, #00a884);
    border-radius: 20px;
    padding: 18px 25px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}

    .offer-banner:hover {
        transform: translateY(-3px);
    }

.offer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.offer-badge {
    background: #ffc107;
    color: #333;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 15px;
    border-radius: 10px;
}

.offer-content-top h3 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.offer-content-top p {
    margin: 4px 0 0;
    color: rgba(255,255,255,.9);
    font-size: 15px;
}

.offer-arrow {
    color: #ffc107;
    font-size: 32px;
    transition: .4s;
}

    .offer-arrow.rotate {
        transform: rotate(180deg);
    }

/* ==========================
   OFFER POPUP SECTION
========================== */

.offer-popup {
    display: none;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    animation: slideDown .4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================
   HEADER
========================== */

.offer-header {
    position: relative;
    overflow: hidden;
    padding: 25px 30px;
    text-align: center;
    color: #fff;
    background: linear-gradient( 135deg, #004d40, #00796b, #00a884);
}

.header-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}

.shape1 {
    width: 250px;
    height: 250px;
    top: -120px;
    right: -80px;
}

.shape2 {
    width: 180px;
    height: 180px;
    bottom: -80px;
    left: -50px;
}

.close-btn {
    position: absolute;
    top: 20px;
    width: 8px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    color: black;
    cursor: pointer;
    font-size: 20px;
    transition: .3s;
}

    .close-btn:hover {
        background: #fff;
        color: #008060;
    }

.offer-label {
    display: inline-block;
    background: #ffc107;
    color: #333;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.offer-icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 25px;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.offer-header h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.offer-header p {
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
    font-size: 18px;
}

.offer-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

    .offer-benefits span {
        background: rgba(255,255,255,.15);
        padding: 10px 18px;
        border-radius: 30px;
    }

/* ==========================
   OFFER BODY
========================== */

.offer-body {
    padding: 30px;
}

.offer-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #dff3ec;
    border-radius: 25px;
    padding: 25px;
    margin-bottom: 20px;
    transition: .3s;
}

    .offer-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

    .offer-card .offer-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

.offer-img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #e7f8f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.offer-content h3 {
    margin: 0 0 8px;
    color: #004d40;
    font-size: 30px;
}

.offer-content p {
    margin: 0;
    color: #008060;
    font-size: 18px;
}

.badge {
    background: #ffc107;
    color: #333;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px) {

    .offer-banner {
        padding: 15px;
    }

    .offer-content-top h3 {
        font-size: 18px;
    }

    .offer-content-top p {
        font-size: 13px;
    }

    .offer-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .offer-content h3 {
        font-size: 22px;
    }

    .offer-content p {
        font-size: 15px;
    }

    .offer-header h2 {
        font-size: 32px;
    }

    .offer-benefits {
        gap: 8px;
    }

        .offer-benefits span {
            font-size: 12px;
        }

    .badge {
        align-self: flex-end;
    }
}

.offer-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.book-now-btn {
    background: linear-gradient( 135deg, #00695c, #00a884 );
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
    box-shadow: 0 6px 15px rgba(255,152,0,.3);
}

    .book-now-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(255,152,0,.4);
    }

    .book-now-btn::before {
        content: "🛎️ ";
    }



/* Desktop */
.main_nav {
    display: block;
}

.hamburger {
    display: none;
}

/* Mobile */
@media (max-width: 991px) {

    .main_header {
        display: none !important;
    }

    .header_box {
        display: none !important;
    }

    .main_nav {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        cursor: pointer;
    }

    .header_box {
        justify-content: space-between;
    }
}

.header_marquee {
    width: 47%;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    overflow: hidden;
}

    .header_marquee marquee {
        width: 100%;
    }


.logo_text {
    line-height: 1;
}

    .logo_text h2 {
        margin: 0;
        color: #fff;
        font-size: 24px;
        font-weight: 700;
    }

    .logo_text .satya {
        color: #56f804; /* Sunrise Orange */
        font-size: 50px;
    }



    .logo_text .amritam {
        font-size: 48px;
        background-color: aquamarine;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .logo_text .tagline {
        display: block;
        margin-top: 6px;
        font-size: 11px;
        letter-spacing: 3px;
        color: #ffffff;
        font-weight: 600;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    }


.satya {
    color: #0c4a6e;
    text-shadow: 0 2px 10px rgba(14,165,233,.3);
}

.amritam {
    color: #15803d;
    text-shadow: 0 2px 10px rgba(34,197,94,.3);
}


.hero_section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bg_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero_content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
}

.hero_section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 0;
}


.video-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    gap: 30px;
}

.video-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: .4s;
}

    .video-card:hover {
        transform: translateY(-8px);
    }

    .video-card iframe {
        width: 100%;
        height: 250px;
        border: none;
    }

    .video-card h4 {
        margin: 15px 20px 5px;
        color: #14532d;
    }

    .video-card span {
        margin: 0 20px 20px;
        display: block;
        color: #666;
    }



/* Offer Banner */
.offer-banner {
    width: 80%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Offer Popup */
.offer-popup {
    width: 80%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Tablet */
@media (max-width:992px) {

    .offer-banner,
    .offer-popup {
        width: 90%;
    }
}

/* Mobile */
@media (max-width:768px) {

    .offer-banner,
    .offer-popup {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .offer-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
    }

    .offer-left {
        width: 100%;
    }

    .offer-actions {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .book-now-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .offer-content h3 {
        font-size: 18px;
    }

    .offer-content p {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width:480px) {

    .offer-banner {
        padding: 12px;
    }

    .offer-card {
        padding: 12px;
    }

    .offer-actions {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .book-now-btn {
        width: 100%;
        text-align: center;
    }

    .badge {
        align-self: flex-start;
    }
}




/* SATYA */
.title-top {
    margin: 0;
    font-family: 'Great Vibes', cursive;
    font-size: 65px;
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: 2px;
    background: linear-gradient( to bottom, #fff9d6 0%, #ffe88d 20%, #f4ca54 45%, #b57a08 70%, #fff0a5 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 3px rgba(0,0,0,.35), 0 5px 15px rgba(0,0,0,.25);
}

/* GANGA AMRITAM */
.title-bottom {
    margin: 0;
    margin-top: -5px;
    font-family: 'Cinzel', serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient( to bottom, #ffffff, #fff3cf, #f6d57c, #c58d12 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 3px rgba(0,0,0,.35), 0 8px 20px rgba(0,0,0,.30);
    letter-spacing: 3px;
}

.title-bottom_other {
    margin: 0;
    margin-top: -5px;
    font-family: 'Cinzel', serif;
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient( to bottom, #ffffff, #fff3cf, #f6d57c, #c58d12 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 3px rgba(0,0,0,.35), 0 8px 20px rgba(0,0,0,.30);
    letter-spacing: 3px;
}
/* Subtitle */
.hero-subtitle {
    margin-top: 18px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 3px 8px rgba(0,0,0,.5);
}

/* ===========================
        Tablet
=========================== */

@media(max-width:992px) {

    .title-top {
        font-size: 65px;
    }

    .title-bottom {
        font-size: 55px;
        letter-spacing: 2px;
    }

    .title-bottom_other {
        font-size: 55px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 4px;
    }
}

/* ===========================
        Mobile
=========================== */

@media(max-width:768px) {

    .hero-title {
        padding: 5px 15px;
    }

    .title-top {
        font-size: 48px;
        line-height: 1;
    }

    .title-bottom {
        font-size: 34px;
        line-height: 1.1;
        letter-spacing: 1px;
    }

    .title-bottom_other {
        font-size: 34px;
        line-height: 1.1;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
        margin-top: 12px;
    }
}

/* Small Mobile */

@media(max-width:480px) {

    .title-top {
        font-size: 40px;
    }

    .title-bottom {
        font-size: 28px;
    }

    .title-bottom_other {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 9px;
        letter-spacing: 2px;
    }
}



.room-slider-section {
    padding: 70px 0;
    background: #f8f8f8;
}

.roomSlider {
    width: 100%;
    overflow: hidden;
}

    .roomSlider .swiper-slide {
        height: auto;
        display: flex;
        justify-content: center;
    }

.package-card {
    width: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

    .package-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0,0,0,.18);
    }

.package-image {
    overflow: hidden;
}

    .package-image img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: .6s;
    }

.package-card:hover img {
    transform: scale(1.08);
}


.room-slider-section {
    padding: 26px 0;
    background: linear-gradient(135deg,#f8faf8,#eef8ef);
}

.roomSlider {
    overflow: hidden;
    padding: 10px;
}

    .roomSlider .swiper-slide {
        height: auto;
    }

/* Smaller Card */
.package-card {
    width: 100%;
    max-width: 320px;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

    .package-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.18);
    }

.package-image {
    overflow: hidden;
}

    .package-image img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: .5s;
    }

.package-card:hover img {
    transform: scale(1.08);
}

.package-details {
    max-height: 0;
    overflow: hidden;
    transition: .5s ease;
}

.package-card.active .package-details {
    max-height: 500px;
    margin-top: 15px;
}

.details-btn {
    width: 100%;
    margin-top: 15px;
    border: none;
    background: #0c7a5b;
    color: #fff;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    .details-btn i {
        transition: .4s;
    }

.package-card.active .details-btn i {
    transform: rotate(180deg);
}


/* Compact Package Card */
.family-package-section .package-card {
    max-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

/* Smaller Image */
.family-package-section .package-image img {
    width: 100%;
    height: 170px; /* Before 250-300px */
    object-fit: cover;
}

/* Small Badge */
.family-package-section .package-badge {
    font-size: 11px;
    padding: 5px 10px;
}

/* Header */
.family-package-section .package-header {
    padding: 15px 12px 10px;
    text-align: center;
}

/* Icon */
.family-package-section .package-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
    margin-bottom: 8px;
}

/* Package Title */
.family-package-section .package-header h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

/* Description */
.family-package-section .package-header p {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

/* Body */
.family-package-section .package-body {
    padding: 15px;
}

/* Price */
.package-price {
    margin-bottom: 12px;
}

    .package-price .currency {
        font-size: 18px;
    }

    .package-price .amount {
        font-size: 28px;
        font-weight: 700;
    }

    .package-price .night {
        font-size: 13px;
    }

/* View Details Button */
.details-btn {
    padding: 9px 15px;
    font-size: 13px;
}

/* Feature List */
.package-features {
    margin-top: 12px;
}

    .package-features li {
        font-size: 13px;
        padding: 5px 0;
    }

/* Book Button */
.package-btn {
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 12px;
}



.activitySlider {
    padding: 15px 5px;
}

.activity-card {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 20px 15px;
    height: 220px;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    transition: .35s;
}

    .activity-card:hover {
        transform: translateY(-6px);
    }

.activity-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg,#1b5e20,#2e7d32,#4caf50);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 3px solid #e8f5e9;
    box-shadow: 0 10px 25px rgba(46,125,50,.35);
    transition: .4s;
}

.activity-card:hover .activity-icon {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg,#388e3c,#66bb6a,#81c784);
}

.activity-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.activity-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}







/*==========================
 Destination Wedding
==========================*/

.destination-wedding-section {
    padding: 90px 0;
    background: #fafaf7;
}

/* Heading */

.gallery-tag {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins',sans-serif;
}

.gallery-title {
    font-family: 'Cinzel',serif;
    font-size: 48px;
    color: #16351d;
    margin-top: 20px;
    font-weight: 700;
}

.gallery-subtitle {
    max-width: 750px;
    margin: 20px auto 0;
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    font-family: 'Poppins',sans-serif;
}

/* Layout */

.room-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start; /* Image starts from top */
}

/* Images */
.room-gallery {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: flex-start;
}

.main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.thumbs {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

    .thumbs img {
        width: 48%;
        height: 170px;
        object-fit: cover;
        border-radius: 15px;
        transition: .4s;
    }

        .thumbs img:hover {
            transform: scale(1.05);
        }

/* Details */

.tag {
    display: inline-block;
    background: #2e7d32;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: 'Poppins',sans-serif;
}

.room-details h3 {
    font-family: 'Cinzel',serif;
    font-size: 42px;
    color: #173b22;
    margin: 20px 0;
}

.room-details p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    font-family: 'Poppins',sans-serif;
}

/* Highlights */

.wedding-highlights {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin: 30px 0;
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .35s;
}

    .highlight-box:hover {
        transform: translateY(-5px);
    }

    /* Green Icons */

    .highlight-box i {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg,#1b5e20,#43a047,#81c784);
        color: #fff;
        font-size: 22px;
        box-shadow: 0 8px 20px rgba(46,125,50,.35);
    }

    .highlight-box span {
        font-family: 'Poppins',sans-serif;
        font-size: 15px;
        font-weight: 600;
        color: #333;
    }

/* Feature List */

.room-details ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

    .room-details ul li {
        margin-bottom: 14px;
        font-size: 16px;
        font-family: 'Poppins',sans-serif;
    }

        .room-details ul li i {
            color: #2e7d32;
            margin-right: 10px;
            font-size: 18px;
        }

/* Price */

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    flex-wrap: wrap;
}

    .price-row h4 {
        color: #2e7d32;
        font-size: 34px;
        font-family: 'Cinzel',serif;
    }

    .price-row span {
        color: #777;
        font-family: 'Poppins',sans-serif;
    }

/* Button */

.btn-book {
    background: linear-gradient(135deg,#2e7d32,#43a047);
    color: #fff;
    padding: 15px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
    transition: .4s;
}

    .btn-book:hover {
        background: linear-gradient(135deg,#1b5e20,#2e7d32);
        transform: translateY(-3px);
        color: #fff;
    }

/* Responsive */

@media(max-width:991px) {

    .room-layout {
        grid-template-columns: 1fr;
    }

    .main-img {
        height: 350px;
    }

    .gallery-title {
        font-size: 34px;
    }

    .room-details h3 {
        font-size: 30px;
    }

    .wedding-highlights {
        grid-template-columns: 1fr;
    }
}

/* Desktop */
.hero-title .title-bottom {
    margin: 0;
}

/* Mobile */
@media (max-width: 767px) {

    .hero-title {
        text-align: center;
    }

        .hero-title .title-bottom {
            display: block;
            width: 100%;
            white-space: nowrap; /* Keeps Ganga Amritam in one line */
            line-height: 1.1;
        }

        .hero-title .title-bottom_other {
            display: block;
            width: 100%;
            white-space: nowrap; /* Keeps Ganga Amritam in one line */
            line-height: 1.1;
        }

        .hero-title h1 {
            font-size: 42px;
        }

        .hero-title h2 {
            font-size: 28px;
        }

    .hero-subtitle {
        font-size: 14px;
    }
}
