body{
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body{
    padding-top: 70px;
}
.honeypot {
    display: none !important;
}


/* Headings */
h1, h2, h3, h4, h5, h6,
.section-title,
.hero-title{
    font-family: "Russo One", sans-serif;
}
/* SharmIxir navbar color */
.navbar{
    background-color: #60B5FF !important;
}

.navbar .navbar-brand,
.navbar .nav-link{
    color: #ffffff !important;
}

.navbar .nav-link:hover{
    color: #ffd24d !important;
}

.navbar i{
    color: #ffffff;
}


/* ===========================
   HERO SECTION
=========================== */
.custom-hero {
    background: var(--hero-bg) no-repeat center center;
    background-size: cover;
    height: 40vh;
    max-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.custom-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.custom-hero .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 15px;
}

.custom-hero .hero-content h1 {
    font-size: 2.5rem;
}

.custom-hero .hero-content p {
    font-size: 1.2rem;
}

/* ===========================
   EXCURSION CARD STYLING
=========================== */
.excursion-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.excursion-card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.excursion-card img {
    height: 220px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.excursion-card:hover img {
    opacity: 0.9;
}

.excursion-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Title */
.excursion-card .card-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* Summary */
.summary-text {
    min-height: 60px;
    max-height: 60px;
    overflow: hidden;
}

/* Details / Duration / Prices */
.card-details {
    min-height: 85px;
}

/* Rating always at bottom before button */
.rating-section {
    margin-top: auto;
}

/* Book button always bottom */
.excursion-card .btn {
    margin-top: 15px;
}

/* Price styling */
.excursion-card .price {
    color: #FFECDB;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* ===========================
   CAROUSEL
=========================== */
.carousel-inner {
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-item {
    height: 500px;
}

.carousel-image {
    width: 100% !important;
    height: 500px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
}

@media (max-width: 768px) {
    .carousel-inner,
    .carousel-item,
    .carousel-image {
        height: 280px !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-inner,
    .carousel-item,
    .carousel-image {
        height: 380px !important;
    }
}

/* ===========================
   GENERIC CARD & LOGO
=========================== */
.card {
    border-radius: 10px;
    box-shadow: 0 0.3rem 0.7rem rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-3px);
}

.logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}
.booking-card {
    background: #228ada; /* your brand color */
    border: none;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: all 0.3s ease-in-out;
    color: #ffffff;
}

.booking-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

/* Universal title for all cards */
.booking-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Universal text inside cards */
.booking-card p {
    color: #e9f5ff;
}

/* Inputs inside cards */
.booking-card .form-control {
    border-radius: 10px;
    padding: 10px 14px;
    border: none;
}

/* Radio labels */
.booking-card .form-check-label {
    color: #ffffff;
    font-size: 1rem;
}
.booking-card-subtext {
    color: #e9f5ff;
    margin-top: -10px;
    margin-bottom: 20px;
}

/* Labels */
.booking-label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Counter buttons */
.counter-btn {
    border: 1px solid #ffffff;
    color: #ffffff;
    width: 40px;
    font-size: 20px;
    border-radius: 10px;
    background: transparent;
}

.counter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Counter input field */
.counter-input {
    border: none;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: bold;
}

.counter-input:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.25);
}
/* Language toggle buttons inside booking card */
.booking-lang-btn {
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 10px !important;
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 10px; /* spacing between buttons */
}

/* Remove margin from last button */
.booking-lang-btn:last-child {
    margin-right: 0;
}

/* Hover effect */
.booking-lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* When selected */
.btn-check:checked + .booking-lang-btn {
    background: #ffffff;
    color: #228ada; 
    border-color: #ffffff;
}
/* Total price styling */
.total-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #00ff99; /* bright green for emphasis */
    margin-top: 10px;
}


/* ============================
   Booking Success Page
============================ */

