/* ========================================
   CSS Variables - Color Scheme & Fonts
   ======================================== */
:root {
    /* Main Colors */
    --primary-color: #0b1f3a;
    --secondary-color: #cd9f52;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --normal-bg: linear-gradient(135deg, rgb(243, 194, 107), rgb(215, 154, 52));

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #0b1f3a 0%, #1d3557 100%);

    --gradient-secondary: linear-gradient(
        135deg,
        #ff6a00 0%,
        #cd9f52 50%,
        #723904 100%
    );
    --gradient-overlay: linear-gradient(
        135deg,
        rgba(11, 31, 58, 0.9) 0%,
        rgba(232, 93, 4, 0.85) 100%
    );

    /* Typography */
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Poppins", sans-serif;
    /* Spacing */
    --section-padding: 40px 0;
    --transition: all 0.3s ease;
}

/* ========================================
   Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: var(--section-padding);
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: var(--gradient-secondary);
    padding: 0px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.635),
        transparent
    );

    transform: skewX(-20deg);
    animation: shineMove 2.5s infinite;
}
.home-offer-marquee {
    margin-top: 3px;
    font-size: 14px;
    font-weight: 600;
}

@keyframes shineMove {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    background: #ffffff00;
    padding: 3px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    color: #fff;
}

.navbar.scrolled {
    padding: 5px 0;
    background: #fffffff0;
    color: #000;
}

.navbar-brand {
    max-width: 90px;
}

.navbar-brand img {
    width: 100%;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    /* padding: 3px 10px !important; */
    font-size: 14px;
    margin: 0 5px;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ef8902;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar .dropdown-menu {
    border: 1px solid rgba(13, 110, 253, 0.12);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 12px 30px rgba(12, 48, 120, 0.14);
    top: 50;
}

.navbar .dropdown-item {
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 500;
}

.navbar .dropdown-item:hover {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 8px 25px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, rgb(243, 194, 107), rgb(215, 154, 52));
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(240, 211, 69, 0.3);
    border: 1px solid var(--secondary-color);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(231, 130, 6, 0.4);
    background: #fff;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-outline-primary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 2px solid var(--white-color);
    color: var(--white-color);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-primary a {
    text-decoration: none !important;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    margin-bottom: 40px;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 20px;
    font-family: cursive;
    position: relative;
    text-align: center;
    margin-bottom: 0px;
}

.section-title {
    font-size: 38px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0px;
    text-transform: uppercase;
    font-family: serif;
}

.section-description {
    font-size: 18px;
    color: #6c757d;
    display: none;
}

/* ========================================
  Hero Section
   ======================================== */
.home-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url("../images/hero-bg.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
    margin-top: -65px;
}

.home-hero-content {
    color: #fff;
}

.home-hero-subtitle {
    font-size: 22px;
    color: #d9b06f;
    font-family: cursive;
    display: inline-block;
    margin-bottom: 15px;
}

.home-hero-title {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
}

.home-hero-title span {
    color: #d9b06f;
}

.home-hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #e2e2e2;
    max-width: 550px;
    margin-bottom: 35px;
}

.home-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
}

