:root {
    --primary-color: #236b53;
    --secondary-color: #f97415;
    --text-color: #333333;
    --orange: #ff5722;
}

body {
    font-family: "Poppins", sans-serif;
}

.container-fluid {
    padding-left: 8%;
    padding-right: 8%;
}

.text-warning {
    color: var(--secondary-color) !important;
}

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

.btn-primary {
    color: #ffffff;

}

.btn-primary {
    --bs-btn-color: #fff !important;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
}

.bg-primary {
    background-color: var(--primary-color) !important;

}

.btn-outline-primary:hover {
    color: #ffffff !important;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color) !important;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1111;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cursor-pointer {
    cursor: pointer;
}

.navbar-brand img {
    height: 80px;
    width: auto;
}

.nav-link {
    font-weight: 400;
    font-size: 18px;
    color: var(--text-color) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
    font-weight: 500;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 500;
}

@media (min-width: 992px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .dropdown>.dropdown-toggle:active {
        pointer-events: none;
    }
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.dropdown-item {
    font-weight: 500;
    padding: 0.5rem 1.5rem;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: #fff;
}

.profile-section .dropdown-toggle {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}

.profile-section img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.profile-section .text-css {
    font-weight: 500;
    font-size: 14px;
    margin-right: 8px;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
    height: 100%;
}

/* Use background images on carousel-item for proper cover/fill */
.hero .carousel-item {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    /* For absolute overlay positioning */
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    /* Optional: padding for mobile */
}

.hero h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
}

/* Optional: Make container full-width for better large-screen coverage */
.hero .overlay.container {
    max-width: 100%;
    width: 100%;
}

/* ---------- SEARCH BAR (icon inside) ---------- */
.search-wrapper {
    position: relative;
    max-width: 600px;
    width: 100%;
}

.search-wrapper-list {
    position: relative;
    max-width: 100%;

    width: 100%;
}

.search-wrapper .form-control {
    padding-right: 4.5rem;
    height: 56px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.search-wrapper .form-control:focus {
    border: 2px solid var(--secondary-color);
    box-shadow: none;
}

.select-wrapper .form-select {
    padding-right: 4.5rem;
    height: 56px;
    border-radius: 50px;
}

.search-wrapper .btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats .col {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.stats small {
    display: flex;
    flex-wrap: nowrap;
    font-size: 1rem;
    color: #ddd;
}

/* ---------- CAROUSEL INDICATORS (pill + circles) ---------- */
.carousel-indicators {
    bottom: 30px;
    gap: 8px;
    justify-content: center;
}

.carousel-indicators [data-bs-target] {
    width: 20px;
    border-radius: 50px;
    background: #fff;
    opacity: 0.5;
    margin: 0;
    transition: width 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.carousel-indicators .active {
    background: var(--secondary-color);
    opacity: 1;
    width: 50px;
    border-radius: 41px;
}

/* ---------- CUSTOM PREV/NEXT ICONS (black arrows) ---------- */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    font-size: 1.4rem;
}

.carousel-control-prev-icon::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f053";
}

.carousel-control-next-icon::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f054";
}

