﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

html, body {
    overflow-x: hidden;
}
/*navbar*/
/* Navbar Base */
.navbar {
    background: white;
    padding: 12px 0;
}

/* Brand */
.navbar-brand {
    color: #702963 !important;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #702963 !important;
    font-size: 15px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    padding: 8px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

    /* Hover */
    .navbar-nav .nav-link:hover {
        color: #702963 !important;
    }

    /* Active */
    .navbar-nav .nav-link.active {
        color: #702963 !important;
        font-weight: 600;
    }

/* Toggler */
.navbar-toggler {
    border: none;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

/* Hamburger icon white */
.navbar-toggler-icon {
    color: #702963;
}
/*slider*/
/* Control overall height */
.carousel-img {
    position: relative;
    height: 500px; /* 👈 reduce height here */
    overflow: hidden;
}

    /* Image fit */
    .carousel-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Overlay layer */
.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(76, 29, 149, 0.65), rgba(30, 58, 138, 0.65) );
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
    color: #fff;
}

    /* Text styling */
    .carousel-overlay h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 10px;
        font-family: sans-serif;
        text-align: center;
    }

    .carousel-overlay p {
        font-size: 18px;
        max-width: 500px;
        text-align: center;
        margin: 0 auto; /* 👈 THIS is the key */
    }


/* Mobile responsive */
@media (max-width: 768px) {
    .carousel-img {
        height: 220px;
    }

    .carousel-overlay {
        padding: 20px;
    }

        .carousel-overlay h2 {
            font-size: 22px;
        }

        .carousel-overlay p {
            font-size: 14px;
        }
}

/*about*/
/* ABOUT SECTION */





.about-img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    border-radius: 4px;
}


.about-title {
    font-size: 42px;
    font-weight: 600;
    color: #702963;
    margin-bottom: 15px;
}


.about-line {
    width: 120px;
    height: 2px;
    background: #702963;
    margin-bottom: 20px;
}


.about-text {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}


.read-more {
    color: #ef4d55;
    font-weight: 500;
    text-decoration: none;
}


    .read-more:hover {
        text-decoration: underline;
    }


/* RESPONSIVE */
@media (max-width:768px) {
    .about-title {
        font-size: 32px;
        margin-top: 30px;
    }

    .about-img-wrapper::before {
        left: -10px;
        bottom: -10px;
    }
}
/*read more*/
.text-content {
    overflow: hidden;
    transition: max-height 0.4s ease;
}

    /* DEFAULT STATE – hidden */
    .text-content.collapsed {
        max-height: 5px; /* only few lines visible */
    }

    /* EXPANDED STATE */
    .text-content.expanded {
        max-height: 1000px; /* enough for full text */
    }

.read-more {
    color: #e84b5c;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin-top: 6px;
    text-decoration: none;
}

    .read-more:hover {
        text-decoration: underline;
    }

/* topbar */
.topbar {
    background: #70296d;
    color: #fff;
    padding: 6px 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-left a {
    margin-right: 10px;
    font-size: 16px;
    transition: 0.3s;
}

.topbar-left i {
    color: #ffd86b; /* spiritual golden touch */
}

.topbar-right span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* 🌐 Mobile Responsive */
@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
        gap: 6px;
        padding: 8px 10px;
        text-align: center;
    }

    .topbar-left,
    .topbar-right {
        width: 100%;
        justify-content: center;
    }

        .topbar-left a {
            margin: 0 8px;
        }
}

@media (max-width: 480px) {
    .topbar {
        font-size: 13px;
    }

    .topbar-left i {
        font-size: 15px;
    }
}

/*packages*/
.packages-title {
    color: #70296d;
    font-weight: 700;
    margin-bottom: 30px;
}

.package-card img {
    height: auto;
    object-fit: cover;
}

.book-btn {
    background-color: #70296d;
    color: #fff;
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 14px;
}