.home-hero-btn {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.primary-btn {
    background: linear-gradient(135deg, #f3c26b, #d79a34);
    color: #000;
    border: 1px solid transparent;
}

.primary-btn:hover {
    background: linear-gradient(135deg, #ffd68f, #e6a843);
    color: #000;
}

.secondary-btn {
    border: 1px solid #fff;
    color: #fff;
}

.secondary-btn:hover {
    background: #fff;
    color: #000;
}

.home-hero-form-wrapper {
    background: rgba(17, 17, 17, 0.75);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.home-hero-form-title {
    color: #fff;
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

.home-form-control {
    height: 55px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 10px;
    padding: 10px 15px;
}

.home-form-control::placeholder {
    color: #d6d6d6;
}

.home-form-control:focus {
    box-shadow: none;
    border-color: #d9b06f;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.home-hero-submit-btn {
    width: 100%;
    height: 58px;
    border: none;
    background: #d9b06f;
    color: #000;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.3s ease;
    margin-top: 10px;
}

.home-hero-submit-btn:hover {
    background: #fff;
}

.hero-booking-bar {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 18px 25px;
    border-radius: 16px;
    background: rgba(32, 18, 10, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    margin-top: 30px;
}

.hero-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.hero-item-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-item-icon i {
    color: #f3c26b;
    font-size: 24px;
}

.hero-item-content span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #d7c2a4;
    margin-bottom: 5px;
}

.hero-item-content p {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
}

.hero-item-border {
    width: 1px;
    height: 55px;
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 991px) {
    .home-hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }

    .home-hero-title {
        font-size: 48px;
    }

    .home-hero-description {
        margin: 0 auto 30px;
    }

    .home-hero-buttons {
        justify-content: center;
        font-size: 12px;
    }

    .home-hero-form-wrapper {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .home-hero-title {
        font-size: 36px;
    }

    .home-hero-description {
        font-size: 15px;
    }

    .home-hero-form-wrapper {
        padding: 15px;
    }
    .home-form-control {
        height: 45px;
        border-radius: 5px;
        padding: 5px 10px;
        font-size: 14px;
    }
    .home-hero-form-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .hero-booking-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .hero-item-border {
        display: none;
    }

    .hero-book-btn {
        width: 100%;
    }

    .home-hero-btn {
        padding: 8px 20px;
    }
    .home-hero-submit-btn {
        height: 45px;
        font-weight: 600;
    }
}

/* ========================================
Home Activity Top Card
   ======================================== */
.home-activity-section {
    background: #faf8f4;
}

.home-activity-card {
    text-align: center;
    padding: 10px 10px;
    border-right: 1px solid #ece7df;
    transition: 0.3s ease;
}

.home-activity-card:hover {
    transform: translateY(-4px);
}

.home-activity-card-image {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-activity-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-activity-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2d1b10;
    margin-bottom: 0px;
    font-family: serif;
}

.home-activity-card p {
    margin-top: 4px;
    color: #666;
    font-size: 14px;
    line-height: 1.1;
    margin-bottom: 0px;
}

@media (max-width: 991px) {
    .home-activity-card {
        border-right: 0;
        border-bottom: 1px solid #ece7df;
        padding: 25px 15px;
    }

    .home-activity-card-image {
        width: 60px;
        height: 60px;
    }

    .home-activity-card h4 {
        font-size: 16px;
    }

    .home-activity-card p {
        font-size: 13px;
    }
}
/* ========================================
  Booking Modal
   ======================================== */
.booking-modal-premium .modal-dialog {
    max-width: 620px;
}

.booking-modal-compact {
    padding: 14px;
}

.booking-modal-premium .modal-content {
    border: none;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(8, 24, 46, 0.22);
}

.booking-modal-premium .modal-header {
    padding: 22px 22px 10px;
    border-bottom: none;
    align-items: center;
    background: #ffffff;
}

.booking-title-wrap {
    max-width: 440px;
}

.booking-modal-premium .modal-title {
    margin-bottom: 4px;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--primary-color);
}

.booking-subtitle {
    margin-bottom: 0;
    color: #667085;
    font-size: 14px;
}

.booking-modal-premium .btn-close {
    margin: 0 0 0 auto;
    border-radius: 50%;
    opacity: 1;
    box-shadow: none;
}

.booking-modal-premium .modal-body {
    padding: 0 22px 22px;
    background: #ffffff;
}

.booking-form-inquiry {
    padding: 6px 0 0;
}

.booking-form-inquiry .form-control,
.booking-form-inquiry .form-select {
    min-height: 48px;
    border: 1px solid #d8e0ea;
    border-radius: 14px;
    padding: 10px 16px;
    font-size: 14px;
    color: #56606f;
    background: #fbfcfe;
    box-shadow: none;
}

.booking-form-inquiry textarea.form-control {
    min-height: 82px;
    resize: vertical;
}

.booking-form-inquiry .form-control::placeholder,
.booking-form-inquiry .form-select {
    color: #6b7280;
}

.booking-form-inquiry .form-control:focus,
.booking-form-inquiry .form-select:focus {
    border-color: #ffb703;
    box-shadow: 0 0 0 4px rgba(255, 183, 3, 0.14);
}

.booking-form-inquiry .btn {
    min-height: 50px;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    background: var(--gradient-secondary);
    box-shadow: 0 12px 24px rgba(232, 93, 4, 0.22);
}

/* ========================================
    Testimonial Section
   ======================================== */
.hm_enh_testi_section {
    background: #f8fafc;
}

.hm_enh_testi_card {
    position: relative;
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
}

.hm_enh_testi_light {
    background: #fff;
    color: #333;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hm_enh_testi_dark {
    background: #001f3f;
    color: #fff;
}

.hm_enh_testi_quote {
    font-size: 40px;
    color: #3b82f6;
}

.hm_enh_testi_stars {
    color: #fbbf24;
    font-size: 12px;
    margin-bottom: 1 5px;
}

.hm_enh_testi_text {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 2px;
    color: #475569;
}

.hm_enh_testi_read {
    margin-top: 0px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    justify-content: end;
}

.hm_enh_testi_user img {
    width: 45px !important;
    height: 45px;
    border-radius: 50%;
    margin-right: 10px;
}

.hm_enh_testi_user h6 {
    margin: 0;
    font-weight: 600;
}

.hm_enh_testi_user span {
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0;
}

.hm_enh_testi_user span i {
    color: #fff;
}

.hm_testi_check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    background: #0c70f3;
    color: #fff;
    border-radius: 50%;
    font-size: 9px;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    background: var(--light-color);
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding: 20px 15px;
    background: var(--white-color);
    border-radius: 15px;
    border: 1px solid var(--secondary-color);
    transition: var(--transition);
}

.contact-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: var(--white-color);
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-item p {
    color: #6c757d;
    margin: 0;
    font-size: 15px;
}

.contact-form-wrapper {
    background: var(--white-color);
    padding: 40px 15px;
    border-radius: 20px;
    border: 1px dashed var(--secondary-color);
    box-shadow: 0 5px 20px rgba(234, 163, 21, 0.199);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
}

/* ========================================
   Navigating FAQ Section Start
   ======================================== */

.navigating-faq-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
}

.faq-accordion {
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-green);
}

.faq-item.active {
    border-color: var(--accent-green);
    box-shadow: 0 5px 25px rgba(238, 124, 10, 0.15);
}

.faq-question {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
}

.faq-item.active .faq-question {
    background: #efdec3c4;
}

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

.faq-question h5 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    flex: 1;
    padding-right: 20px;
    line-height: 1.5;
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 15px;
}

