        :root {
            --primary-pink: #FF69B4;
            --dark-pink: #DB7093;
            --light-pink: #FFF0F5;
            --gold: #FFD700;
            --dark: #333;
            --light: #f8f9fa;
            --dark-mode-bg: #1a1a1a;
            --dark-mode-text: #f0f0f0;
        }
    .offer-m {
            background-color: white;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        body {
            font-family: 'Hind Siliguri', 'Siyam Rupali', sans-serif;
            transition: all 0.3s ease;
            position: relative;
        }
        
        /* বাংলা ফন্ট স্টাইল */
        .bangla-font {
            font-family: 'Hind Siliguri', sans-serif;
        }
        
        /* ডার্ক/লাইট মোড */
        body.dark-mode {
            background-color: var(--dark-mode-bg);
            color: var(--dark-mode-text);
        }
        
        .dark-mode .card,
        .dark-mode .modal-content,
        .dark-mode .form-control,
        .dark-mode .form-select {
            background-color: #2a2a2a;
            color: var(--dark-mode-text);
            border-color: #444;
        }
        
        .dark-mode .navbar,
        .dark-mode footer {
            background-color: #111 !important;
        }
        
        /* টপ বার */
        .top-bar {
            background-color: var(--dark-pink);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        /* ফিক্সড নেভবার */
        .fixed-navbar {
            position: sticky;
            color: white;
            top: 0;
            z-index: 1030;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        /* হিরো সেকশন */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-pink), var(--gold));
            color: white;
            position: relative;
            overflow: hidden;
            height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-animation {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            opacity: 0.1;
        }
        
        /* সেকশন হেডিং স্টাইল */
        .section-heading {
            position: relative;
            display: inline-block;
            margin-bottom: 40px;
        }
        
        .section-heading:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: var(--primary-pink);
            bottom: -10px;
            left: 25%;
            border-radius: 3px;
        }
        
        /* সার্ভিস ট্যাব */
        .nav-tabs .nav-link {
            border: none;
            color: white !important;
            font-weight: 600;
            padding: 10px 20px;
            position: relative;
        }
              /* সার্ভিস ট্যাব */
       
        
        .nav-tabs .nav-link.active {
            color: white !important;
            background: transparent;
        }
        
        .nav-link a {
            color: white !important;
        }
        
        .nav-tabs .nav-link.active:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            background: var(--primary-pink);
            bottom: 0;
            left: 0;
        }
        
        /* টাইম স্লট */
        .time-slot {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 10px;
            margin: 5px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .time-slot:hover {
            background-color: var(--light-pink);
        }
        
        .time-slot.selected {
            background-color: var(--primary-pink);
            color: white;
            border-color: var(--primary-pink);
        }
        
        /* প্যারালাক্স ইফেক্ট */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
        }
        
        /* টপ বাটন */
        .top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-pink);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 99;
            opacity: 0;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .top-btn.show {
            opacity: 1;
        }
        
        /* ভিডিও রিভিউ */
        .video-review {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* রেস্পন্সিভ টেবিল */
        .responsive-table {
            overflow-x: auto;
        }
        
        /* ট্রানজিশন */
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* মোবাইল ফ্রেন্ডলি */
        @media (max-width: 768px) {
            .hero-section {
                height: auto;
                padding: 100px 0;
            }
            
            .section-heading {
                font-size: 1.8rem;
            }
            
            .booking-section {
                flex-direction: column;
            }
        }
        
        
        
        



        .bg-pink {
            background-color: var(--primary-pink) !important;
        }
        
        .text-pink {
            color: var(--primary-pink) !important;
        }
        
        .btn-pink {
            background-color: var(--primary-pink);
            color: white;
        }
        
        .btn-pink:hover {
            background-color: var(--dark-pink);
            color: white;
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--primary-pink), var(--gold));
            color: white;
        }
        
        .service-card {
            transition: transform 0.3s;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .time-slot {
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 10px;
            margin: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .time-slot:hover {
            background-color: var(--light-pink);
        }
        
        .time-slot.selected {
            background-color: var(--primary-pink);
            color: white;
        }
        
        .mandala-bg {
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="%23FF69B4" stroke-width="0.5" fill="none"/></svg>') center/cover no-repeat;
            opacity: 0.05;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
        }
        
        
        
.image-slider-section {
    background-color: #FFF0F5;
}

.carousel {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carousel-inner {
    overflow: hidden;
    border-radius: 10px;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px; /* আপনি চাইলে এই মান পরিবর্তন করতে পারেন */
}

.carousel-caption {
    background-color: rgba(219, 112, 147, 0.7);
    padding: 15px;
    border-radius: 5px;
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #FF69B4;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #FF69B4;
    border-radius: 50%;
    padding: 15px;
    background-size: 60%;
}

/* মোবাইল রেস্পন্সিভ */
@media (max-width: 768px) {
    .carousel-caption {
        bottom: 10px;
    }
    
    .carousel-caption h5 {
        font-size: 16px;
    }
    
    .carousel-caption p {
        font-size: 14px;
        margin-bottom: 5px;
    }
}


.service-selector {
    border-radius: 10px;
    margin: 20px 0;
}

.service-selector select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #FF69B4;
}

.service-selector .input-group {
    height: 100%;
}

.service-selector #priceDisplay {
    background-color: white;
    font-weight: bold;
    text-align: center;
}

.service-selector #orderBtn {
    white-space: nowrap;
}