/* Hero Section */
.booking-hero {
    position: relative;
    height: 150px;
    background: linear-gradient(135deg, #FF7F50, #FFB347); /* Coral → Light Orange */
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}


.booking-hero-text h2 {
    color: #FFD700; /* Gold color for celebration */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.booking-hero-text p {
    color: #FFFAF0; /* Light cream for subtitle */
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}


/* Dark overlay */
.booking-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Hero text center */
.booking-hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Cards */
.booking-card {
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border: none;
}

/* Buttons spacing consistency */
.booking-card .btn {
    min-width: 140px;
}

/* Responsive tweak */
@media (max-width: 768px) {
    .booking-hero {
        height: 120px;
    }
}
/* ============================
   Manage Booking Section
============================ */

.manage-booking-section {
    background: linear-gradient(135deg, #0f77ae, #0b5f8a);
    color: #ffffff;
    padding: 4rem 2rem;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.manage-booking-text {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.manage-booking-small {
    color: rgba(255, 255, 255, 0.85);
}

.manage-booking-small a {
    color: #ffffff;
    text-decoration: underline;
}

.manage-booking-small a:hover {
    opacity: 0.85;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .manage-booking-section {
        padding: 3rem 1.5rem;
    }
}
/* Login Page Styles */

.login-page {
    min-height: 80vh;
    background-color: #228ada;
}

.login-card {
    background-color: #ffffff;
    max-width: 400px;
    width: 100%;
    padding: 2.5rem 2rem;
    padding-top: 3rem; /* adjust logo spacing */
}

.login-logo {
      max-width: 70px; /* smaller than before */
    height: auto; 
}

.login-heading {
    color: #228ada;
    margin-bottom: 1.5rem;
}

.login-btn {
    background-color: #228ada;
    border-color: #228ada;
}

.login-btn:hover {
    background-color: #084c70;
    border-color: #084c70;
}

.login-register-link {
    color: #228ada;
    text-decoration: underline;
}

.login-register-link:hover {
    opacity: 0.85;
}
/* Register Page Styles (matches login) */

.register-page {
    min-height: 80vh;
    background-color: #228ada;
}

.register-card {
    background-color: #ffffff;
    max-width: 400px;
    width: 100%;
    padding: 2.5rem 2rem;
    padding-top: 4rem; /* spacing for logo */
}

.register-logo {
    max-width: 50px; /* smaller logo */
    height: auto;
}

.register-heading {
    color: #228ada;
    margin-bottom: 1.5rem;
}

.register-btn {
    background-color: #228ada;
    border-color: #228ada;
}

.register-btn:hover {
    background-color: #084c70;
    border-color: #084c70;
}

.register-login-link {
    color: #228ada;
    text-decoration: underline;
}

.register-login-link:hover {
    opacity: 0.85;
}

.register-page {
    min-height: 60vh; /* instead of 80vh */
    background-color: #228ada;
}
/* Shared Auth Pages */
.auth-page {
    min-height: 60vh;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #228ada;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.auth-card {
    background-color: #ffffff;
    max-width: 400px;
    width: 100%;
    padding: 2.5rem 2rem;
    padding-top: 3rem;
}

.auth-heading {
    color: #228ada;
    margin-bottom: 1.5rem;
    text-align: center;
}

.auth-btn {
    background-color: #228ada;
    border-color: #228ada;
}

.auth-btn:hover {
    background-color: #084c70;
    border-color: #084c70;
}
/* Login/Register/Forgot Password shared styles already applied */
.auth-login-link {
    color: #228ada;
    text-decoration: underline;
}

.auth-login-link:hover {
    opacity: 0.85;
}
/* Buttons for Verify Email page */
.auth-btn {
    background-color: #228ada;
    border-color: #228ada;
}

.auth-btn:hover {
    background-color: #084c70;
    border-color: #084c70;
}

/* Optional: outline button for logout */
.btn-outline-secondary {
    color: #228ada;
    border-color: #228ada;
}

.btn-outline-secondary:hover {
    background-color: #228ada;
    color: #ffffff;
}
/* Shared Auth Pages CSS (applies to Login, Register, Forgot, Reset Password, Confirm, Verify) */
.auth-page {
    min-height: 60vh;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #228ada;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.auth-card {
    background-color: #ffffff;
    max-width: 400px;
    width: 100%;
    padding: 2.5rem 2rem;
    padding-top: 3rem;
}

.auth-heading {
    color: #228ada;
    margin-bottom: 1.5rem;
    text-align: center;
}

.auth-btn {
    background-color: #228ada;
    border-color: #228ada;
}

.auth-btn:hover {
    background-color: #084c70;
    border-color: #084c70;
}
.booking-hero input[type="text"] {
    max-width: 250px;
    border-radius: 0.5rem;
    padding: 0.6rem 1rem;
    font-size: 1rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    color: #fff;
}




/* ==========================
   BOOKING STATUS TIMELINE
========================== */

.status-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 auto;
}

.status-dot.active {
    background: #228ada; /* Bootstrap primary */
}

.status-dot.cancelled {
    background: #dc3545; /* Bootstrap danger */
}

.status-line {
    flex: 1;
    height: 2px;
    background: #ccc;
    margin: 0 10px;
}

.status-line.active {
    background: #0d6efd;
}




/* SharmIxir - Why choose us cards */
.why-choose-us {
    background-color: #f5f5f5; /* very light gray */
    padding: 60px 0;
}

.why-choose-us .why-card,
.why-choose-us .why-card h3
{
    color: #215E61;
}
.why-choose-us .why-card p{
    color: #16476A;
}

.why-card .card-body{
    text-align: left;
    padding-left: 45px;
    padding-right: 24px;
}

.why-card .feature-icon{
    font-size: 44px;
    margin-bottom: 12px;
    line-height: 1;
}

.why-card .card-body{
    padding-left: 45px;
    padding-right: 24px;
}
.why-card {
    position: relative;
    overflow: hidden; /* ensures the pseudo-element doesn’t overflow */
    transition: transform 0.3s ease; /* optional: small scale on hover */
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;           /* start width 0 */
    height: 100%;
    background-color: #ffcc00; /* color of the hover bar */
    transition: width 0.3s ease;
    z-index: 0; /* behind content */
}

.why-card:hover::before {
    width: 8px; /* width of the color bar when hovered */
}

/* Make sure text and icon stay above the pseudo-element */
.why-card .card-body {
    position: relative;
    z-index: 1;
}
.why-card:hover {
    transform: translateX(5px); /* small move to the right */
}
.review-card-link{
    text-decoration: none;
}
.what-reviews{
    background-color: #0AC4E0;
}

.review-card{
    background: #ffffff;
    border: 0;
    border-radius: 12px;
    padding: 25px 10px;
    transition: all .25s ease;
}

.review-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.review-icon{
    font-size: 38px;
    color: #444;
}

.technology-section{
    background-color: #f5f5f5; /* same tone as why-choose-us */
}


.faq-item{
    cursor: pointer;
}

.faq-question{
    margin-bottom: 0;
    font-weight: 600;
}

.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    margin-top: 10px;
    color: #16476A; /* same text tone as your why cards */
}

.faq-item.active .faq-answer{
    max-height: 300px;
}


.social-follow .social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.social-follow .social-icon:hover {
    transform: translateY(-4px);
}

.social-follow .facebook:hover {
    background:#1877f2;
    color:#fff;
}

.social-follow .instagram:hover {
    background:#e1306c;
    color:#fff;
}

.social-follow .tiktok:hover {
    background:#000;
    color:#fff;
}
.hero-content .btn-warning {
    transition: all 0.3s ease; /* smooth hover */
    color: #fff;               /* text color */
}

.hero-content .btn-warning:hover {
    background-color: #ffc107; /* slightly lighter yellow on hover */
    color: #000;               /* optional: change text color */
    transform: translateY(-3px); /* lift effect */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); /* shadow on hover */
}
.sharm-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}
.head_sec h2.head_title {
    font-size: 2.5rem;    /* increase size of h2 */
    font-weight: 700;     /* make it bold */
    margin-bottom: 20px;  /* space below h2 */
}