.faq-answer p {
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.faq-hero-img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    height: 545px;
}

/* ========================================
   Fleet Section
   ======================================== */
.fleet-section {
    background: #e4aa4b1a;
}

.fleet-card {
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #dadada;
    height: 100%;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.fleet-image {
    position: relative;
    overflow: hidden;
    height: 211px;
}

.fleet-image::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
    z-index: 1;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(108%) contrast(115%) saturate(125%);
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-badge {
    position: absolute;
    bottom: 5px;
    left: 10px;
    color: var(--white-color);
    width: 100%;
    font-size: 17px;
    font-weight: 600;
    z-index: 2;
    line-height: 1.3;
}
.fleet-days {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #000;
    font-size: 14px;
    padding: 1px 10px;
    background-color: #eaeb1a;
    border-radius: 25px;
    font-weight: 600;
}

.fleet-badge.luxury {
    background: var(--gradient-primary);
}

.fleet-content {
    padding: 5px 10px 15px 10px;
}

.fleet-description {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 10px;
}

.hm-tour-card__features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.hm-tour-card__feature {
    text-align: center;
    font-size: 12px;
}

.hm-tour-card__feature i {
    font-size: 18px;
    color: #dea440;
    border: 1px solid #eebc62;
    padding: 12px;
    border-radius: 10px;
    display: block;
    margin-bottom: 5px;
    transition: transform 0.4s ease;
}

.hm-tour-card__feature:hover i {
    transform: scaleX(-1);
}

.hm-tour-card__route {
    font-size: 14px;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
    line-height: 1.2;
}

.hm-tour-card__route i {
    color: #dea440;
    margin-right: 3px;
}

.fleet-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    border-top: 1px solid #e9ecef;
}

.fleet-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.fleet-price .price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.fleet-price .per-km {
    font-size: 14px;
    color: #6c757d;
}

.estimated-price-tag {
    color: var(--primary-color);
    font-size: 14px;
}

.fleet-hm-btns {
    display: flex;
    gap: 5px;
}