/* ---------- DESTINATION CARD ---------- */
.destination-card {
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
    align-items: center;
    padding: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none !important;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* ---------- FLOATING BTNS ---------- */
/* .floating-btn {
    position: fixed;
    bottom: 100px;
    right: 50px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 30px;
} */

/* Plan your treks */
.plan-treks-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

/* ---------- FEATURED TREKS CAROUSEL ---------- */

.popular-destinations-h5 {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;

    line-height: 28px;
    letter-spacing: 0%;
}

.popular-destinations-h2 {
    font-size: 44px;
    line-height: 50px;
}

.featured-treks {
    padding: 4rem 0;
}

.featured-treks .popular {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-treks h2 {
    font-weight: 700;
    color: #222;
}

.featured-treks .subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Trek Card */
.trek-card {
    background: #fff;
    /* border-radius: 16px; */
    /* overflow: hidden; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.trek-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.trek-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.trek-card .heart-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.trek-card .heart-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.border-line {
    width: 100%;
    height: 1px;
    background-color: #e3e3e3;
    margin: 1rem 0;
}

.trek-card .heart-btn i {
    color: #999;
    font-size: 1.1rem;
}

.trek-card .heart-btn.active i {
    color: #e74c3c;
}

.trek-card .card-body {
    padding: 1.25rem;
}

.trek-card .location {
    font-size: 0.875rem;
    /* color: var(--text-muted); */
    margin-bottom: 0.5rem;
}

.trek-card .location i {
    color: #fff !important;
    margin-right: 4px;
}

.trek-card h5 {
    font-weight: 700;

    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: #ffffff;
}

.trek-title {
    margin-top: -90px;
    z-index: 9999;
    color: #ddd !important;
}

.trek-card .info {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #555;
    margin-bottom: 0.75rem;
}

.trek-card .info i {
    color: var(--primary-color);
}

.trek-card .rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.trek-card .rating i {
    color: #f39c12;
}

.trek-card .price-from {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trek-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.trek-card .btn-explore {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.trek-card .btn-explore:hover {
    background-color: #1a5442;
}

.owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
    gap: 1rem;
    z-index: 100;
}

.owl-nav button {
    width: 44px !important;
    height: 44px !important;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.4rem !important;
    color: #aaa !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    border: none !important;
}

.owl-nav button:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    transform: scale(1.1);
}

.owl-nav button span {
    line-height: 1;
}

.owl-nav .owl-next {
    margin-right: -60px;
}

.owl-nav .owl-next:active {
    background-color: var(--primary-color);
}

.owl-dots {
    margin-top: 1.5rem;
}

.owl-dot span {
    background: #ddd;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.owl-dot.active span {
    background: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .owl-nav .owl-prev {
        margin-left: -50px;
    }

    .owl-nav .owl-next {
        margin-right: -50px;
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .navbar-nav {
        margin-top: 1rem;
    }

    .profile-section {
        margin-top: 1rem;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

.testimonial-card {
    position: relative;
    /* background: #fff; */
    /* border-radius: 16px; */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.testimonial-text {
    font-weight: 500;
    font-style: Italic;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 1%;
    color: #2f2a2a;

    line-height: 1.7;
    min-height: 120px;
}

.trek-name {
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;
}

.avatar img {
    object-fit: cover;
}

.stars i {
    color: var(--secondary-color);
    width: 32px;
    height: 32px;
}

.video-testimonial-card {
    margin: 0 auto;
    transition: all 0.3s ease;
}

.video-testimonial-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important; */
}

.video-placeholder {
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(35, 107, 83, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    min-height: 100px;
}

.play-button {
    width: 60px;
    height: 60px;
}

.play-button i {
    font-size: 1.8rem;
}

.blog-title {
    color: var(--primary-color) !important;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px !important;
    line-height: 100%;
    letter-spacing: 0%;
}

.blog-title:hover {
    color: var(--secondary-color) !important;
}

.footer-title-line {
    width: 60px;
    height: 2px;
    background: #ffffff;
    opacity: 1;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffffff;
}

.footer-copyright {
    font-weight: 400;
    font-style: Medium;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: bottom;
}

.footer ul li a:hover {
    color: var(--secondary-color) !important;
}

.trek-card:hover,
.testimonial-card:hover,
.video-testimonial-card:hover,
.destination-card:hover,
.blog-card:hover,
.card-hover-lift:hover {
    transform: scale(1) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22) !important;
    z-index: 10;
}

.testimonial-card .testimonial-text {
    max-height: 100px;
    overflow-y: auto;
    margin: 0;
    padding-right: 10px;
    /* Space for scrollbar */
    font-size: 16px;
    /* Adjust as needed */
    line-height: 1.5;
    /* Adjust for readability */
}

/* Optional: Custom scrollbar styling for better aesthetics */
.testimonial-card .testimonial-text::-webkit-scrollbar {
    width: 8px;
}

.testimonial-card .testimonial-text::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.testimonial-card .testimonial-text::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.testimonial-card .testimonial-text::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.social-icon {
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.3s ease;
    opacity: 1;

    border-radius: 20px;
    border: 1px solid #fff;
    padding: 3px;
}

/* Floating Buttons - Enhanced */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 50px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 30px;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    pointer-events: none;
}

.floating-btn.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.float-item {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.float-item:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    color: white;
}

.float-item.whatsapp {
    background: #25d366;
}

.float-item.chat {
    background: var(--orange);
}

.float-item.scroll-top {
    background: var(--primary-color);
}

/* Scroll to Top Arrow Animation */
#scrollTop i {
    animation: bounceUp 2s infinite;
}

@keyframes bounceUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ==================== CHAT WIDGET ==================== */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 380px;
    height: 520px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: scale(0.7) translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.4);
    transform-origin: bottom right;
}

.chat-widget.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color), #1a5442);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.avatar-online {
    position: relative;
}