.price {
    color: #70296d;
    font-weight: 700;
    font-size: 18px;
}
/*footer*/
.footer {
    background: #70296d;
    color: white;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

    .footer-section ul li {
        margin-bottom: 8px;
    }

        .footer-section ul li a {
            color: #bbb;
            text-decoration: none;
        }

            .footer-section ul li a:hover {
                color: #fff;
            }

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
/*testimonials*/
.video-testimonials {
    padding: 60px 20px;
    background: #883d6d !important;
}

.video-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.testimonial-arrows .t-btn {
    background: white;
    color: #883d6d;
    border: none;
    padding: 8px 14px;
    margin-left: 5px;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

    .testimonial-arrows .t-btn:hover {
        background: white;
        color: #883d6d;
    }



.navbar-toggler {
    border: 1px solid #702963 !important;
}

#backToTop {
    display: none; /* initially hidden */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    width: 50px; /* equal width & height for circle */
    height: 50px;
    font-size: 24px;
    border: none;
    outline: none;
    background-color: #5b3cc4;
    color: white;
    cursor: pointer;
    border-radius: 50%; /* makes it fully circular */
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: background-color 0.3s, transform 0.3s;
    display: flex; /* center arrow */
    justify-content: center;
    align-items: center;
}

    #backToTop:hover {
        background-color: #3a5bdc;
        transform: scale(1.1);
    }

.more-text {
    display: none;
}

.read {
    color: #70296d;
    cursor: pointer;
    font-weight: 600;
}
/*banner*/
.banner-section {
    position: relative;
    height: 400px;
    background: url('img/bg.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}


    .banner-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0,0,0,0.65), rgba(0,0,0,0.35));
    }


.banner-content {
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
}


    .banner-content h1 {
        font-size: 36px;
        margin-bottom: 10px;
        text-align: center;
    }


.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}


    .breadcrumbs a {
        color: #ffd86b;
        text-decoration: none;
    }


    .breadcrumbs span {
        color: #fff;
    }


@media (max-width: 768px) {
    .banner-section {
        height: 260px;
    }

    .banner-content h1 {
        font-size: 26px;
    }
}

/*contact*/
.contact-section {
    background: #fff;
    position: relative;
}

.contact-title {
    font-weight: 700;
    color: #702963;
}

.contact-item h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: #702963;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-form .form-control {
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
}

.btn-send {
    border: 2px solid #702963;
    color: #702963;
    padding: 10px 30px;
    border-radius: 30px;
    background: transparent;
    transition: 0.3s;
}

    .btn-send:hover {
        background: #702963;
        color: #fff;
    }

/* ===== Navbar Dropdown Styling ===== */

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 8px 0;
    margin-top: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

    .navbar .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

/* Dropdown items */
.navbar .dropdown-item {
    padding: 8px 16px;
    font-weight: 500;
    color: #702963 !important;
    transition: 0.3s ease;
}


    .navbar .dropdown-item:focus,
    .navbar .dropdown-item:active {
        background-color: transparent !important;
        color: #702963 !important;
        outline: none;
        box-shadow: none;
    }
/* Hover effect for desktop */
@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: block;
    }
}

/* Nav link style */
.navbar .nav-link {
    font-weight: 600;
    position: relative;
    color: #72348f;
    transition: 0.3s ease;
}

    .navbar .nav-link:hover {
        color: white;
    }

.numo-blog-section {
    padding: 60px 20px;
}

/* ===== Section Title ===== */

.numo-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.numo-title {
    font-size: 36px;
    font-weight: 700;
    color: #883d6d; /* Requested Color */
    margin-bottom: 10px;
}

    .numo-title::after {
        content: "";
        width: 70px;
        height: 3px;
        background: #883d6d;
        display: block;
        margin: 12px auto 0;
        border-radius: 10px;
    }

.numo-subtitle {
    font-size: 16px;
    color: #666;
}

/* ===== Blog Grid ===== */

.numo-blog-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* ===== Blog Card ===== */

.numo-blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

    .numo-blog-card:hover {
        transform: translateY(-8px);
    }

.numo-blog-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.4s;
}

.numo-blog-card:hover .numo-blog-img img {
    transform: scale(1.08);
}

.numo-blog-content {
    padding: 20px;
}

.numo-blog-tag {
    font-size: 13px;
    font-weight: 600;
    color: #883d6d;
}

.numo-blog-content h3 {
    margin: 10px 0;
    font-size: 20px;
}

.numo-blog-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.numo-read-more {
    text-decoration: none;
    font-weight: 600;
    color: #883d6d;
    display: inline-block;
    margin-top: 10px;
    transition: 0.3s;
}

    .numo-read-more:hover {
        color: #000;
    }

/* ===== Tablet ===== */

@media (max-width:992px) {
    .numo-blog-container {
        grid-template-columns: repeat(2,1fr);
    }
}

/* ===== Mobile ===== */