.head_sec p.head_text {
    font-size: 1.2rem;    /* slightly bigger paragraph */
    max-width: 800px;     /* keeps paragraph readable */
    margin: 0 auto;
    color: #215E61;       /* centers p under h2 */
}


.what-to-do-quick .card-body {
    padding-top: 15px;   /* move content closer to top */
    padding-bottom: 15px; 
    padding-left: 15px; 
    padding-right: 15px; 
}


/* Set paragraph color for What to Do section */
.what-to-do-quick p {
    color: #215E61;
}
/* Paragraph and list color */
.family-free-section p,
.family-free-section li {
    color: #215E61;
}

/* Card styling */
.family-free-section .card {
    min-height: 500px;          /* make cards taller */
    padding: 30px;              /* more space inside */
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1.1rem;          /* slightly bigger text */
}

/* Card hover effect */
.family-free-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Card title styling */
.family-free-section .card-title {
    font-size: 1.6rem;           /* slightly bigger title */
    white-space: nowrap;         /* keep on one line */
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px;
}

/* Card list styling */
.family-free-section .card-list {
    padding-left: 20px;
    list-style-type: disc;
    line-height: 2;              /* more space between list items */
}

/* List items spacing */
.family-free-section .card-list li {
    margin-bottom: 12px;         /* extra space between points */
}