.combo-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  background: white;
  height: 100%;
}

.combo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.combo-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 20px;
  background-color: #FF69B4;
  color: white;
  font-weight: bold;
  z-index: 1;
}

.combo-badge.bg-success {
  background-color: #28a745 !important;
}

.combo-badge.bg-warning {
  background-color: #ffc107 !important;
  color: #212529 !important;
}

.combo-badge.bg-info {
  background-color: #17a2b8 !important;
}

.combo-features {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.combo-features li {
  margin-bottom: 8px;
}

.price-box {
  background: #FFF0F5;
  padding: 10px;
  border-radius: 5px;
}

.original-price {
  color: #6c757d;
  font-size: 14px;
}

.discount-price {
  color: #FF69B4;
  font-weight: bold;
  font-size: 20px;
  margin-left: 10px;
}

.btn-pink {
  background-color: #FF69B4;
  color: white;
  border: none;
  padding: 8px;
  border-radius: 5px;
}

.btn-pink:hover {
  background-color: #DB7093;
}

.text-pink {
  color: #FF69B4;
}

/* Mobile Horizontal Scroll */
.mobile-scroll-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 15px;
  margin-left: -5px;
  margin-right: -5px;
}

.mobile-scroll-wrapper {
  width: 30%;
  display: inline-flex;
  flex-wrap: nowrap;
  padding-left: 5px;
  padding-right: 5px;
}

.mobile-scroll-card {
  flex: 0 0 33.33%;
  padding: 0 5px;
  min-width: 110px;
}

/* Hide scrollbar */
.mobile-scroll-container::-webkit-scrollbar {
  display: none;
}

/* Category Card Styles */
.category-img-container {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid #FF69B4;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card h6 {
  margin-top: 10px;
  font-size: 13px;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}

/* Hover Effects */
.category-card:hover img {
  transform: scale(1.05);
}

.category-card:hover h6 {
  color: #FF69B4;
}

/* Desktop Styles */
@media (min-width: 768px) {
  .category-img-container {
    width: 120px;
    height: 120px;
    border-width: 3px;
  }
  
  .category-card h6 {
    font-size: 15px;
    margin-top: 15px;
  }
  
  /* 6 items per row */
  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
}

/* Dark Mode Support */
.dark-mode .category-card h6 {
  color: #f0f0f0;
}

.dark-mode .category-img-container {
  border-color: #FFD700;
}


.btn-pink {
    background-color: #FF69B4;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-pink:hover {
    background-color: #DB7093;
}

.text-pink {
    color: #FF69B4;
}

#switchLoginMethod {
    text-decoration: none;
    font-size: 14px;
}


/* গ্যালারি সেকশন স্টাইল */
#gallery {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-heading {
    position: relative;
    display: inline-block;
}