.fleet-hm-btns a {
    flex: 1;
    padding: 4px;
    font-size: 13px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-hm-btns--view {
    background: #0d6efd;
    color: #fff;
}

.fleet-hm-btns--enquiry {
    background: linear-gradient(135deg, rgb(243, 194, 107), rgb(215, 154, 52));
    color: #fff;
}

.fleet-hm-btns--whtasaap {
    background: #25d366;
    color: #fff;
    max-width: 40px;
    font-size: 22px !important;
}

.fleet-hm-btns a:hover {
    opacity: 0.9;
}

/* ========================================
    Navigating FAQ Section End 
   ======================================== */

/* ========================================
    Home About US Section
   ======================================== */
.home-about-us-section {
    overflow: hidden;
    background: #fff;
}

.home-about-us-image {
    position: relative;
    height: 100%;
}

.home-about-us-image img {
    width: 100%;
    height: 465px;
    object-fit: cover;
    display: block;
}

.home-about-us-content {
    background: #120c08;
    padding: 30px 45px;
    height: 465px;
    position: relative;
    overflow: hidden;
}

.home-about-us-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 179, 71, 0.08), transparent);
    pointer-events: none;
}

.home-about-us-subtitle {
    display: inline-block;
    color: #d4a04a;
    font-size: 24px;
    margin-bottom: 12px;
    font-family: cursive;
}

.home-about-us-title {
    font-size: 38px;
    line-height: 1.1;
    font-weight: 600;
    color: #fff;
    margin-bottom: 22px;
    text-transform: uppercase;
    font-family: serif;
}

.home-about-us-description {
    color: #d7d2cb;
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 40px;
}

.home-about-us-features {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 40px;
}

.home-about-us-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-about-us-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-about-us-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-about-us-feature-item span {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.home-about-us-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    padding: 0 35px;
    background: linear-gradient(135deg, #d9a24f, #f0c27b);
    color: #1b1209;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: 0.3s ease;
    letter-spacing: 0.5px;
}

.home-about-us-btn:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 991px) {
    .home-about-us-content {
        padding: 10px 20px;
    }

    .home-about-us-title {
        font-size: 38px;
    }

    .home-about-us-description {
        font-size: 16px;
    }

    .home-about-us-image img {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .home-about-us-title {
        font-size: 30px;
    }

    .home-about-us-features {
        gap: 18px;
        flex-direction: column;
    }

    .home-about-us-content {
        padding: 10px 10px;
    }
}

/* ========================================
   Galleary
   ======================================== */

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #120c08;
    color: var(--light-color);
    padding: 40px 0 0;
}

.footer-logo-warpper img {
    width: 110px;
}

.footer-widget h2,
.footer-widget h4 {
    color: var(--white-color);
}

.footer-brand {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-brand span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white-color);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-widget h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-widget h4::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 3px;
    background: linear-gradient(to right, #ff6b35, #ff9a6b);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(236, 76, 17, 0.727);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}
.footer-bottom {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* ========================================
  Tour Cattegory Page
   ======================================== */
/* hero section */
.tour-category-hero-banner {
    height: 420px;
    overflow: hidden;
    position: relative;
}

.tour-category-hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.tour-category-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5, 15, 35, 0.92) 0%,
        rgba(5, 15, 35, 0.7) 35%,
        rgba(5, 15, 35, 0.2) 100%
    );
}

.tour-category-hero-content {
    position: absolute;
    left: 60px;
    right: 60px;
    bottom: 15px;
    z-index: 2;

    padding: 28px;
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-category-hero-title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0px;
}

.tour-category-hero-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    max-width: 700px;
    margin-bottom: 24px;
}

.tour-category-section {
    background: #f3f6fb;
}

.yatra-card {
    height: 250px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
}

.yatra-image {
    width: 32%;
    position: relative;
    overflow: hidden;
}

.yatra-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badge */
.trip-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff7a00;
    color: #fff;
    padding: 2px 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Center Content */
.yatra-content {
    width: 43%;
    padding: 10px 10px;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;

    background: linear-gradient(
        135deg,
        rgba(11, 33, 77, 0.97) 0%,
        rgba(16, 52, 120, 0.96) 50%,
        rgba(8, 27, 66, 0.98) 100%
    );
}

/* Top Glow */
.yatra-content::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 153, 0, 0.15);
    filter: blur(20px);
}

/* Bottom Design */
.yatra-content::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    transform: rotate(15deg);
}

