:root {
    --primary-color: #e80881;
    --primary-fade:#e83d98;
    --secondary-color: #2c3e50;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bg_primary {
    background: var(--primary-color);
}
.text_primary{
    color: var(--primary-color);
}

.btn_outline_primary {
  color:  var(--primary-color);
  border-color: var(--primary-color);
}

.btn_outline_primary:hover {
  color: #fff;
  background-color:  var(--primary-color);;
  border-color:  var(--primary-color);;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Navbar - Transparent Initially */
.navbar {
    padding: .5 rem;
    background: transparent;
    box-shadow: none;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--secondary-color);
    text-shadow: none;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Navbar toggler for mobile */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Login Button */
.login-btn {
    background: var(--primary-color);
    color: white !important;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 5px 30px;
    font-weight: 600;
    font-size: .6 rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    text-shadow: none !important;
    margin-left: 1rem;
}

.login-btn:hover {
    background: var(--primary-fade);
    border-color: var(--primary-fade);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    color: white !important;
}

/* Carousel Fade Effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}




/* Hero Section - Full Screen Slider */

.hero-bg-carousel,
.hero-bg-carousel .carousel-inner,
.hero-bg-carousel .carousel-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-carousel .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Static content sits on top */
.hero-static-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: inherit;
    padding: 0 15px;
}

/* Prevent black flash during carousel-fade transition */
#heroCarousel .carousel-item {
    transition: opacity 1s ease !important;
}

#heroCarousel .carousel-item.active,
#heroCarousel .carousel-item-next,
#heroCarousel .carousel-item-prev {
    display: block;
}

#heroCarousel .carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease !important;
    transform: none !important;
}

#heroCarousel .carousel-fade .carousel-item.active {
    opacity: 1;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mini .carousel-item {
    height: 500px;
}

.mini .carousel-item::before {
    background: rgba(0, 0, 0, 0);
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 90%;
    max-width: 1200px;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 3;
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators {
    z-index: 3;
    margin-bottom: 50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}






/* Search Bar in Hero */
.hero-search-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
    z-index: 3;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.1rem;
}

.hero-search-bar input {
    border: none;
    background: transparent;
    padding: 15px 15px 15px 50px;
    font-size: 1rem;
    color: #333;
    width: 100%;
}

.hero-search-bar input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.hero-search-bar input::placeholder {
    color: #999;
}

.search-divider {
    width: 1px;
    background: #ddd;
    height: 50px;
}

.search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 40px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--primary-fade);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.search-btn i {
    margin-left: 8px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Cards */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 350px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: white;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Package Cards */
.package-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background: white;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.package-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-body {
    padding: 1.5rem;
}

.package-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.package-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.package-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Stats Section */
.stats-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Curated Section */
.curated-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.curated-carousel-img {
    object-fit: cover;
    border-radius: 15px;
}

.curated-carousel-wrapper .carousel-indicators {
    margin-bottom: 15px;
}

.curated-carousel-wrapper .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
}

.curated-carousel-wrapper .carousel-indicators button.active {
    background-color: var(--primary-color);
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    height: 100%;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.testimonial-role {
    color: #888;
    font-size: 0.9rem;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: var(--light-bg);
    color: black;
    padding: 60px 0 20px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    background: #f8f2f3;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: black;
    padding:20px;
}
.copyright p{
    margin-bottom: 0px !important;
}
/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-fade);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.text-primary{
    color: var(--primary-color) !important;
}



/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
    
    .carousel-item {
        min-height: 500px;
    }
    
    .hero-section {
        min-height: 500px;
    }
    
    .carousel-indicators {
        margin-bottom: 20px;
    }
    
    .hero-search-bar {
        border-radius: 20px;
        padding: 20px 15px;
    }
    
    .search-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .hero-search-bar input {
        padding: 12px 12px 12px 45px;
        font-size: 0.9rem;
    }
    
    .search-input-wrapper i {
        left: 15px;
        font-size: 1rem;
    }
    
    /* Mobile navbar background */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem;f
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .navbar-collapse .nav-link {
        color: var(--secondary-color) !important;
        text-shadow: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .carousel-item {
        min-height: 450px;
    }
    
    .hero-section {
        min-height: 450px;
    }
    
    .hero-search-bar {
        padding: 15px 10px;
    }
    
    .search-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        border-radius: 25px;
    }
}