.text-gradient {
    background: linear-gradient(45deg, #3f51b5, #9c27b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3f51b5, #9c27b0);
    margin-top: 15px;
}

/* গ্যালারি কার্ড স্টাইল */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(63, 81, 181, 0.8);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.gallery-category {
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
}

.gallery-preview {
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.gallery-preview:hover {
    background: white;
    color: #3f51b5;
    transform: scale(1.1);
}

/* ফিল্টার বাটন স্টাইল */
.filter-buttons .btn {
    margin: 0 5px;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-buttons .btn.active, 
.filter-buttons .btn:hover {
    background: linear-gradient(45deg, #3f51b5, #9c27b0);
    color: white;
    border-color: transparent;
}

/* লোড মোর বাটন */
.btn-load-more {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    background: linear-gradient(45deg, #3f51b5, #9c27b0);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-load-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #9c27b0, #3f51b5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-load-more:hover::before {
    opacity: 1;
}















/* ফুটার স্টাইল */
.footer-area {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.footer-widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #f06595);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: #ff6b6b;
    padding-left: 5px;
}

.footer-links i {
    margin-right: 5px;
    color: #f06595;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin-bottom: 12px;
    color: #ddd;
}

.contact-info a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ff6b6b;
}

.contact-info i {
    color: #f06595;
    width: 20px;
}

.social-links {
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(45deg, #ff6b6b, #f06595);
    transform: translateY(-3px);
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    height: 45px;
}

.newsletter-form .form-control::placeholder {
    color: #ccc;
}

.newsletter-form .btn {
    background: linear-gradient(45deg, #ff6b6b, #f06595);
    border: none;
    width: 45px;
}

.text-gradient {
    background: linear-gradient(45deg, #ff6b6b, #f06595);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

/* ব্যাক টু টপ বাটন */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b6b, #f06595);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(240, 101, 149, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: #fff;
}

/* রেস্পন্সিভ স্টাইল */
@media (max-width: 991px) {
    .footer-widget {
        margin-bottom: 40px;
    }
    
    .widget-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .footer-bottom .text-md-start, 
    .footer-bottom .text-md-end {
        text-align: center !important;
    }
    
    .footer-bottom .text-md-end {
        margin-top: 10px;
    }
}


/* সকল সেবা সেকশন স্টাইল */
#all-services {
  background-color: var(--light-bg);
  transition: all 0.3s;
}

.dark-mode #all-services {
  background-color: var(--dark-bg);
}

.service-card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 10px;
}

.service-card .card {
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  overflow: hidden;
}

.service-card .card:hover {
  transform: translateY(-5px);
}

.service-card .card-img-top {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.dark-mode .service-card .card {
  background-color: var(--dark-card-bg);
  border-color: var(--dark-border);
}

.btn-favorite {
  color: var(--primary-pink);
  border: none;
  background: none;
}

.btn-favorite .fas {
  display: none;
}

.btn-favorite.active .far {
  display: none;
}

.btn-favorite.active .fas {
  display: inline-block;
  color: var(--primary-pink);
}


button.btn.btn-sm.btn-outline-pink.flex-grow-1:hover {
    background: #ff69b4;
}

/* লিস্ট ভিউ স্টাইল */
.list-view .service-card {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}

.list-view .service-card .card {
  flex-direction: row;
}

.list-view .service-card .card-img-top {
  width: 250px;
  height: auto;
}

.card-title{
    color: #ff69b4;
}




@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 auto;
        width: 31.333333%;
    }
    }







/* রেস্পন্সিভ স্টাইল */
@media (max-width: 768px) {
  .list-view .service-card .card {
    flex-direction: column;
  }
  
  .list-view .service-card .card-img-top {
    width: 100%;
    height: 200px;
  }
  
  .filter-section .col-md-4, 
  .filter-section .col-md-3 {
    margin-bottom: 10px;
  }
}


/* কাউন্টার অ্যানিমেশনের জন্য */
.counter {
    display: inline-block;
    min-width: 40px; /* দশমিক সংখ্যার জন্য স্পেস */
}




/* সেবা কার্ড স্টাইল */
.service-card {
    background-color: white;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-icon {
    color: #FF69B4;
}

.price-box {
    margin: 10px 0;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.discount-price {
    color: #FF69B4;
    font-weight: bold;
}