/* Card emoji styling */
.family-free-section .card-emoji {
    font-size: 3rem;             /* bigger emoji/icon */
    margin-bottom: 20px;
}

/* Wider cards on medium+ screens */
@media (min-width: 768px) {
    .family-free-section .col-md-5 {
        flex: 0 0 48%;            /* almost half of the row */
        max-width: 48%;
    }
}

/* Full-width card section background */
.full-width-card-section .full-width-card {
    width: 100%;
    padding: 40px 15px;
    background: linear-gradient(135deg, #e6f0f0 0%, #d1e6e6 100%); /* soft matching gradient */
    border-radius: 10px; 
    margin-bottom: 50px;
}

/* Card inside the section */
.full-width-card-section .card {
    background-color: #ffffff; /* keep card white for contrast */
    color: #215E61;            /* primary text color */
    border-radius: 10px;
    padding: 30px;
}

/* Card title */
.full-width-card-section .card h2 {
    color: #215E61;       /* matches other sections */
    margin-bottom: 20px;
    font-size: 2rem;      /* slightly larger */
}

/* Card paragraph text */
.full-width-card-section .card p {
    color: #215E61;
    font-size: 1.1rem;    /* slightly bigger for readability */
    line-height: 1.8;     /* space between lines */
    margin-bottom: 15px;
    text-align: left;
}


.why-choose-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #e6f0f0 0%, #d1e6e6 100%);
}

.why-choose-section .head_title {
    color: #215E61;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.why-choose-section .head_text {
    color: #215E61;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.why-choose-section .card {
    min-height: 350px;           /* make cards taller */
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #ffffff;
    color: #215E61;
}

.why-choose-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.why-choose-section .card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.why-choose-section .card-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.best-places-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #e6f0f0 0%, #d1e6e6 100%);
}

.best-places-section .head_title {
    color: #215E61;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.best-places-section .head_text {
    color: #215E61;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.best-places-section .card {
    min-height: 350px;
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #ffffff;
    color: #215E61;
}

.best-places-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.best-places-section .card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.best-places-section .card-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.travel-tips-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.travel-tips-section .head_title {
    color: #215E61;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.travel-tips-section .head_text {
    color: #215E61;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Card styling */
.travel-tips-section .tips-card {
    background-color: #ffffff;
    border-radius: 10px;
     height: 100%;
     box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Card hover effect */
.travel-tips-section .tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Card title with icon */
.travel-tips-section .card-title {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.travel-tips-section .card-icon {
    font-size: 2rem;
    margin-right: 10px;
}

/* Tip items inside card */
.travel-tips-section .tip-item {
    display: flex;
    align-items: flex-start;
    background-color: #f0f8f8;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 12px;
    transition: background-color 0.3s;
}

.travel-tips-section .tip-item:hover {
    background-color: #e0f0f0;
}

.travel-tips-section .tip-item .item-icon {
    font-size: 1.5rem;
    margin-right: 12px;
    margin-top: 2px;
}

.travel-tips-section .tip-item h5 {
    font-size: 1.1rem;
    margin: 0 0 3px 0;
    color: #215E61;
}

.travel-tips-section .tip-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #215E61;
    line-height: 1.5;
}

.shopping-areas-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.shopping-areas-section .head_title,
.shopping-areas-section .head_text {
    color: #215E61;
}

/* Card */

.shopping-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #ffffff;
}

.shopping-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Image with zoom */

.shopping-img-wrap {
    overflow: hidden;
    height: 240px;
}

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

.shopping-card:hover .shopping-img {
    transform: scale(1.08);
}

/* Content */

.shopping-title {
    font-size: 1.5rem;
    color: #215E61;
    margin-bottom: 10px;
}

.shopping-text {
    color: #215E61;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Feature icons row */

.shopping-features {
    display: flex;
    gap: 15px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.shopping-features span {
    background: #f0f8f8;
    color: #215E61;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}


.souvenirs-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.souvenir-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    background: #fff;
}

.souvenir-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,.15);
}

/* image + zoom */
.souvenir-img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
}

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

.souvenir-card:hover .souvenir-img {
    transform: scale(1.08);
}

/* top left label */
.souvenir-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(33,94,97,.95);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: .85rem;
    z-index: 2;
}