.avatar-online img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.online-dot {
    position: absolute;
    bottom: 8px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #4ade80;
    border-radius: 50%;
    border: 3px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
    }
}

.chat-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-body::-webkit-scrollbar {
    width: 6px;
}

.chat-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.msg {
    display: flex;
    flex-direction: column;
    max-width: 80%;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.msg.received {
    align-self: flex-start;
}

.msg.sent {
    align-self: flex-end;
}

.msg p {
    padding: 0.8rem 1.2rem;
    border-radius: 18px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.msg.received p {
    background: white;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #333;
}

.msg.sent p {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 8px rgba(45, 122, 95, 0.3);
}

.msg small {
    font-size: 0.7rem;
    color: #888;
    margin-top: 4px;
    padding: 0 8px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.8rem 1.2rem;
    background: white;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: fit-content;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #999;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }
}

.chat-footer {
    padding: 1rem;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    border-radius: 0 0 20px 20px;
}

.chat-footer input {
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 0.75rem 1rem;
    flex: 1;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.chat-footer input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.send-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    cursor: pointer;
}

.send-btn:hover:not(:disabled) {
    background: var(--secondary-color);
    transform: rotate(20deg) scale(1.1);
}

.send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.chat-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 480px) {
    .chat-widget {
        width: 94%;
        right: 3%;
        left: 3%;
        height: 80vh;
    }

    .floating-btn {
        right: 15px;
    }
}

.hero-section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url("https://images.unsplash.com/photo-1519781915783-6e10ae9e2b71?q=80&w=2070&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    text-align: left;
    font-weight: 700;
    font-style: Bold;
    font-size: 74px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.section-title {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 44px;
    color: #333333;
    line-height: 50px;
    letter-spacing: 0%;
    text-align: center;
}

.section-subtitle {
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    color: #333333;
    line-height: 41px;
    letter-spacing: 0%;
    text-align: center;
}

.story-img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.story-img:hover {
    transform: scale(1.03);
}

.story-section {
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 34px;
    letter-spacing: 0%;
    text-align: justify;
}

.value-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e3e3e3;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 2rem;
    color: var(--primary-color);

    margin-bottom: 1rem;
}

.value-icon i {
    background-color: color-mix(in srgb, var(--primary-color) 10%, transparent);
    border-radius: 50px;
    padding: 19px;
}

.stats-section {
    background: #181d29;
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Stat Number */
.stat-number {
    font-weight: 700;
    font-size: 48px;
    /* Large and bold */
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase !important;
}

/* Stat Label */
.stat-label {
    font-weight: 500;
    font-size: 20px;
    /* Better readable size */
    opacity: 0.85;
    line-height: 1.4;
    text-transform: uppercase !important;
}

/* Achievement cards orange accent */
.achievement-icon-card {
    background-color: var(--secondary-color) !important;
    border: 1px solid #e3e3e3;
}

/* Achievement cards orange accent */
.achievement-icon-card img {
    color: #fff !important;
}

.achievement-icon-card img {
    background-color: var(--orange);
    padding: 19px;
    border-radius: 32px;
    color: #fff !important;
}

.achievement-icon-card .date {
    background-color: #fff !important;
    width: fit-content;
    padding: 5px 20px;
    opacity: 1;
    gap: 10px;
    border-radius: 47px;
    /* padding: 10px 10px; */
}

.mission-divider {
    border: 1px solid #e3e3e3;
    margin: 2rem 0;
    width: 100%;
}

/* Mission blockquote */
/* .text-primary {
    color: var(--secondary-color) !important;
} */

.hero-section {
    padding: 100px 0 60px;
}

/* FAQ Section Styling */
.faq-section {
    background: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
}

/* Accordion Items */
.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Accordion Button */
.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.3rem;
    background: #fff !important;
    color: #222;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
    background: none !important;
}

/* Icon (arrow) styling */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* Accordion Body */
.accordion-body {
    font-size: 1rem;
    padding: 1.3rem;
    color: #555;
    line-height: 1.6;
}

/* Contact Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    border: 1px solid #e3e3e3;
}

.contact-form-card label {
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;

    line-height: 100%;
    letter-spacing: 0%;
}

/* Contact Info Card */
.contact-info-card {
    background: var(--primary-color);
    /* Deep green */
    color: #fff;
    border-radius: 8px;
    padding: 2.5rem;
    min-height: 100%;
    border: 1px solid #e3e3e3;
}

.contact-info-card h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.contact-info-card a:hover {
    color: white;
}

.contact-info-card i {
    font-size: 1.3rem;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    padding: auto;
    text-align: center;
    font-size: 20px;
    line-height: 40px;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: white;
    color: var(--primary-color);
}

/* Send Button */
.btn-send {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-send:hover {
    background: #236b53;
    color: white;
}

/* Map Section */
.map-container img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Default border & padding */
.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 1px solid var(--primary-color);
    padding: 10px;
}

/* Focus state */
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
}