.yatra-content .yatra-card-title {
    position: relative;
    z-index: 2;
}

.yatra-content .yatra-card-title::after {
    content: "";
    width: 70px;
    height: 4px;
    border-radius: 20px;
    margin-top: 8px;
    display: block;
    background: linear-gradient(to right, #ff8c00, #ffd089);
}

.yatra-content > * {
    position: relative;
    z-index: 2;
}

.yatra-card-feature-box {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.yatra-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px;
}

.yatra-title span {
    color: #ff9d00;
}

/* Info */
.tour-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-item i {
    width: 25px;
    height: 25px;
    background: #fff;
    color: #ff7a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.info-item h6 {
    margin: 0;
    font-size: 15px;
    color: #ffb347;
    font-weight: 700;
}

.info-item p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Features */
.feature-box {
    margin-top: 15px;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    background: rgb(255 255 255 / 63%);
    backdrop-filter: blur(14px);
    border: 1px solid rgb(255 255 255);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 25%;
}

.feature-item i {
    font-size: 18px;
    color: #0c2d68;
}

.feature-item span {
    color: #222;
    font-size: 13px;
    font-weight: 700;
}

/* Right Box */
.yatra-price-box {
    width: 25%;
    background: #fff;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yatra-price-box h6 {
    color: #555;
    font-size: 15px;
}

.yatra-price-box h3 {
    font-size: 16px;
    font-weight: 800;
    color: #ff6b00;
    margin: 5px 0;
}

.yatra-price-box p {
    color: #666;
}

.yatra-button-dt {
    gap: 8px;
    margin-top: 12px;
}

.yatra-button-dt a {
    text-align: center;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.yatra-button-dt .enquiry-btn {
    background: var(--secondary-color);
    color: #fff;
}

.yatra-button-dt .details-btn {
    background: var(--primary-color);
    color: #fff;
}

.yatra-button-dt a:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* right side common sidebar */
.common-side-sticky {
    position: sticky;
    top: 68px;
}

.common-side-card {
    background: linear-gradient(145deg, #0d2f6f, #17479d);
    border-radius: 20px;
    overflow: hidden;
    padding: 20px 15px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.common-side-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -80px;
    right: -80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.common-side-top {
    position: relative;
    z-index: 2;
}

.common-side-tag {
    background: #ff7b00;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 14px;
}

.common-side-title {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.common-side-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.common-side-button-wrap {
    display: flex;
    /* flex-direction: column; */
    gap: 5px;
    margin-bottom: 20px;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.common-side-btn {
    border-radius: 5px;
    padding: 7px 16px;
    font-size: 12px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s ease;
    flex: 1;
}

.common-side-btn:hover {
    transform: translateY(-2px);
}

.common-side-btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.common-side-btn-call {
    background: #ff7b00;
    color: #fff;
}

.common-side-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.common-side-feature {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.common-side-feature i {
    color: #ffd26f;
}

.common-side-social-card {
    margin-top: 20px;
    padding: 24px 15px;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #eef4ff);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.common-side-social-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgb(255 123 0 / 27%);
    border-radius: 50%;
    top: -60px;
    right: -60px;
}

.common-side-social-top {
    position: relative;
    z-index: 2;
}

.common-side-social-tag {
    display: inline-block;
    background: #0d2f6f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.common-side-social-title {
    font-size: 18px;
    font-weight: 800;
    color: #0d2f6f;
    line-height: 1.2;
}

.common-side-social-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 22px;
}

.common-side-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    z-index: 2;
}

.common-side-social-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    color: #fff;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.common-side-social-icon:hover {
    transform: translateY(-4px) scale(1.05);
    color: #fff;
}

.common-side-social-facebook {
    background: #1877f2;
}

.common-side-social-instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.common-side-social-youtube {
    background: #ff0000;
}

.common-side-social-whatsapp {
    background: #25d366;
}

/* Details Page csss */
.tour-category-info {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tour-category-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-category-item i {
    font-size: 24px;
    color: #fff;
    line-height: 1;
}

.tour-category-item span {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .tour-category-info {
        gap: 15px;
    }

    .tour-category-item i {
        font-size: 18px;
    }

    .tour-category-item span {
        font-size: 16px;
    }
}

/* Activity Page */

.pg-activity-hero-section {
    padding: 150px 0 80px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.499), rgba(0, 0, 0, 0.541)),
        url("../images/activity.png");
    background-size: cover;
    background-position: center;
    margin-top: -65px;
}

.pg-activity-hero-subtitle {
    color: #d9a24f;
    font-size: 22px;
    font-family: cursive;
    display: inline-block;
    margin-bottom: 10px;
}

.pg-activity-hero-title {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pg-activity-hero-description {
    color: #ddd;
    font-size: 18px;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

.pg-activity-section {
    background: #f4dfbb96;
}

.pg-activity-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.pg-activity-card:hover {
    transform: translateY(-6px);
}

.pg-activity-card-image {
    height: 230px;
    overflow: hidden;
}

.pg-activity-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pg-activity-card-content {
    padding: 0px 10px 10px 10px;
}

.pg-activity-card-content span {
    color: #c7862f;
    font-size: 15px;
    font-weight: 600;
}

.pg-activity-card-content h3 {
    font-size: 21px;
    margin: 0px;
    color: #1d140d;
    font-family: serif;
}

.pg-activity-card-content p {
    color: #666;
    line-height: 1.3;
    margin-bottom: 0px;
    font-size: 14px;
    min-height: 65px;
}

.pg-activity-sticky-box {
    position: sticky;
    top: 68px;
}

.pg-activity-contact-card {
    background: #1a120c;
    padding: 15px;
    border-radius: 18px;
    color: #fff;
}

.pg-activity-contact-card h4 {
    font-size: 34px;
    margin-bottom: 10px;
}

.pg-activity-contact-card p {
    color: #ccc;
    margin-bottom: 25px;
}

.pg-activity-submit-btn {
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #d9a24f, #f2c27c);
    color: #1b1209;
    font-weight: 700;
    margin-top: 10px;
}

.pg-activity-cta-icons {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    justify-content: center;
}

.pg-activity-cta-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.pg-activity-cta-icons a:hover {
    background: #d9a24f;
    color: #000;
}

.pg-activity-cta-icons i {
    font-size: 20px;
}

@media (max-width: 991px) {
    .pg-activity-hero-title {
        font-size: 40px;
    }

    .pg-activity-sticky-box {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .pg-activity-hero-section {
        padding: 80px 0 60px;
    }

    .pg-activity-hero-title {
        font-size: 32px;
    }

    .pg-activity-card-content h3 {
        font-size: 18px;
    }
}

/* card section */
.design-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.27);
}

.custom-service-card {
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.custom-service-card:hover {
    transform: translateY(-5px);
}

.custom-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.custom-discount-icon {
    background: linear-gradient(135deg, rgb(243, 194, 107), rgb(215, 154, 52));
    color: white;
}

.custion-map-icon {
    background: linear-gradient(135deg, rgb(243, 194, 107), rgb(215, 154, 52));
    color: white;
}

.custom-briefcase-icon {
    background: linear-gradient(135deg, rgb(243, 194, 107), rgb(215, 154, 52));
    color: white;
}

.custom-service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.custom-service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.custom-icon-container i {
    font-size: 36px;
}

@media (max-width: 768px) {
    .custom-service-card {
        padding: 10px;
    }

    .custom-icon-container {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    .custom-icon-container i {
        font-size: 24px;
    }
}

/* About Us Section */
.about-us-pg-hero {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    margin-top: -64px;
}

.about-us-pg-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    opacity: 0.5;
}

.about-us-pg-hero .container {
    position: relative;
    z-index: 2;
}

.about-us-pg-hero-content h1 {
    font-size: 50px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-us-pg-hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-us-pg-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.about-us-pg-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.about-us-pg-primary-btn,
.about-us-pg-secondary-btn {
    text-decoration: none;
    padding: 6px 28px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.about-us-pg-primary-btn {
    background: var(--gradient-secondary);
    color: #fff;
}

.about-us-pg-primary-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.about-us-pg-secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.about-us-pg-secondary-btn:hover {
    background: #fff;
    color: var(--primary-color);
}

.about-us-pg-about-image-wrapper img,
.about-us-pg-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us-pg-hero-image {
    border-radius: 30px;
    overflow: hidden;
    height: 520px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-us-pg-about-image-wrapper {
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.about-us-pg-about-content p {
    color: #555;
    line-height: 1.9;
}

.about-us-pg-feature-card {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    height: 100%;
}

.about-us-pg-feature-card:hover {
    transform: translateY(-5px);
}

.about-us-pg-feature-icon {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgb(243, 194, 107), rgb(215, 154, 52));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.about-us-pg-feature-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.about-us-pg-feature-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
}

.about-us-pg-counter-section {
    background: #f4f7fb;
}

.about-us-pg-counter-card {
    text-align: center;
    background: #fff;
    padding: 30px 10px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.about-us-pg-counter-card:hover {
    transform: translateY(-5px);
}

.about-us-pg-counter-card i {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 18px;
}

.about-us-pg-counter-card h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.about-us-pg-counter-card p {
    margin: 0;
    color: #666;
}

.about-us-pg-mission-vision-section {
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.about-us-pg-mission-card,
.about-us-pg-vision-card {
    position: relative;
    background: #fff;
    padding: 35px;
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    z-index: 1;
}

.about-us-pg-mission-card::before,
.about-us-pg-vision-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    top: -70px;
    right: -70px;
    opacity: 0.08;
    z-index: -1;
}

.about-us-pg-mission-card:hover,
.about-us-pg-vision-card:hover {
    transform: translateY(-8px);
}

.about-us-pg-mission-icon,
.about-us-pg-vision-icon {
    width: 85px;
    height: 85px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgb(243, 194, 107), rgb(215, 154, 52));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
    margin-bottom: 25px;
    box-shadow: 0 12px 30px rgba(232, 93, 4, 0.3);
}

.about-us-pg-mission-card h3,
.about-us-pg-vision-card h3 {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.about-us-pg-mission-card p,
.about-us-pg-vision-card p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 25px;
}

.about-us-pg-mission-list,
.about-us-pg-vision-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-us-pg-mission-list li,
.about-us-pg-vision-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--primary-color);
}

.about-us-pg-mission-list li i,
.about-us-pg-vision-list li i {
    color: var(--secondary-color);
    font-size: 18px;
}

.about-us-pg-why-section {
    background: #fff;
}

.about-us-pg-why-card {
    background: #fff;
    border-radius: 28px;
    padding: 35px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.about-us-pg-why-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    opacity: 0.08;
}

.about-us-pg-why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(232, 93, 4, 0.2);
}

.about-us-pg-why-icon {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgb(243, 194, 107), rgb(215, 154, 52));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(232, 93, 4, 0.3);
}

.about-us-pg-why-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-us-pg-why-card p {
    margin: 0;
    color: #666;
    line-height: 1.9;
    font-size: 15px;
}

@media (max-width: 991px) {
    .about-us-pg-hero {
        padding: 70px 0;
    }

    .about-us-pg-hero-content h1 {
        font-size: 42px;
    }

    .about-us-pg-hero-image {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .about-us-pg-hero-content h1 {
        font-size: 34px;
    }

    .about-us-pg-hero-image {
        height: 320px;
    }

    .about-us-pg-btn-group {
        flex-direction: column;
    }

    .about-us-pg-primary-btn,
    .about-us-pg-secondary-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .about-us-pg-mission-card,
    .about-us-pg-vision-card {
        padding: 15px 20px;
    }

    .about-us-pg-mission-card h3,
    .about-us-pg-vision-card h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .about-us-pg-mission-card,
    .about-us-pg-vision-card {
        padding: 28px;
        border-radius: 22px;
    }

    .about-us-pg-mission-card h3,
    .about-us-pg-vision-card h3 {
        font-size: 24px;
    }

    .about-us-pg-mission-icon,
    .about-us-pg-vision-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .about-us-pg-why-card {
        padding: 28px;
    }

    .about-us-pg-why-card h4 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .about-us-pg-why-card {
        border-radius: 22px;
        padding: 25px;
    }

    .about-us-pg-why-icon {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }

    .about-us-pg-why-card h4 {
        font-size: 20px;
    }
}

.privacy-policy-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.184);
}

/* Video Jouney In Frame */
.video-journey-in-frame-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    max-width: 900px;
    margin: auto;
}

.video-journey-in-frame-video {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .video-journey-in-frame-video {
        height: 280px;
    }
}

/* Common Media Query */

@media (max-width: 767px) {
    .section-title {
        font-size: 20px;
    }
    .section-subtitle {
        font-size: 16px;
    }
    .section-padding {
        padding: 25px 0px;
    }
}