/* text */
.souvenir-title {
    color: #215E61;
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.souvenir-sub {
    color: #6aa7aa;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.souvenir-desc {
    color: #215E61;
    font-size: 1rem;
    line-height: 1.6;
}

/* fixed tips card inside */
.souvenir-tips {
    position: relative;
    background: #f0f8f8;
    padding: 14px 16px;
    margin-top: 14px;
    border-radius: 8px;
    border-left: 4px solid #215E61;
}

.souvenir-tips h6 {
    color: #215E61;
    margin-bottom: 8px;
    font-weight: 700;
}

.souvenir-tips ul {
    margin: 0;
    padding-left: 18px;
    color: #215E61;
    font-size: .95rem;
}

.souvenir-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    font-size: .9rem;
    color: #215E61;
}

.souvenir-footer .price {
    font-weight: 700;
}
/* Make card-body a column flex so content stretches */
.souvenir-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* pushes footer to bottom */
    height: 100%;
}

/* make the paragraph and tips stretch together */
.souvenir-desc,
.souvenir-tips {
    margin-bottom: 14px;
}
.souvenir-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Increase the photo height */
.souvenir-img-wrap {
    position: relative;
    overflow: hidden;
    height: 350px; /* increase from 240px to 300px */
}

/* image zoom */
.souvenir-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.souvenir-card:hover .souvenir-img {
    transform: scale(1.08);
}

/* card flex for equal height content */
.souvenir-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.souvenir-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* pushes footer to bottom */
    height: 100%;
}

/* keep tips and footer spacing */
.souvenir-desc,
.souvenir-tips {
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .souvenir-img-wrap {
        height: 250px; /* smaller height on tablets/phones */
    }
}


.weather-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.weather-section .head_title {
    font-size: 2rem;
    color: #215E61;
    margin-bottom: 10px;
}

.weather-section .head_text {
    font-size: 1rem;
    color: #215E61;
}

/* Top Season Icons */
.season-icon {
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    font-weight: 600;
    transition: transform .3s, box-shadow .3s;
}
.season-icon i {
    margin-bottom: 10px;
}
.season-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,.15);
}
.season-icon.summer { background:#ff8c00; }
.season-icon.fall { background:#f4a261; }
.season-icon.winter { background:#48cae4; }
.season-icon.spring { background:#90be6d; }

/* Season Cards General Styling */
.season-card {
    padding: 20px 25px; /* space inside card from top, bottom, left, right */
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .3s, box-shadow .3s;
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,.15);
}

/* Season Card Header (Icon + Title + Temp) */
.season-card-header,
.season-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.season-card-header i,
.season-header i {
    margin-right: 12px;
    color: #215E61;
}

/* Card Titles */
.season-title,
.season-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #215E61;
}

.season-temp,
.temp-range {
    margin-left: auto;
    font-weight: 600;
    color: #6aa7aa;
}

/* Paragraphs inside Card */
.season-desc,
.season-card p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #215E61;
}

/* Top Activities */
.activities-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.activity-item {
    padding: 10px 12px;
    border-radius: 8px;
    background-color: #f0f8f8;
    display: flex;
    align-items: center;
    transition: transform .3s, box-shadow .3s;
}

.activity-item i {
    color: #215E61;
}

.activity-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,.1);
}

/* Travel Tips */
.travel-tips {
    padding-left: 20px;
    list-style-type: disc;
    color: #215E61;
    margin-bottom: 0;
}

.travel-tips li {
    margin-bottom: 8px;
}

/* Ensure full card content spacing */
.season-card hr {
    margin: 15px 0;
    border-color: #d1e0e0;
}




/* Ensure season cards content aligns neatly */
.season-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* keeps everything aligned from top */
    height: 100%; /* stretch to fill column */
    text-align: left; /* make all text start from left */
}

/* Align travel tips to the bottom of cards */
.season-card .travel-tips {
    margin-top: auto; /* pushes tips to the bottom */
}

/* Consistent spacing for section headings inside cards */
.season-card h4.section-title {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* Adjust card paragraph spacing */
.season-card p.season-desc {
    margin-bottom: 1rem;
}

/* Optional: slightly reduce icon spacing if needed */
.season-card-header i {
    flex-shrink: 0;
}

html{
    scroll-behavior:smooth;
}


.sharm-faq-section {
    padding: 70px 0;
    background: #f6fbfb;
}

.sharm-faq-section .faq-header {
    text-align: left;
    margin-bottom: 35px;
}

.sharm-faq-section h2 {
    color: #215E61;
    font-weight: 700;
    margin-bottom: 10px;
}

.sharm-faq-section p {
    color: #5b7f82;
    max-width: 750px;
}

.faq-list {
    max-width: 900px;
}

.faq-item {
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,.06);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #215E61;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question:hover {
    background: #f0f8f8;
}