/* Placeholder color for inputs and textarea only */
.contact-form-card .form-control::placeholder {
    color: var(--primary-color);
}

.team-card {
    background-color: #fff;
    border: 1.93px solid #e3e3e3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
}

.card-img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.team-card:hover .card-img-wrapper img {
    transform: scale(1.1);
    opacity: 0.8;
}

.team-social-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-social-icons {
    opacity: 1;
}

.team-social-icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    text-align: center;

    line-height: 50px;
    margin: 0 8px;
    font-size: 1.4rem;
    transition: all 0.3s;
}

.team-social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.team-card-body {
    padding: 25px;
    text-align: center;
}

.member-name {
    font-weight: 600;
    font-size: 23.11px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #222222;
    margin-bottom: 1rem;
}

.member-role {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 23.11px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--primary-color);
}

.member-desc {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
    justify-content: center;
}

.team-contact-info {
    font-size: 0.9rem;
    color: #555;
    text-align: left;
}

.team-contact-info a {
    color: #333;
    text-decoration: none;
}

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

.team-contact-info i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* === FIXED "Back to Blogs" === */
.back-to-blogs-fixed {
    position: fixed;
    top: 150px;
    /* distance from top of viewport */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    /* above navbar & everything else */
    backdrop-filter: blur(5px);
}

/* === STICKY "Similar Blogs" sidebar === */
.similar-blogs-sticky {
    position: sticky;
    top: 100px;
    /* sticks 100px from top when scrolling */
    align-self: start;
    /* important for sticky to work inside flex/grid */
    z-index: 10;
}

/* Optional: add some top margin to main content so fixed button doesn't overlap */
.blog-header {
    padding-top: 80px;
    /* space for fixed back button */
}

/* Existing styles you already had */
.blog-title {
    font-weight: 700;
    font-size: 40px;
}

.blog-content {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.similar-blog-title {
    font-weight: 600;
    font-size: 24px;
}

/* Active page */
.pagination-custom .active>.page-link,
.pagination-custom .page-link.active {
    z-index: 3;
    color: #ffffff !important;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Normal page link */
.pagination-custom .page-link {
    color: var(--primary-color);
    text-decoration: none;
}

/* Hover state */
.pagination-custom .page-link:hover {
    color: #ffffff !important;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Focus state (keyboard accessibility) */
.pagination-custom .page-link:focus {
    color: #ffffff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.notification {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    color: #fff;
    min-width: 250px;
    max-width: 350px;
    font-family: Arial, sans-serif;
    overflow: hidden;
    animation: slideIn 0.3s ease-out forwards;
}

.notification-success {
    background-color: #28a745;
}

.notification-error {
    background-color: #dc3545;
}

.notification-warning {
    background-color: #ffc107;
    color: #212529;
}

.notification-info {
    background-color: var(--primary-color);
}

/* Close button */
.notification .close-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.notification .close-btn:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Progress Bar */
.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    transform-origin: left;
    animation: progress linear forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes progress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}
