/* Custom CSS for Circuit Manaslu */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #C08552;
    --primary-hover: #A67041;
    --black: #111111;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --text-dark: #333333;
    --text-light: #666666;
    --border: #eeeeee;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;

}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-heading {
    font-size: 36px;
    color: var(--black);
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

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

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
}

/* Header */
.top-bar {
    background-color: #000;
    color: rgba(255, 255, 255, 0.8);
    /* padding: 12px 0; */
    font-size: 13px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-logo {
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
    font-size: 22px;
}

.top-bar-logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 20px;
}

.nav-links li {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    /* font-size: 12px; */
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
    color: white;
}

.nav-links li:hover {
    color: #C08552;
    border-radius: 5px;
    transform: translateY(3px) scale(0.98);
}

.nav-links-item p {
    font-size: 12px;
}

.nav-links-item span {
    font-size: 16px;
}

.nav-links .icon i {
    color: #C08552;
    font-size: 20px;
}


/* Navbar */
.navbar {
    position: absolute;
    top: 45px;
    /* Height of top bar */
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 40px 0;
    transition: var(--transition);
}

.navbar.sticky {
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-mobile {
    display: none;
    color: var(--white);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 2px;
}

.nav-logo-mobile span {
    color: var(--primary);
}


/* Hide desktop logo when not sticky */
.navbar:not(.sticky) .nav-logo-desktop {
    display: none;
}

.nav-logo-desktop {
    color: var(--white);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 2px;
    display: none;
}

.nav-logo-desktop span {
    color: var(--primary);
}

.navbar.sticky .nav-logo-desktop {
    display: block;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0 auto;
}

.nav-link {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-socials {
    display: flex;
    gap: 30px;

}

.nav-socials a {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

.nav-socials a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    font-size: 26px;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease-in-out;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 35px;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: -200px;
    text-align: center;
}

.mobile-menu .nav-link {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
}

.mobile-socials {
    margin-top: 50px;
    display: flex;
    gap: 20px;
}

.mobile-socials a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
}

.mobile-socials a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../images/hero.jpeg'); */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 44, 44, 0.7);
    z-index: 2;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.5s;
    padding: 0 20px;
    margin-top: 40px;
    z-index: 3;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    color: var(--primary);
    font-size: 16px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
    display: block;
}

.hero-title {
    color: var(--white);
    font-size: 80px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-title span {
    background: linear-gradient(to right, var(--primary), var(--primary-hover));
    -webkit-background-clip: text;
    color: transparent;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 45px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;

}

.hero-buttons a {
    width: auto;
}

/* Why Choose Us */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: stretch;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    padding: 30px 25px;
    background-color: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    background-color: var(--white);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

.feature-title {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--black);
}

.feature-desc {
    color: var(--text-light);
    font-size: 14.5px;
}

.about-image {
    position: relative;
    height: 100%;
    min-height: 550px;
    border-radius: 15px;
    overflow: hidden;

}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Best Trips */
.trips {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.trips-grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 30px;
}

.trips-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.trip-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.trip-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.trip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2), transparent);
    transition: background 0.3s ease;
}

.trip-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    color: var(--white);
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.trip-card:hover img {
    transform: scale(1.12);
}

.trip-card:hover .trip-content {
    transform: translateY(0);
}

.trip-title {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.trip-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trip-duration {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trip-duration i {
    color: var(--primary);
}

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


.featured-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 10;
}

/* Testimonials */
.testimonials {
    padding: 50px 0;
    background-color: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials .section-heading {
    color: var(--white);
}

.review-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    height: auto;
    margin: 15px 0 45px;
}

.review-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 40px rgba(192, 133, 82, 0.12);
    border-color: rgba(192, 133, 82, 0.3);
}

.review-card:hover .reviewer-name {
    color: rgb(170, 166, 166);
}

.stars {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 15px;
}

.review-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-height: 150px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.reviewer-name {
    font-weight: 700;
    font-size: 18px;
    color: #111111
}

.reviewer-role {
    color: var(--primary);
    font-size: 14px;
    margin-top: 2px;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    transform: scale(1.3);
}

/* Blog */
.blog {
    padding: 50px 0;
    background-color: var(--white);
}