.logo-slider {
    overflow: hidden;
    background: #fff;
    padding: 15px 0;
}

.logo-track {
    display: flex;
    align-items: center;
    width: calc(200px * 10);
    animation: scroll 15s linear infinite;
}

.logo-track img {
    width: 150px;
    margin: 0 25px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.logo-track img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


.btn-view {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--primary-color);
        color: var(--light-bg);
        font-size: 13px;
        font-weight: 600;
        padding: 9px 18px;
        border-radius: 50px;
        text-decoration: none;
        transition: background .2s, transform .2s, box-shadow .2s;
        box-shadow: 0 4px 14px rgba(11,104,67,.25);
    }

    .btn-view:hover {
        background: var(--primary-fade);
        transform: translateX(2px);
        box-shadow: 0 6px 20px rgba(11,104,67,.35);
        color: #fff;
    }

    .btn-view i { font-size: 11px; transition: transform .2s; }
    .btn-view:hover i { transform: translateX(3px); }
    
    
    
.service-card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: #e80881d9;
    color: #fff;
    }







    
/*----- -------------testimonials --------------------------*/
    
    /* ── Section ──────────────────────────────────────── */
.testimonials-section {
    padding: 80px 0 90px;
    background: linear-gradient(135deg, #fff5fa 0%, #fff 60%, #fdf2ff 100%);
}

.t-eyebrow {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: .85rem;
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* ── Card ─────────────────────────────────────────── */
.t-card {
    display: flex;
    align-items: center;
    gap: 52px;
    background: #fff;
    border-radius: 24px;
    padding: 48px 52px;
    border: 1px solid rgba(232, 8, 129, .07);
}

/* ── Photo (left) ─────────────────────────────────── */
.t-photo-wrap {
    position: relative;
    flex-shrink: 0;
}

.t-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e80881;
    display: block;
    position: relative;
    z-index: 2;
}

/* Decorative spinning ring */
.t-photo-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px dashed rgba(232, 8, 129, .30);
    z-index: 1;
    animation: spinRing 18s linear infinite;
}

@keyframes spinRing {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ── Content (right) ──────────────────────────────── */
.t-content { flex: 1; }

.t-quote-icon {
    font-size: 2rem;
    color: #e80881;
    opacity: .2;
    line-height: 1;
    margin-bottom: 14px;
}

.t-text {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #4b5563;
    font-style: italic;
    margin-bottom: 22px;
}

.t-divider {
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, #e80881, #ff6ec7);
    border-radius: 2px;
    margin-bottom: 16px;
}

.t-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
}

.t-role {
    font-size: .88rem;
    color: #9ca3af;
    margin-top: 4px;
}

/* ── Mobile ───────────────────────────────────────── */
@media (max-width: 767px) {
    .t-card {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
        gap: 28px;
    }
    .t-photo { width: 150px; height: 150px; }
    .t-photo-ring { inset: -8px; }
    .t-divider { margin: 0 auto 16px; }

}

/*----- -------------testimonials END --------------------------*/


/*----- -------------user menu --------------------------*/
    .user-menu{
    position:relative;
    }
    
    .avatar{
    width:40px;
    height:40px;
    border-radius:50%;
    background:var(--primary-color);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    cursor:pointer;
    font-size:16px;
    }
    
    .dropdown-menu{
    position:absolute;
    right:0;
    top:50px;
    background:white;
    width:220px;
    border-radius:10px;
    box-shadow:0 8px 25px rgba(0,0,0,0.1);
    display:none;
    overflow:hidden;
    }
    
    .dropdown-menu a{
    display:block;
    padding:12px 16px;
    text-decoration:none;
    color:#333;
    font-size:14px;
    }
    
    .dropdown-menu a:hover{
    background:#f5f5f5;
    }
    
    .dropdown-header{
    padding:12px 16px;
    border-bottom:1px solid #eee;
    font-size:14px;
    }