.faq-answer {
   max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #4d6f72;
    line-height: 1.7;
    transition: max-height 0.35s ease, padding 0.35s ease;
    box-sizing: border-box; /* Important */
}

.faq-item.active .faq-answer {
    padding: 15px 20px 20px;
    max-height: 1000px; /* Large value to accommodate all content */
    
}

.arrow {
    font-size: 20px;
    transition: transform .3s;
}

.faq-item.active .arrow {
    transform: rotate(45deg);
}
.faq_header{
    text-align: center;
}


.sharm-emergency-section {
    padding: 100px 0 60px; /* more top padding for space from above */
    background: #f6fbfb; /* same background as other sections */
}

/* Emergency Section Header */
.emergency-header {
    text-align: center;
    margin-bottom: 50px;
}

.emergency-header .emergency-icon span {
    font-size: 40px;
    color: red;
    display: inline-block;
    margin-bottom: 15px;
}

.emergency-header h2 {
    color: #215E61; /* main color */
    font-size: 32px;
    margin-bottom: 10px;
}

.emergency-header p {
    color: #5b7f82;
    font-size: 16px;
}

/* Big Card */
.emergency-big-card {
    background: #f0f4f8; /* distinct background for big card */
    border-radius: 25px;
    padding: 60px 40px; /* bigger padding for large card */
    width: 90%; /* larger card width */
    max-width: 1200px;
    margin: 0 auto 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,.1); /* stronger shadow */
}

/* Small Cards Container */
.emergency-small-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Small Card */
.emergency-small-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px; /* bigger inner padding */
    display: flex;
    align-items: start; /* icon on left, text aligned top */
    gap: 25px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.emergency-small-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.emergency-small-card span {
    font-size: 3.5rem; /* bigger icon */
    flex-shrink: 0;
}

.emergency-small-card h4 {
    margin: 0;
    font-size: 1.4rem; /* larger title */
    font-weight: 700;
    color: #215E61;
}

.emergency-small-card p {
    margin: 5px 0 0;
    font-size: 1rem; /* bigger text */
    font-weight: 600;
    color: #b20000; /* red for numbers */
}


.emergency-disclaimer {
    margin-top: 50px;
    margin-bottom: 80px;
}

.disclaimer-card {
    background-color: #e0f2f7; /* subtle blueish background, different from big card */
    padding: 30px 25px;
    border-radius: 20px;
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.disclaimer-card h4 {
    font-size: 1.5rem;
    color: #215E61;
    margin-bottom: 15px;
}

.disclaimer-card p {
    font-size: 1rem;
    color: #5b7f82;
    line-height: 1.6;
}


/* ===============================
   Medical block inside emergency section
================================ */

.medical-services-wrapper{
    margin-top:80px;
}

.medical-card-container{
    max-width:1200px;
    background:#f0f4f8;
}

.medical-card{
    height:100%;
    transition:transform .3s ease, box-shadow .3s ease;
}

.medical-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

.medical-icon{
    font-size:3rem;
    line-height:1;
}

.medical-card h5{
    color:#215E61;
    font-size:1.35rem;
    font-weight:700;
}

.medical-card p{
    color:#5b7f82;
    margin-bottom:0;
}


.sharm-footer {
    background-color: #EAEFEF;
    color: #215E61;
}

.sharm-footer a {
    text-decoration: none;
    color: #215E61;
    transition: color 0.3s;
}

.sharm-footer a:hover {
    color: #b20000;
}

.social-icons-premium {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 20px;
}

.social-icons-premium a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #1350f7;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.35s ease;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
}

.social-icons-premium a:hover {
    transform: translateY(-4px) scale(1.08);
    background: #ffc107;
    color: #000;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.35);
}

/* Footer Logo */
.footer-logo img {
    height: 90px; /* increase size from 60px → 90px */
    max-width: 100%;
    transition: transform 0.3s;
}

.footer-logo img:hover {
    transform: scale(1.05); /* optional subtle hover effect */
}


/* Make entire card clickable */
.card-link-stretched {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1; /* Behind the Book Now button */
}

/* Ensure Book Now button is clickable on top */
.card-body .btn {
    position: relative;
    z-index: 2;
}

/* Optional: clamp summary text for equal card height */
.summary-text {
    display: -webkit-box;
   -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Optional: hover effect */
.excursion-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: box-shadow 0.3s ease;
}

.text-dark { color: #212529 !important; }


@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}