.blog-grid {
    display: flex;
    gap: 20px;
    /* reduced from 40px */
    align-items: stretch;
}

/* Left Side */
.blog-left {
    flex: 7;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Right Side */
.blog-featured {
    flex: 5;
    display: flex;
    flex-direction: column;
    height: 740px;
}

/* Blog Card */
.blog-card {
    display: flex;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    min-height: 180px;
}

.blog-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Blog Image */
.blog-img {
    width: 40%;
    height: 350px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

/* Blog Content */
.blog-content {
    width: 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-date {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 15px;
    transition: var(--transition);
    color: var(--black);
}

.blog-card:hover .blog-title {
    color: var(--primary);
}

.blog-desc {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 25px;
}

.read-more {
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--black);
}

.read-more:hover {
    color: var(--primary);
}

/* Featured Blog */
.blog-featured .blog-img {
    width: 100%;
    height: 350px;
}

.blog-featured .blog-content {
    width: 100%;
    flex: 1;
    padding: 40px;
}

.blog-featured .blog-title {
    font-size: 28px;
}

/* FAQ */
.faq {
    padding: 50px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(192, 133, 82, 0.1);
}

.faq-question {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    color: var(--black);
    transition: var(--transition);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.4s ease;
    font-size: 20px;
}

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

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-about {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 18px;
}

.footer-socials a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 15px;
}

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

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links i {
    font-size: 12px;
    margin-right: 8px;
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 5px;
    font-size: 18px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-partners {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    align-items: center;
}

/* Partner Logo */
.footer-logo-partner {

    width: 100%;
    max-width: 120px;

    height: 80px;

    object-fit: contain;

    background: white;

    padding: 10px;

    border-radius: 10px;

    transition: 0.3s ease;
}

.footer-logo-partner:hover {

    transform: translateY(-5px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}



.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

/* Responsive */
@media (max-width: 1024px) {
    .navbar.sticky .nav-logo-mobile {
        display: block;
    }

    .navbar.sticky .nav-logo-desktop {
        display: none;
    }

    .hero-title {
        font-size: 60px;
    }

    .about .container {
        gap: 40px;
    }

    .trips-grid {
        grid-template-columns: 1fr;
    }


    .blog-grid {
        flex-direction: column;
        gap: 25px;
    }

    .blog-left,
    .blog-featured {
        width: 100%;
    }

    .blog-featured .blog-img {
        height: 320px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .navbar {
        top: 0;
        padding: 20px 0;
        background-color: transparent;
    }

    .navbar.sticky {
        background-color: rgba(0, 0, 0, 0.9);
        padding: 15px 0;
    }

    .nav-logo-mobile, .hamburger {
        display: block;
    }

    .nav-menu, .nav-socials, .nav-logo-desktop {
        display: none !important;
    }

    .hero-title {
        font-size: 45px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about .container {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        min-height: 400px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .trips-left {
        grid-template-columns: 1fr;
    }


    .blog-card {
        flex-direction: column;
        min-height: auto;
    }

    .blog-img,
    .blog-content {
        width: 100%;
    }

    .blog-img {
        height: 250px;
    }

    .blog-featured .blog-img {
        height: 300px;
    }

    .blog-content,
    .blog-featured .blog-content {
        padding: 25px;
    }

    .blog-featured .blog-title {
        font-size: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-partners {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

/* end home page css */





/* starting single trip css */

.text-primary {
    color: var(--primary);
}

.text-green {
    color: #16a34a;
}

.text-red {
    color: #dc2626;
}

.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid var(--border-color);
    z-index: 99999;
    transition: all 0.3s ease;
    display: none;
}

/* STICKY ACTIVE */
.sticky-nav.is-sticky {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: smoothNav 0.3s ease;
}

.nav-container {

    max-width: 1350px;

    margin: 0 auto;

    padding: 0 20px;

    overflow-x: auto;

    white-space: nowrap;

    scroll-behavior: smooth;

    -ms-overflow-style: none;

    scrollbar-width: none;
}

/* hide scrollbar */
.nav-container::-webkit-scrollbar {
    display: none;
}

.nav-links {

    display: inline-flex;

    gap: 25px;

    min-width: max-content;
}

.nav-links li {
    flex-shrink: 0;
}

.nav-links a {
    display: block;
    padding: 20px 0;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}



.hero-single {
    display: flex;
    min-height: 600px;
    background-color: whitesmoke;
}


.hero-left, .hero-right {
    flex: 1;
    position: relative;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px;
    z-index: 2;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    /* max-width: 600px; */
}

.hero-content .subtitle {
    color: var(--primary);
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.hero-content h1 {
    color: white;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    color: #cccccc;
    font-size: 18px;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #000, #111, rgba(192, 133, 82, 0.15));
    background-size: 200% 200%;
    animation: bgPulse 6s infinite alternate;
    z-index: 1;
}

.hero-right {
    display: flex;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeIn 1.5s ease-in;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bgPulse {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.main-layout {
    display: flex;
    gap: 60px;
    padding: 60px 20px;
    align-items: stretch;
}

.left-column {
    flex: 0 0 68%;
    max-width: 68%;
}

.right-column {
    flex: 0 0 calc(32% - 60px);
    width: calc(32% - 60px);
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: var(--black);
}

.text-content {
    padding: 0px 10px;
}

.highlight-list {
    list-style: none;
    margin-top: 24px;
}

.highlight-list li {
    margin-bottom: 12px;
    color: var(--text-main);
}

.highlight-list i {
    color: var(--primary);
    margin-right: 10px;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.fact-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.fact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(192, 133, 82, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 18px;
    transition: all 0.3s;
}

.fact-card:hover .fact-icon {
    background: var(--primary);
    color: white;
}

.fact-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 4px;
}

.fact-value {
    font-weight: 500;
    color: var(--black);
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.accordion-header {
    width: 100%;
    background: var(--bg-light);
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #f1f1f1;
}

.accordion-header .icon {
    color: var(--primary);
    transition: transform 0.3s;
}

.accordion-content {
    display: none;
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.accordion-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.day-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.day-meta span {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    background: var(--bg-light);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.day-meta i {
    color: var(--primary);
    margin-right: 8px;
}

.cost-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cost-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.cost-card h3 {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    font-size: 20px;
}

.icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.cost-card.includes .icon-wrap {

    color: #16a34a;
}

.cost-card.excludes .icon-wrap {

    color: #dc2626;
}

.cost-card ul {
    list-style: none;
}

.cost-card li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    color: var(--text-light);
}

.cost-card.includes li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #16a34a;
    font-size: 18px;
    flex-shrink: 0;
    padding: 0px 15px;

}

.cost-card.excludes li::before {
    content: "\f057";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #dc2626;
    font-size: 18px;
    flex-shrink: 0;
    padding: 0px 15px;

}

.cost-card.includes {
    background: #dcfce7;
}

.cost-card.excludes {
    background: #fee2e2;
}

.cost-card li i {
    margin-top: 4px;
    margin-right: 12px;
    font-size: 18px;
}

.map-container {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
    mix-blend-mode: multiply;
    transition: transform 0.7s;
}

.map-container:hover img {
    transform: scale(1.01);
}

.map-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    pointer-events: none;
}

.gallery-swiper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.gallery-swiper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    width: 46px !important;
    height: 46px !important;
    border-radius: 50%;
    background: var(--primary);
    color: var(--secondary) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--secondary);
    color: #fff !important;
    transform: scale(1.08);
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

.reviews-swiper {
    padding-bottom: 40px !important;
}

.review-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 14px;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 24px;
}


.reviewer {
    display: flex;
    align-items: center;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
}

.reviewer-info h4 {
    font-size: 16px;
    color: var(--black);
}

.reviewer-info span {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 1px;
}

.sticky-card {
    position: sticky;
    top: 100px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.price-header {
    text-align: center;
    margin-bottom: 24px;
}

.price-header .label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: var(--black);
}

.currency {
    font-size: 24px;
    font-weight: 600;
    margin-right: 2px;
    margin-bottom: 5px;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.per {
    font-size: 16px;
    color: var(--text-light);
    margin-left: 5px;
    margin-bottom: 8px;
}

.price-summary {
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    justify-content: space-between;
}

.summary-item i {
    width: 24px;
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary, .btn-secondary {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(192, 133, 82, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--black);
    color: white;
}

.btn-secondary:hover {
    background: #333;
    transform: translateY(-2px);
}

.guarantee {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-light);
}

.related-trips {
    padding: 60px 20px;
    border-top: 1px solid var(--border-color);
}

.section-title-border {
    border-left: 4px solid var(--primary);
    padding-left: 16px;
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--black);
}

.trips-grid {
    display: flex;
    gap: 24px;
}

.trip-card {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.trip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.trip-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.trip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

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

.trip-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.trip-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    z-index: 2;
}

.dynamic-tab {
    display: none;
}

.dynamic-tab.show-tab {
    display: block;
    animation: fadeTabIn 0.3s forwards;
}

@keyframes fadeTabIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .main-layout {
        flex-direction: column;
    }

    .left-column {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .right-column {
        flex: 0 0 100%;
        width: 100%;
    }

    .sticky-card {
        position: static;
        max-width: 500px;
        margin: 0 auto;
        box-shadow: none;
        border: 1px solid var(--border-color);
    }

    .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {

    .content-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
        color: var(--black);
    }

    .hero-single {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 40px 20px;
    }

    .hero-right {
        height: 300px;
    }

    .image-overlay {
        background: linear-gradient(to top, #000 0%, transparent 100%);
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trips-grid {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-swiper img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .hero-content h1 {
        font-size: 36px;
    }
}



/* inquiry modal css strating */
/* ========================= */
/* INQUIRY MODAL CSS */
/* ========================= */

.inquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

/* Overlay */
.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Modal Box */
.modal-content {
    position: relative;
    height: 670px;
    width: 95%;
    max-width: 550px;
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    z-index: 10;
    overflow: hidden;
    animation: modalFade 0.35s ease;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.18);
}

/* Header */
.modal-header {
    margin-bottom: 10px;
}

.modal-header h2 {

    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.modal-header p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f3f3f3;
    color: #111;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close-modal:hover {

    background: #d4a017;

    color: white;

    transform: rotate(90deg);
}

/* Form */
.inquiry-form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
}

/* ========================= */
/* FORM GROUP */
/* ========================= */

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Label */
.form-group label {

    font-size: 15px;

    font-weight: 600;

    color: #111;

    display: flex;
    align-items: center;
    gap: 5px;
}

/* Required Star */
.form-group label .required {

    color: #d4a017;

    font-size: 18px;

    line-height: 1;
}

/* Inputs */
.form-group input,
.form-group textarea {

    width: 100%;

    padding: 15px 18px;

    border: 1px solid #ddd;

    border-radius: 12px;

    outline: none;

    font-size: 15px;

    transition: 0.3s ease;

    background: #fafafa;
}

/* Focus */
.form-group input:focus,
.form-group textarea:focus {

    border-color: #d4a017;

    background: #fff;

    box-shadow:
        0 0 0 4px rgba(212, 160, 23, 0.12);
}

/* Placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #999;
}


/* Submit Button */
.submit-btn {

    width: 100%;

    padding: 16px;

    border: none;

    border-radius: 12px;

    background: #111;

    color: white;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}

.submit-btn:hover {

    background: #d4a017;

    transform: translateY(-2px);
}


/* Default: hide on large screens */
.inquiry-btn-overlay {
    display: none;
}


/* Animation */
@keyframes modalFade {

    from {

        opacity: 0;

        transform: translateY(30px) scale(0.95);
    }

    to {

        opacity: 1;

        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {

    .modal-content {

        width: 92%;

        padding: 28px;
    }

    .modal-header h2 {

        font-size: 26px;
    }

    /* FIXED BOTTOM BAR */
    .inquiry-btn-overlay {
        display: flex;
        justify-content: space-between;
        padding: 20px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    /* LEFT COLUMN (your existing button area) */
    /* .actions {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #111827;
    }

    .actions .btn-primary {
        width: 100%;
        height: 100%;
        border: none;
        background: transparent;
        color: #fff;
        font-size: 15px;
    } */

    /* RIGHT COLUMN (NEW DESIGN) */
    .contact-box {
        width: 50%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border-radius: 5px;
    }

    .contact-box span {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: black;
        color: #fff;
        font-size: 13px;
        font-weight: 600;
    }

    .contact-box .whatsapp-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #25D366;
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
    }

}

@media (max-width: 576px) {

    .modal-content {

        padding: 22px;
    }

    .modal-header h2 {

        font-size: 22px;
    }

    .form-group input,
    .form-group textarea {

        padding: 14px 16px;
    }

    .submit-btn {

        padding: 14px;
    }
}


/* inquiry modal css end */




/* BLOG PAGE */
.blog-page-section {
    padding: 80px 0;
    background: #f8f9fb;
}

.blog-page-section .container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* LEFT */
.blog-left {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* BLOG CARD */
.blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.blog-image {
    position: relative;
    height: 340px;
    overflow: hidden;
}

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

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

/* CATEGORY */
.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #f4b400;
    color: #111;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

/* CONTENT */
.blog-content {
    padding: 35px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.blog-meta span {
    color: #666;
    font-size: 14px;
}

.blog-meta i {
    color: #f4b400;
    margin-right: 6px;
}

.blog-content h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #111;
    transition: 0.3s ease;
}

.blog-card:hover h3 {
    color: #f4b400;
}

.blog-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
}

/* BUTTON */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #111;
    font-weight: 700;
    transition: 0.3s ease;
}

.read-more i {
    transition: 0.3s ease;
}

.read-more:hover {
    color: #f4b400;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* RIGHT */
.blog-right {
    width: 30%;
    position: sticky;
    top: 100px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .blog-page-section .container {
        flex-direction: column;
    }

    .blog-left,
    .blog-right {
        width: 100%;
    }

    .blog-right {
        position: static;
    }

    .blog-image {
        height: 280px;
    }

    .blog-content h3 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {

    .blog-page-section {
        padding: 60px 0;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-image {
        height: 220px;
    }

    .blog-content h3 {
        font-size: 22px;
    }

    .blog-content p {
        font-size: 15px;
    }
}

/* blog page css end  */







/* single blog page css start */



.single-blog-page {
    padding: 40px 0;
    background: #f8f9fb;
}

.single-blog-page .container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT SIDE */
.blog-detail-left {
    width: 70%;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin: 10px 0;
    color: #666;
    font-size: 14px;
}

.blog-meta i {
    color: #f4b400;
}

.blog-detail-left h1,
.blog-detail-left h2,
.blog-detail-left h3,
.blog-detail-left h4,
.blog-detail-left h5,
.blog-detail-left h6,

.overview h1,
.overview h2,
.overview h3,
.overview h4,
.overview h5,
.overview h6 {
    color: #111827;
    line-height: 1.3;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-detail-left h1, .overview h1 {
    font-size: 36px;
}

.blog-detail-left h2, .overview h2 {
    font-size: 28px;
}

.blog-detail-left h3,
.overview h3 {
    font-size: 26px;
}

.blog-detail-left h4,
.overview h4 {
    font-size: 22px;
}

.blog-detail-left h5,
.overview h5 {
    font-size: 20px;
}

.blog-detail-left h6,
.overview h6 {
    font-size: 18px;
}

/* ==========================================
   UNORDERED LIST
   Keep editor bullets
========================================== */

.blog-detail-left ul, .overview ul {
    list-style-type: disc;
    padding-left: 40px;
    margin: 20px 0;
}

/* ==========================================
   ORDERED LIST
========================================== */

.blog-detail-left ol, .overview ol {
    list-style-type: decimal;
    padding-left: 40px;
    margin: 20px 0;
}

.blog-detail-left li, .overview li {
    margin-bottom: 8px;
}

/* Nested lists */

.blog-detail-left ul ul, .overview ul ul {
    list-style-type: circle;
}

.blog-detail-left ul ul ul, .overview ul ul ul {
    list-style-type: square;
}

.blog-detail-left ol ol, .overview ol ol {
    list-style-type: lower-alpha;
}

.blog-detail-left ol ol ol, .overview ol ol ol {
    list-style-type: lower-roman;
}

/* ==========================================
   IMPORTANT
   Don't create custom bullets
========================================== */

.blog-detail-left ul li::before,
.blog-detail-left ol li::before, .overview ul li::before, .overview ol li::before {
    content: none !important;
}

/* ==========================================
   BOLD
========================================== */

.blog-detail-left strong,
.blog-detail-left b,
.overview strong, .overview b {
    font-weight: 700;
}

/* ==========================================
   ITALIC
========================================== */

.blog-detail-left em,
.blog-detail-left i, .overview em, .overview i {
    font-style: italic;
}

/* ==========================================
   UNDERLINE
========================================== */

.blog-detail-left u, .overview u {
    text-decoration: underline;
}

/* ==========================================
   LINKS
========================================== */

.blog-detail-left a, .overview a {
    color: var(--primary);
    text-decoration: underline;
}

.blog-detail-left a:hover, .overview a:hover {
    opacity: 0.8;
}

/* ==========================================
   IMAGES
========================================== */

.blog-detail-left img, .overview img {
    max-width: 100%;
    height: auto;
}

/*
   IMPORTANT:
   Don't force width, margin or alignment
   because editor may have saved them.
*/

.blog-detail-left img, .overview img {
    object-fit: contain;
}

/* ==========================================
   VIDEO
========================================== */

.blog-detail-left video, .overview video {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   IFRAME / EMBED
========================================== */

.blog-detail-left iframe, .overview iframe {
    max-width: 100%;
    border: none;
}

/* ==========================================
   BLOCKQUOTE
========================================== */

.blog-detail-left blockquote, .overview blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    border-left: 4px solid var(--primary);
    background: #f8f8f8;
}

/* ==========================================
   HORIZONTAL LINE
========================================== */

.blog-detail-left hr, .overview hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 25px 0;
}

/* ==========================================
   TABLE
========================================== */

.blog-detail-left table, .overview table {
    max-width: 100%;
    border-collapse: collapse;
}

.blog-detail-left th,
.blog-detail-left td, .overview th, .overview td {
    border: 1px solid #ddd;
    padding: 8px 12px;
}

/* ==========================================
   CODE
========================================== */

.blog-detail-left code, .overview code {
    font-family: monospace;
}

.blog-detail-left pre, .overview pre {
    max-width: 100%;
    overflow-x: auto;
}

/* ==========================================
   TEXT ALIGNMENT
========================================== */

/*
   These allow the alignment saved by
   TinyMCE/editor to work.
*/

.blog-detail-left [style*="text-align: left"], .overview [style*="text-align: left"] {
    text-align: left;
}

.blog-detail-left [style*="text-align: center"], .overview [style*="text-align: center"] {
    text-align: center;
}

.blog-detail-left [style*="text-align: right"], .overview [style*="text-align: right"] {
    text-align: right;
}

.blog-detail-left [style*="text-align: justify"], .overview [style*="text-align: justify"] {
    text-align: justify;
}


.blog-detail-left p, .overview p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}



/* LIST */
.blog-list {
    margin-top: 15px;
    padding-left: 0;
}

.blog-list li {
    list-style: none;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

/* RIGHT SIDE */
.blog-detail-right {
    width: 30%;
    position: sticky;
    top: 100px;
}



/* RESPONSIVE */
@media (max-width: 992px) {
    .single-blog-page .container {
        flex-direction: column;
    }

    .blog-detail-right {
        order: 1;
    }

    .blog-detail-left {
        order: 2;
    }

    .blog-detail-left,
    .blog-detail-right {
        width: 100%;
    }

    .blog-detail-right {
        position: static;
    }

    .blog-hero img {
        height: 300px;
    }

    .blog-detail-left h1, .overview h1 {
        font-size: 28px;
    }

    .blog-detail-left h2, .overview h2 {
        font-size: 24px;
    }

    .blog-detail-left h3, .overview h3 {
        font-size: 21px;
    }

    .blog-detail-left h4, .overview h4 {
        font-size: 19px;
    }

    .blog-detail-left ul,
    .blog-detail-left ol, .overview ul, .overview ol {
        padding-left: 30px;
    }

    .blog-detail-left img, .overview img {
        max-width: 100%;
        height: auto;
    }

    .blog-detail-left table, .overview table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 576px) {

    .single-blog-page {
        padding: 30px 0px;
    }

    /* IMAGE */
    .blog-hero img {
        height: 220px;
        border-radius: 15px;
    }

    /* META */
    .blog-meta {
        gap: 8px;
        font-size: 13px;
    }

    /* TITLE */
    .blog-detail-left h1, .overview h1 {
        font-size: 24px;
    }

    .blog-detail-left h2, .overview h2 {
        font-size: 21px;
    }

    .blog-detail-left h3, .overview h3 {
        font-size: 19px;
    }

    .blog-detail-left ul,
    .blog-detail-left ol, .overview ul, .overview ol {
        padding-left: 25px;
    }

    /* TEXT */
    .blog-detail-left p, .overview p {
        font-size: 15px;
        line-height: 1.8;
    }



}


/* related blog section start css */

.related-blog-section {
    padding: 80px 0;
    background: #fff;
}


.section-title h2 {
    font-size: 34px;
    color: #111;
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #f4b400;
    display: block;
    margin: 10px auto;
    border-radius: 10px;
}

.section-title span {
    color: #666;
    font-size: 15px;
}

/* GRID */
.related-blog-grid {
    display: flex;
    gap: 25px;
}

/* CARD */
.related-card {
    flex: 1;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

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

.related-card .img {
    height: 220px;
    overflow: hidden;
}

.related-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

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

/* CONTENT */
.related-card .content {
    padding: 20px;
}

.related-card .content span {
    font-size: 13px;
    color: #f4b400;
    font-weight: 600;
}

.related-card .content h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #111;
    line-height: 1.4;
}

.related-card .content a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    transition: 0.3s;
}

.related-card .content a:hover {
    color: #f4b400;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .related-blog-grid {
        flex-wrap: wrap;
    }

    .related-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .related-blog-section {
        padding: 60px 0px;
    }

    .related-card {
        flex: 1 1 100%;
    }

    .section-title h2 {
        font-size: 26px;
    }
}

/* related blog section end css */
/* single-blog page css end  */


/* contact us stickey card css start  */

/* CONTACT CARD */
/* CONTACT CARD */
.contact-card {
    background: #111;
    border-radius: 24px;
    padding: 30px 25px;
    position: sticky;
    top: 100px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-top: 4px solid #f4b400;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* PROFILE */
.contact-profile {
    text-align: center;
}

.profile-image {
    width: 90px;
    height: 90px;

    margin: 0 auto 15px;

    border-radius: 50%;
    overflow: hidden;

    border: 4px solid #f4b400;
}

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

.contact-profile h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-profile span {
    color: #f4b400;
    font-size: 14px;
    font-weight: 500;
}

/* INFO */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;

    background: rgba(255, 255, 255, 0.05);

    padding: 14px;
    border-radius: 14px;

    transition: 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);

    transform: translateY(-2px);
}

.contact-item i {
    width: 42px;
    height: 42px;
    min-width: 42px;

    border-radius: 50%;

    background: #f4b400;
    color: #111;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
}

.contact-item p {
    color: #aaa;
    font-size: 12px;
    margin-bottom: 3px;
}

.contact-item a {
    color: #fff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    word-break: break-word;
}

/* BUTTON */
.contact-btn {
    margin-top: 15px;
}

.contact-btn .btn-primary {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 13px;

    background: #f4b400;
    color: #111;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 700;
    font-size: 15px;

    transition: 0.3s ease;
}

.contact-btn .btn-primary:hover {
    background: #ffcc00;

    transform: translateY(-2px);
}

/* NOTE */
.contact-note {
    text-align: center;

    color: #bbb;

    font-size: 12px;

    margin-top: 12px;
}

.contact-note i {
    color: #f4b400;
    margin-right: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .contact-card {
        position: static;
        height: auto;
    }
}

@media (max-width: 576px) {

    .contact-card {
        padding: 25px 20px;
        border-radius: 18px;
    }

    .profile-image {
        width: 80px;
        height: 80px;
    }

    .contact-profile h3 {
        font-size: 20px;
    }

    .contact-profile span {
        font-size: 13px;
    }

    .contact-item {
        padding: 12px;
    }

    .contact-item i {
        width: 38px;
        height: 38px;
        min-width: 38px;

        font-size: 14px;
    }

    .contact-item a {
        font-size: 13px;
    }

    .contact-btn .btn-primary {
        padding: 12px;
        font-size: 14px;
    }
}


/* contact us stickey card css end  */





/* CONTACT PAGE */
/* SECTION */
.cp-section {
    padding: 100px 0;
    background: #f8f9fb;
}

/* CONTAINER */
.cp-container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 10px;
}

/* WRAPPER */
.cp-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* LEFT */
.cp-left {
    width: 45%;
}

/* RIGHT */
.cp-right {
    width: 55%;
}

/* TITLE */
.cp-title span {
    color: #f4b400;
    font-weight: 700;
    text-transform: uppercase;
}

.cp-title h2 {
    font-size: 40px;
    margin: 10px 0;
    color: #111;
}

.cp-title p {
    color: #666;
    line-height: 1.7;
}

/* INFO GRID */
.cp-info-grid {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* INFO CARD */
.cp-info-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.cp-info-card:hover {
    transform: translateY(-4px);
}

/* ICON */
.cp-info-card i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #111;
    color: #f4b400;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* FORM BOX */
.cp-form-box {
    background: #111;
    padding: 40px;
    border-radius: 20px;
}

/* HEADER */
.cp-form-header h3 {
    color: #fff;
    font-size: 28px;
}

.cp-form-header p {
    color: #bbb;
    margin-bottom: 20px;
}

/* FORM */
.cp-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* GROUP */
.cp-group label {
    color: #fff;
    font-weight: 600;
}

.req {
    color: #f4b400;
}

/* INPUT */
.cp-group input,
.cp-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    outline: none;
}

.cp-group textarea {
    min-height: 120px;
}

/* BUTTON */
.cp-btn {
    background: #f4b400;
    color: #111;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .cp-wrapper {
        flex-direction: column;
    }

    .cp-left,
    .cp-right {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cp-section {
        padding: 20px 0;
    }

    .cp-title {
        padding: 0 10px;
    }

    .cp-title h2 {
        font-size: 26px;
    }

    .cp-form-box {
        padding: 25px;
    }
}


/* about us page css start   */


/* ======================
   ABOUT SECTION
====================== */

.about-page {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image-2 img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 25px;
}

.section-subtitle {
    color: #16a34a;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: 48px;
    line-height: 1.2;
    margin: 20px 0;
}

.about-content-description {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 17px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature {
    background: #f8f8f8;
    padding: 18px;
    border-radius: 15px;
    font-weight: 500;
}

/* ======================
   COUNTER SECTION
====================== */

.counter-section {
    background: #0f172a;
    padding: 90px 0;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-card {
    text-align: center;
    color: #fff;
}

.counter-card h2 {
    font-size: 55px;
    color: #16a34a;
    margin-bottom: 10px;
}

.counter-card p {
    font-size: 18px;
}

/* ======================
   WHY CHOOSE US
====================== */

.why-us {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 45px;
    margin-top: 15px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: #fff;
    padding: 45px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    transition: .4s;
}

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

.why-card i {
    font-size: 50px;
    color: #16a34a;
    margin-bottom: 25px;
}

.why-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.why-card p {
    color: #666;
    line-height: 1.8;
}

/* ======================
   LAPTOP
====================== */

@media (max-width: 1200px) {

    .about-content h2 {
        font-size: 40px;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ======================
   TABLET
====================== */

@media (max-width: 992px) {

    .about-page {
        padding: 70px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-2 img {
        height: 450px;
    }

    .about-content {
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ======================
   MOBILE
====================== */

@media (max-width: 768px) {

    .about-content h2 {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .counter-card h2 {
        font-size: 42px;
    }

    .about-features,
    .counter-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

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

    .why-card {
        padding: 35px 25px;
    }
}

/* ======================
   SMALL MOBILE
====================== */

@media (max-width: 480px) {

    .about-page,
    .why-us,
    .counter-section {
        padding: 60px 0;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .counter-card h2 {
        font-size: 35px;
    }

    .counter-card p {
        font-size: 16px;
    }

    .why-card h3 {
        font-size: 22px;
    }

    .about-content p,
    .why-card p {
        font-size: 15px;
    }
}
