:root {
            --primary-gradient: linear-gradient(45deg, #ff4d6d, #c9184a);
            --glass-bg: rgba(255, 255, 255, 0.90);
            --dark-accent: #1a1a1a;
            --soft-gray: #f4f7f6;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #fdf0f3;
            margin: 0; padding: 0;
        }
        
        .required::after{
            content: " *";
            color: red;
            font-weight: bold;
        }

        .pt-80{
            padding-top:80px;
        }

        .pb-50{
            padding-bottom: 50px;
        }

        /* --- PREMIUM HEADER --- */
        .premium-nav {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 12px 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -1px;
            color: var(--dark-accent) !important;
        }

        .brand-dot { color: #ff4d6d; }

        .nav-link {
            color: var(--dark-accent) !important;
            font-weight: 600;
            font-size: 15px;
            margin: 0 3px;
            transition: 0.3s;
            padding: 5px 5px !important;
        }

        .nav-link:hover { color: #ff4d6d !important; }

        /* --- OFFCANVAS (Left Menu Mobile) --- */
        /* --- PREMIUM OFFCANVAS (Left Menu Mobile) --- */
@media (max-width: 991.98px) {
    .offcanvas-start {
        width: 260px !important; /* Reduced Width */
        background-color: #ffffff;
        border-right: 2px solid #ff4d6d22;
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    }
    .offcanvas-header {
        background: #fff5f7;
        padding: 10px 20px;
    }
    .offcanvas-body {
        padding: 20px;
    }
    .offcanvas-body .nav-link {
        font-size: 14px;
        padding: 12px 15px;
        border-radius: 10px;
        margin-bottom: 5px;
        color: #444 !important;
        transition: 0.3s;
    }
    .offcanvas-body .nav-link:hover {
        background: #fdf0f3;
        color: #ff4d6d !important;
        padding-left: 20px;
    }
    .offcanvas-body .nav-link i {
        width: 25px;
        color: #ff4d6d;
    }
}

        .btn-auth-outline {
            border: 2px solid #ff4d6d;
            color: #ff4d6d;
            border-radius: 0px;
            padding: 5px 20px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: 0.3s;
        }

        .btn-auth-outline:hover {
            background: #ff4d6d;
            color: #fff;
        }

        .btn-premium-solid {
            background: var(--primary-gradient);
            color: #fff !important;
            border-radius: 0px;
            padding: 8px 20px;
            font-weight: 600;
            border: none;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 15px rgba(255, 77, 109, 0.2);
            transition: 0.3s;
        }

        .btn-premium-solid:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 20px rgba(255, 77, 109, 0.3);
        }

        /* --- CONTENT AREA --- */
        .content-area {
            padding: 150px 0;
            text-align: center;
            min-height: 70vh;
        }

        /* --- PREMIUM FOOTER --- */
        .premium-footer {
            background: var(--dark-accent);
            color: #ffffff;
            padding: 70px 0 30px;
        }

        .footer-logo { font-size: 26px; font-weight: 700; margin-bottom: 20px; }
        .footer-text { color: #a0a0a0; font-size: 14px; line-height: 1.7; }
        .footer-heading { font-size: 18px; font-weight: 700; margin-bottom: 25px; position: relative; }
        .footer-heading::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 35px; height: 2px; background: #ff4d6d; }
        .footer-links { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: #a0a0a0; text-decoration: none; transition: 0.3s; font-size: 14px; }
        .footer-links a:hover { color: #ff4d6d; padding-left: 5px; }

        .social-circle {
            width: 40px; height: 40px;
            background: rgba(255,255,255,0.05);
            display: inline-flex; align-items: center; justify-content: center;
            border-radius: 50%; margin-right: 8px; color: #fff; transition: 0.3s;
        }
        .social-circle:hover { background: #ff4d6d; transform: scale(1.1); }

        /* --- NEWSLETTER RESPONSIVE FIX --- */
.newsletter-box {
    background: rgba(255,255,255,0.05);
    padding: 5px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    width: 100%; /* Ensures it stays within container */
}

.newsletter-box input {
    background: transparent;
    border: none;
    padding: 0px 15px;
    color: #fff;
    flex: 1; /* Takes up remaining space */
    outline: none;
    min-width: 0; /* Prevents input from pushing parent width */
}

.btn-send {
    /* background: red; */
    border: none;
    padding: 5px 10px;
    border-radius: 50px;
    background: var(--primary-gradient);
    color:#fff;
}

/* For very small screens (iPhone SE, etc.) */
@media (max-width: 380px) {
    .newsletter-box {
        border-radius: 15px;
        flex-direction: column;
        background: transparent;
        gap: 10px;
    }
    .newsletter-box input {
        background: rgba(255,255,255,0.05);
        border-radius: 30px;
        width: 100%;
        text-align: center;
        padding:10px 0px!important;
    }
    .btn-send {
        width: 100% !important;
        border-radius: 30px !important;
    }
}



/*hero*/
.hero-wrapper {
/*        background: linear-gradient(135deg, #fff5f7 0%, #ffffff 100%);*/
        padding: 120px 0 80px;
        position: relative;
        overflow: hidden;
    }

    /* Background Elements for Luxury Feel */
    .hero-wrapper::before {
        content: '\f004'; /* Heart Icon */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 10%;
        left: 5%;
        font-size: 100px;
        color: rgba(255, 77, 109, 0.03);
        transform: rotate(-15deg);
    }

    .hero-title {
        font-size: 3rem;
        font-weight: 800;
        color: #1a1a1a;
        line-height: 1.2;
    }

    .hero-title span {
        color: #ff4d6d;
        position: relative;
    }

    .hero-title span::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 0;
        width: 100%;
        height: 8px;
        background: rgba(255, 77, 109, 0.1);
        z-index: -1;
    }

    .hero-subtext {
        font-size: 1.1rem;
        color: #666;
        margin: 25px 0 40px;
        max-width: 500px;
    }

    /* Hero Image UI */
    .hero-img-box {
        position: relative;
        z-index: 1;
    }

    .hero-img-box img {
/*        border-radius: 30px 100px 30px 30px;*/
        box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        border: 10px solid #fff;
        height:400px;
    }

    /* Floating Stats Card */
    .floating-card {
        position: absolute;
        bottom: 40px;
        left: -30px;
        background: #fff;
        padding: 20px;
        border-radius: 0px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
        .hero-wrapper { padding: 100px 0 60px; text-align: center; }
        .hero-title { font-size: 1.5rem; }
        .hero-subtext { margin: 20px auto 35px; }
        .hero-img-box { margin-top: 50px; }
        .floating-card { left: 7%; transform: translateX(-50%); }
        .hero-img-box img {
            height: 100%;
         }
    }
/*hero*/


/*about*/
.about-luxury-section {
        padding: 60px 0;
        background: #fdf0f3;
    }

    /* Image Grid Styling */
    .image-grid-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    /* Left side: 2 Images stacked */
    .left-images {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 45%;
    }

    .left-images img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 240px;
    border: 10px solid #fff;
}

    /* Right side: 1 Large Image */
    .right-image {
        width: 55%;
    }

    .right-image img {
        width: 100%;
        height: 500px;
        border-radius: 30px;
        object-fit: cover;
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        border: 8px solid #fff;
    }

    /* Floating Badge on Images */
    .trust-badge-float {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: var(--primary-gradient, linear-gradient(45deg, #ff4d6d, #c9184a));
        color: #fff;
        padding: 20px;
        border-radius: 50%;
        width: 100px;
        height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        z-index: 5;
        border: 5px solid #fff;
        font-weight: bold;
        box-shadow: 0 10px 20px rgba(255, 77, 109, 0.3);
    }

    /* Content Styling */
    .about-label {
        color: #ff4d6d;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 700;
        font-size: 14px;
        display: block;
        margin-bottom: 15px;
    }

    .about-heading {
        font-size: 2.5rem;
        font-weight: 800;
        color: #1a1a1a;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .about-desc {
        color: #666;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 35px;
    }

    /* Mobile View Fix */
    @media (max-width: 991px) {
        .image-grid-wrapper { margin-bottom: 50px; }
        .about-heading { font-size: 2.2rem; }
        .right-image img { height: 400px; }
    }

    @media (max-width: 576px) {
        .image-grid-wrapper { flex-direction: column; }
        .left-images, .right-image { width: 100%; }
        .right-image img { height: 300px; }
    }
/*about*/


 /* --- Slim Premium CTA --- */
    .slim-support-box {
        position: relative;
        overflow: hidden;
        margin: 30px 0;
    }

    /* Background Blur Blob */
    .slim-support-box::before {
        content: "";
        position: absolute;
        width: 150px;
        height: 150px;
        background: rgba(255, 77, 109, 0.08);
        top: -50px;
        right: 10%;
        filter: blur(40px);
        border-radius: 50%;
    }

    .cta-text-content h2 {
        font-size: 1.5rem; /* Font size choto kora hoyeche */
        font-weight: 800;
        color: #2d3436;
        margin: 0;
        line-height: 1.2;
    }

    .cta-text-content p {
        font-size: 14px;
        margin: 5px 0 0 0;
        color: #636e72;
    }

    /* Slim Buttons */
    .cta-btn-group {
        display: flex;
        gap: 12px;
    }

    .btn-slim {
        padding: 10px 22px;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        transition: 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .btn-black {
        background: #1e272e;
        color: #fff !important;
    }

    .btn-outline-red {
        background: transparent;
        color: #ff4d6d !important;
        border: 1.5px solid #ff4d6d;
    }

    .btn-slim:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 77, 109, 0.2);
    }

    /* Small Agent Image */
    .agent-img-slim {
        max-height: 120px; /* Image height chikon kora hoyeche */
        width: auto;
        display: block;
        margin-left: auto;
        filter: drop-shadow(0 10px 15px rgba(0,0,0,0.08));
    }

    @media (max-width: 991px) {
        .slim-support-box { padding: 30px 20px; text-align: center; }
        .cta-btn-group { justify-content: center; margin-top: 20px; }
        .agent-img-slim { display: none; } /* Mobile e aro chikon korar jonno image bad */
    }


   /* story*/
   .success-slider-section {
        padding: 60px 0;
        background-color: #fdf0f3;
        background-color: #fff;
        overflow: hidden; /* Slider jeno screen-er baire na jay */
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-weight: 800;
        color: #1a1a1a;
    }

    .section-header span {
        color: #ff4d6d;
    }

    /* Card Design */
    .success-card {
        background: #fff;
        border-radius: 0px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        margin-bottom: 40px; /* Space for pagination dots */
        transition: 0.3s;
        border: 1px solid rgba(255, 77, 109, 0.1);
        height: 350px;
    }

    .success-card:hover {
        transform: translateY(-5px);
        border-color: #ff4d6d;
    }

    .card-img-box {
        position: relative;
        height: 220px;
    }

    .card-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card-body-content {
        padding: 20px 10px;
        text-align: center;
    }

    .couple-title {
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 8px;
        color: #1a1a1a;
    }

    .story-brief {
        font-size: 13px;
        color: #666;
        line-height: 1.6;
        font-style: italic;
    }

    /* Custom Navigation Buttons */
    .swiper-button-next, .swiper-button-prev {
        color: #ff4d6d !important;
        background: #fff;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 18px;
        font-weight: bold;
    }

    .swiper-pagination-bullet-active {
        background: #ff4d6d !important;
    }
   /* story*/


  /* works*/
  .how-it-works-premium {
        padding: 60px 0;
        background: radial-gradient(circle at top right, #fff5f7, #ffffff);
        position: relative;
        overflow: hidden;
    }

    /* Background Abstract Shapes */
    .bg-shape {
        position: absolute;
        z-index: 0;
        filter: blur(80px);
        opacity: 0.4;
    }
    .shape-1 { top: 10%; right: -5%; width: 300px; height: 300px; background: #ff4d6d; border-radius: 50%; }

    .section-title-wrap { margin-bottom: 80px; }
    .premium-badge {
        background: rgba(255, 77, 109, 0.1);
        color: #ff4d6d;
        padding: 6px 20px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 700;
        display: inline-block;
        margin-bottom: 15px;
    }

    /* Process Card Styling */
    .process-card {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 0px;
        padding: 40px 30px;
        height: 100%;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1;
    }

    .process-card:hover {
        transform: translateY(-15px);
        background: #ffffff;
        box-shadow: 0 40px 80px rgba(255, 77, 109, 0.12);
        border-color: #ff4d6d;
    }

    /* Large Number Background */
    .number-bg {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 80px;
        font-weight: 900;
        color: rgba(255, 77, 109, 0.05);
        line-height: 1;
        transition: 0.5s;
    }

    .process-card:hover .number-bg {
        color: rgba(255, 77, 109, 0.1);
        transform: scale(1.2);
    }

    /* Icon Box with Glass Effect */
    .icon-glass {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #ff4d6d, #ff8fa3);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: #fff;
        margin-bottom: 30px;
        box-shadow: 0 15px 30px rgba(255, 77, 109, 0.3);
    }

    .card-title {
        font-weight: 800;
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: #1a1a1a;
    }

    .card-text {
        color: #6c757d;
        font-size: 15px;
        line-height: 1.7;
    }

    /* Connector Dots (Optional) */
    .row-relative { position: relative; }

    @media (max-width: 991px) {
        .how-it-works-premium { padding: 80px 0; }
        .process-card { margin-bottom: 30px; }
    }
  /* works*/


  /*profile*/
   .profile-section {
        padding: 60px 0;
        background-color: #fff;
    }

    .profile-card {
        background: #fff;
        border-radius: 0px;
        overflow: hidden;
        border: 1px solid #eee;
        transition: 0.4s all ease;
        position: relative;
        margin-bottom: 10px;
    }

    .profile-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(255, 77, 109, 0.15);
        border-color: #ff4d6d;
    }

    /* Image Holder */
    .profile-img-box {
        position: relative;
        height: 280px;
        overflow: hidden;
    }

    .profile-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

    /* Status Badge (Online/Verified) */
    .status-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(40, 167, 69, 0.9);
        color: #fff;
        padding: 4px 12px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 600;
        z-index: 2;
    }

    /* Premium Overlay on Hover */
    .profile-card:hover .profile-img-box img {
        transform: scale(1.1);
    }

    /* Profile Info */
    .profile-info {
        padding: 20px;
        text-align: center;
    }

    .profile-name {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 5px;
    }

    .profile-meta {
        font-size: 13px;
        color: #777;
        margin-bottom: 15px;
    }

    .profile-meta span {
        margin: 0 5px;
    }

    /* Action Button */
    .view-btn {
        display: block;
        width: 100%;
        padding: 10px;
        background: #fff5f7;
        color: #ff4d6d;
        text-decoration: none;
        font-weight: 600;
        border-radius: 0px;
        transition: 0.3s;
        border: 1px solid #ffeef1;
    }

    .profile-card:hover .view-btn {
        background: #ff4d6d;
        color: #fff;
    }

    /* ID Badge */
    .profile-id {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        padding: 2px 10px;
        border-radius: 5px;
        font-size: 10px;
    }
  /*profile*/

   /* --- SEARCH SECTION STYLES --- */
    .search-filter-section {
        margin-top: -60px; /* Hero section er sathe overlap korar jonno */
        position: relative;
        z-index: 100;
        padding: 0 15px;
    }

    .search-box-wrapper {
        background: #ffffff;
        padding: 35px;
        border-radius: 0px;
        box-shadow: 0 25px 70px rgba(255, 77, 109, 0.15);
        border: 1px solid rgba(255, 77, 109, 0.1);
    }

    /* Input Styling */
    .filter-group {
        position: relative;
    }

    .filter-label {
        font-size: 13px;
        font-weight: 700;
        color: #ff4d6d;
        text-transform: uppercase;
        margin-bottom: 8px;
        display: block;
        letter-spacing: 0.5px;
    }

    .filter-control {
        width: 100%;
        border: 1.5px solid #eee;
        padding: 12px 15px;
        border-radius: 0px;
        font-size: 15px;
        color: #333;
        background-color: #f9f9f9;
        transition: 0.3s all ease;
        appearance: none; /* Default arrow hide */
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ff4d6d' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
    }

    .filter-control:focus {
        background-color: #fff;
        border-color: #ff4d6d;
        box-shadow: 0 0 0 4px rgba(255, 77, 109, 0.05);
        outline: none;
    }

    /* Search Button */
    .btn-search {
        background: linear-gradient(45deg, #ff4d6d, #c9184a);
        color: #fff;
        border: none;
        width: 100%;
        padding: 14px;
        border-radius: 0px;
        font-weight: 700;
        text-transform: uppercase;
        transition: 0.4s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: 0 10px 20px rgba(255, 77, 109, 0.3);
    }

    .btn-search:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(255, 77, 109, 0.4);
        color: #fff;
    }

    /* Desktop Divider */
    @media (min-width: 992px) {
        .filter-group:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -12px;
            top: 50%;
            height: 40px;
            width: 1px;
            background: #eee;
            transform: translateY(-10%);
        }
    }

    /* Mobile View */
    @media (max-width: 991px) {
        .search-filter-section { margin-top: 20px; }
        .search-box-wrapper { padding: 25px; border-radius: 0px; }
    }


    /*blog*/
    .blog-section {
        padding: 100px 0;
        background-color: var(--soft-gray);
    }

    /* Section Title */
    .blog-header {
        margin-bottom: 60px;
    }
    .blog-header h2 {
        color: var(--dark-accent);
        font-weight: 800;
        font-size: 2.5rem;
    }
    .blog-header .underline {
        width: 80px;
        height: 4px;
        background: var(--primary-gradient);
        margin: 15px auto;
        border-radius: 10px;
    }

    /* Blog Card Premium Styling */
    .premium-blog-card {
        background: var(--glass-bg);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 0px;
        overflow: hidden;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        position: relative;
    }

    .premium-blog-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(255, 77, 109, 0.15);
    }

    /* Image Box */
    .blog-img-wrapper {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

    .blog-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.6s;
    }

    .premium-blog-card:hover .blog-img-wrapper img {
        transform: scale(1.1) rotate(2deg);
    }

    /* Category Badge */
    .category-tag {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--primary-gradient);
        color: white;
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        z-index: 10;
    }

    /* Card Content */
    .blog-info {
        padding: 25px;
    }

    .blog-info .date {
        font-size: 12px;
        color: #ff4d6d;
        font-weight: 600;
        margin-bottom: 10px;
        display: block;
    }

    .blog-info h5 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--dark-accent);
        line-height: 1.5;
        margin-bottom: 15px;
        min-height: 50px;
    }

    /* Read More Button */
    .btn-read-more {
        font-size: 14px;
        font-weight: 700;
        color: var(--dark-accent);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: 0.3s;
    }

    .btn-read-more i {
        color: #ff4d6d;
        transition: 0.3s;
    }

    .btn-read-more:hover i {
        transform: translateX(5px);
    }

    /* Floating Overlay Effect */
    .premium-blog-card::after {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        border-radius: 0px;
        border: 2px solid transparent;
        transition: 0.4s;
        pointer-events: none;
    }

    .premium-blog-card:hover::after {
        border-color: #ff4d6d;
        opacity: 0.3;
    }
    /*blog*/


   /* contact*/
    /* --- Contact Upper Section --- */
    .contact-section {
        padding: 60px 0;
    }

    .contact-card-wrap {
        background: #fff;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        height: 100%;
    }

    .form-title {
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 25px;
        color: #333;
    }

    .form-group-custom {
        margin-bottom: 15px;
    }

    .form-group-custom label {
        font-size: 13px;
        font-weight: 600;
        color: #666;
        margin-bottom: 5px;
    }

    .form-control-custom {
        background: #f1f3f5;
        border: none;
        padding: 12px;
        border-radius: 8px;
        font-size: 14px;
        width: 100%;
    }

    .btn-send-msg {
        background: #e63946;
        color: #fff;
        border: none;
        width: 100%;
        padding: 12px;
        border-radius: 30px;
        font-weight: 700;
        text-transform: uppercase;
        margin-top: 10px;
        transition: 0.3s;
    }

    .btn-send-msg:hover {
        background: #d62839;
        transform: translateY(-2px);
    }

    /* --- Map Styling --- */
    .map-container {
        border-radius: 15px;
        overflow: hidden;
        height: 100%;
        min-height: 450px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    /* --- Info Cards (Nicher Section) --- */
    .info-card {
        background: #fff;
        padding: 30px 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.03);
        transition: 0.3s;
        height: 100%;
        border: 1px solid #f0f0f0;
    }

    .info-card:hover {
        transform: translateY(-10px);
        border-color: #e63946;
    }

    .info-icon-box {
        width: 60px;
        height: 60px;
        background: #fdf2f3;
        color: #e63946;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin: 0 auto 15px;
    }

    .info-card h6 {
        font-weight: 700;
        color: #333;
        margin-bottom: 10px;
    }

    .info-card p {
        font-size: 14px;
        color: #777;
        margin: 0;
    }
   /* contact*/


  /* team*/

    .team-section {
        padding: 100px 0;
        background-color: #fcfcfc;
    }

    .team-header {
        margin-bottom: 60px;
    }

    /* Team Card Styling */
    .team-card {
        background: var(--glass-bg);
        border-radius: 0px;
        padding: 15px;
        text-align: center;
        border: 1px solid rgba(255, 77, 109, 0.1);
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        height: 100%;
        box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    }

    .team-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(255, 77, 109, 0.12);
        border-color: #ff4d6d;
    }

    /* Image wrapper with organic shape */
    .member-img-box {
        position: relative;
        width: 100%;
        height: 250px;
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 25px;
    }

    .member-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

    .team-card:hover .member-img-box img {
        transform: scale(1.1);
    }

    /* Social Overlay */
    .social-overlay {
        position: absolute;
        bottom: -50px;
        left: 0;
        width: 100%;
        background: var(--primary-gradient);
        display: flex;
        justify-content: center;
        gap: 15px;
        padding: 12px 0;
        transition: 0.4s ease-in-out;
        opacity: 0;
    }

    .team-card:hover .social-overlay {
        bottom: 0;
        opacity: 1;
    }

    .social-overlay a {
        color: #fff;
        font-size: 16px;
        transition: 0.3s;
    }

    .social-overlay a:hover {
        transform: scale(1.3);
    }

    /* Info */
    .member-info h5 {
        font-weight: 800;
        color: var(--dark-accent);
        margin-bottom: 5px;
        font-size: 1.25rem;
    }

    .member-info span {
        color: #ff4d6d;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Decorative element */
    .team-card::before {
        content: "";
        position: absolute;
        top: -20px;
        right: -20px;
        width: 60px;
        height: 60px;
        background: var(--primary-gradient);
        opacity: 0.05;
        border-radius: 50%;
        z-index: 0;
    }
  /* team*/


    .about-hero {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.pexels.com/photos/1444442/pexels-photo-1444442.jpeg?auto=compress&cs=tinysrgb&w=1200');
        background-size: cover;
        background-position: center;
        padding: 120px 0;
        text-align: center;
        color: #fff;
    }
    .about-hero h1 { font-size: 3.5rem; font-weight: 800; }



   /* ============*/

    .happy-moments-section {
        padding: 80px 0;
        background: #fdfdfd;
    }

    /* Video Card Styling */
    .video-card {
        background: #fff;
        border-radius: 0px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        transition: 0.4s;
        border: 1px solid #eee;
        height: 100%;
    }

    .video-card:hover {
        transform: translateY(-10px);
        border-color: #ff4d6d;
    }

    .video-thumb-wrapper {
        position: relative;
        height: 320px;
        background: #000;
        overflow: hidden;
    }

    .video-thumb-wrapper iframe, 
    .video-thumb-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Play Button Overlay (Optional if using thumbnails) */
    .play-overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        pointer-events: none;
    }

    .video-card:hover .play-overlay {
        background: rgba(0,0,0,0.4);
    }

    .play-icon {
        width: 60px;
        height: 60px;
        background: var(--primary-gradient);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        box-shadow: 0 0 20px rgba(255, 77, 109, 0.5);
    }

  
   /* ============*/


   /*===========*/
   .faq-section {
        padding: 80px 0;
        background-color: #f9fbfb;
    }

    /* Search Bar Styling */
    .faq-search-box {
        max-width: 600px;
        margin: 0 auto 50px;
        position: relative;
    }

    .faq-search-box .form-control {
        height: 60px;
        border-radius: 50px;
        padding-left: 30px;
        border: 1px solid #eee;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    /* Accordion Premium Styling */
    .accordion-item {
        border: none;
        margin-bottom: 15px;
        border-radius: 0px !important;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    }

    .accordion-button {
        font-weight: 700;
        color: var(--dark-accent);
        padding: 20px 25px;
        background-color: #fff;
        font-size: 1.1rem;
    }

    .accordion-button:not(.collapsed) {
        background-color: #fff;
        color: #ff4d6d;
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
        border-color: rgba(255, 77, 109, 0.1);
    }

    .accordion-button::after {
        background-size: 1rem;
    }

    .accordion-body {
        padding: 0 25px 25px;
        color: #666;
        line-height: 1.8;
        font-size: 15px;
    }

    .faq-category-btn {
        padding: 10px 25px;
        border-radius: 0px;
        border: 1px solid #eee;
        background: #fff;
        margin: 5px;
        font-weight: 600;
        transition: 0.3s;
        color: #555;
    }

    .faq-category-btn.active, .faq-category-btn:hover {
        background: var(--primary-gradient);
        color: #fff;
        border-color: transparent;
    }
   /*===========*/


  /* ===========*/
  .floating-chat-wrap {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 28px;
        text-decoration: none;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        position: relative;
        transition: transform 0.3s ease;
    }

    .floating-btn:hover {
        transform: scale(1.1);
        color: #fff;
    }

    /* Messenger Color */
    .btn-messenger {
        background: linear-gradient(45deg, #0084FF, #00DFFF);
    }

    /* WhatsApp Color */
    .btn-whatsapp {
        background: #25D366;
    }

    .btn-call {
        background: linear-gradient(45deg, #ff4d6d, #c9184a);
    }

    /* Pulse Effect Animation */
    .pulse-animation::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        top: 0;
        left: 0;
        z-index: -1;
        animation: pulse-ring 2s infinite;
    }

    .btn-messenger.pulse-animation::before {
        background: rgba(0, 132, 255, 0.5);
    }

    .btn-whatsapp.pulse-animation::before {
        background: rgba(37, 211, 102, 0.5);
    }

    .btn-call.pulse-animation::before { background: rgba(255, 77, 109, 0.5); }

    @keyframes pulse-ring {
        0% {
            transform: scale(1);
            opacity: 0.8;
        }
        100% {
            transform: scale(1.6);
            opacity: 0;
        }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .floating-chat-wrap {
            bottom: 20px;
            right: 20px;
            gap: 10px;
        }
        .floating-btn {
            width: 50px;
            height: 50px;
            font-size: 24px;
        }
    }
  /* ===========*/