@media (max-width:768px) {
    .numo-blog-container {
        grid-template-columns: 1fr;
    }

    .numo-title {
        font-size: 26px;
    }

    .numo-blog-img img {
        height: 180px;
    }
}

.image-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .image-card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .image-card img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .image-card:hover img {
        transform: scale(1.1);
    }

    .image-card .caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.5);
        color: #fff;
        padding: 10px;
        text-align: center;
        font-size: 1rem;
        font-weight: bold;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .image-card:hover .caption {
        opacity: 1;
    }

@media (max-width: 600px) {
    .image-section {
        padding: 10px;
        gap: 10px;
    }

    .image-card .caption {
        font-size: 0.9rem;
        padding: 8px;
    }
}

.image-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 0 20px;
}

.image-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .image-card:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .image-card iframe {
        width: 100%;
        height: 100%;
        display: block;
        border: none;
    }

@media (max-width: 600px) {
    .section-title {
        font-size: 1.5rem;
    }
}

.testimonials-section {
    padding: 60px 5%;
    position: relative;
}

/* Container slider banano holo */
.testimonial-container {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap; /* IMPORTANT */
    overflow-x: auto; /* horizontal scroll */
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}

    .testimonial-container::-webkit-scrollbar {
        display: none; /* Chrome */
    }

.testimonial-card {
    background: #fff;
    min-width: 550px; /* width fix */
    max-width: 550px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
    flex-shrink: 0; /* shrink hote dibe na */
}

    .testimonial-card:hover {
        transform: translateY(-5px);
    }

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.more-text {
    display: none;
}

.read-toggle {
    display: inline-block;
    margin-top: 10px;
    color: #883d6d;
    font-weight: 600;
    cursor: pointer;
}

.testimonial-user {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

    .testimonial-user img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 12px;
    }

    .testimonial-user h4 {
        font-size: 14px;
        color: #883d6d;
    }
/* ===== MOBILE HEIGHT REDUCE ===== */
@media (max-width: 768px) {

    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
        padding: 15px; /* আগে 25px ছিল */
    }

    .testimonial-text {
        font-size: 13px; /* text ছোট */
        line-height: 1.5;
    }

    .testimonial-user {
        margin-top: 12px;
    }

        .testimonial-user img {
            width: 40px;
            height: 40px;
        }

    .read-toggle {
        margin-top: 6px;
        font-size: 13px;
    }
}
/* Portfolio Section */

.portfolio {
    padding: 60px 20px;
    text-align: center;
}

    .portfolio h2 {
        font-size: 36px;
        color: #70296d;
    }

.portfolio-line {
    width: 80px;
    height: 3px;
    background: #70296d;
    margin: 10px auto 40px;
}

/* Wrapper */

.portfolio-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Slider container */

.portfolio-container {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* smooth swipe for mobile */
}

    /* Hide scrollbar */

    .portfolio-container::-webkit-scrollbar {
        display: none;
    }

.portfolio-container {
    scrollbar-width: none;
}

/* Items */

.portfolio-item {
    min-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: center;
}

    .portfolio-item img {
        width: 100%;
        height: 300px;
        object-fit: contain;
    }

    .portfolio-item p {
        margin-top: 15px;
        font-size: 18px;
    }

/* Navigation buttons */

.nav-btn {
    background: #444;
    color: #fff;
    border: none;
    font-size: 24px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
}

    .nav-btn.left {
        margin-right: 15px;
    }

    .nav-btn.right {
        margin-left: 15px;
    }

/* Mobile */

@media (max-width:768px) {

    .portfolio-item {
        min-width: 85%;
    }

        .portfolio-item img {
            height: auto;
            object-fit: contain;
        }

    .nav-btn {
        display: block;
        width: 30px;
        height: 30px;
        border-radius: 4px;
    }
}

.navbar-collapse {
    transition: height 0.2s ease !important;
}

.navbar-collapse {
    transform: translateZ(0);
    will-change: height;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba%2870,41,109,0.9%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Smooth mobile collapse */
.navbar-collapse {
    transition: height 0.25s ease !important;
    will-change: height;
}

/* Hardware acceleration */
.navbar {
    transform: translateZ(0);
}

/* Better mobile performance */
@media (max-width:991px) {

    .navbar-collapse {
        background: white;
        padding: 10px 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px;
    }
}
/* Add in your CSS */
.navbar-collapse {
    z-index: 9999;
    overflow-y: auto; /* scroll if content too tall */
}
.navbar-collapse {
    transition: height 0.3s ease;
}