
        :root{
            --primary-color:#ff695f;
            --secondary-color:#03a4ed;
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar.scrolled {
            padding: 0.5rem 0 !important;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
        }

        .container {
            max-width: 1200px;
        }

        .navbar-brand {
            font-weight: 700;
            font-size:20px!important;
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            position: relative;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .circle-outer {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: pulse 2s infinite;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
            }
        }

        .circle-inner {
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
        }

        .logo-text {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            font-size:20px!important;
            letter-spacing: 2px;
        }

        .nav-link {
    color: #333 !important;
    font-weight: 600;
    margin: 0 5px;
    /* padding: 0.5rem 0 !important; */
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    padding-left:5px;
}

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 50%;
            background:var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-link:hover::after,
        .nav-link.active-link::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }

        .nav-link.active-link {
            color: #667eea !important;
            font-weight: 600;
        }

        .btn-contact {
            background:var(--primary-color);
            color: white !important;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            position: relative;
            overflow: hidden;
        }

        .btn-contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background:var(--secondary-color);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .btn-contact:hover::before {
            left: 0;
        }

        .btn-contact:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
        }

        .navbar-toggler {
            border: 2px solid #667eea;
            padding: 0.5rem 0.75rem;
            border-radius: 8px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.3);
        }

        .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='%23667eea' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        @media (max-width: 991px) {
            .nav-link {
                margin: 0.5rem 0;
                padding: 0.5rem 1rem !important;
            }

            .btn-contact {
                margin-top: 1rem;
                width: 100%;
            }

            .navbar-nav {
                padding: 1rem 0;
            }
        }

        @media (max-width: 576px) {
            .logo-text {
                font-size:20px!important;
            }

            .logo-icon {
                width: 40px;
                height: 40px;
            }

            .circle-outer {
                width: 40px;
                height: 40px;
            }
        }

      
      /* Hero Section Main */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    z-index: 1;
}

/* Overlay for better readability (Optional) */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.4); /* Background image thakle text bujhar jonno white overlay */
    z-index: -1;
}

/* Decorative Background Elements */
.hero-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(173, 216, 230, 0.3), rgba(135, 206, 250, 0.4));
    border-radius: 50%;
    bottom: 50px;
    left: -50px;
    z-index: -1;
}

.welcome-text {
    color: #ff6b6b;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
    color: var(--secondary-color);
}


.hero-description {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 1s ease forwards;
}

/* Button & Contact Styling */
.btn-services {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
    transition: all 0.4s ease;
    animation: fadeInLeft 1.2s ease forwards;
}

.btn-services:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #0077b6, #00b4d8);
}

.phone-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-left: 1.5rem;
    animation: fadeInRight 1.2s ease forwards;
}

.phone-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b9d, #c9184a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
}

.phone-number {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}


/* Animations Keyframes */
@keyframes float {
    0%, 100% { transform: rotate(-15deg) translateY(0px); }
    50% { transform: rotate(-15deg) translateY(-20px); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .phone-button { margin-left: 0; margin-top: 1.5rem; width: 100%; }
}


/*about section*/
/* Color Palette */

.about-section {
    background-color: #f5f5f5;
    overflow: hidden;
    padding:80px 0px;
}

/* Image Side Styling */
.about-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-person-img {
    position: relative;
    z-index: 2;
    /* Image-ti k b&w korte chaile nicher line-ti use korun */
    /* filter: grayscale(100%); */
}

/* Abstract Shapes */
.shape {
    position: absolute;
    border-radius: 50% 50% 0 50%;
    transform: rotate(-15deg);
    z-index: 1;
}


/* Content Side Styling */
.section-title {
    font-size: 40px;
    line-height: 1.3;
    color: #222;
}

.text-blue { color: var(--blue-color); }
.text-red { color: var(--red-color); }

.stat-icon {
    width: 45px;
    height: auto;
}

.stat-item h3 {
    font-size: 2rem;
    color: #333;
}

.stat-label {
    color: var(--red-color);
    font-weight: 500;
    font-size: 14px;
}

.stat-item small {
    display: block;
    line-height: 1.4;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title { font-size: 1.8rem; }
    .shape-1 { width: 250px; height: 250px; }
}
/*about section*/


/*footer section*/
/* Footer General Styling */
.footer-section {
    border-top: 1px solid #f0f0f0;
    padding:80px 0px;
    background: #000;
    color:#fff;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    font-size: 15px;
}

.footer-links li a:hover {
    color: #fff;
}

/* Social Icons Styling */
.social-icon {
    width: 35px;
    height: 35px;
    background-color: #00AEEF;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.social-icon:hover {
    background-color: #FF725E;
    color: white;
    transform: translateY(-3px);
}

/* Newsletter Input Styling */
.newsletter-box {
    max-width: 400px;
}

.newsletter-input {
    background-color: #00AEEF !important;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    color: white !important;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    background: transparent;
    border: none;
    font-size: 18px;
}

.newsletter-btn:hover {
    color: #FF725E;
}
/*footer section*/


/*blog section*/
.blog-section{
    padding:80px 0px;
    background: #f5f5f5;
}
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.blog-card img {
    transition: transform 0.5s ease;
    height: 300px;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-card .card-title {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #333;
}

.blog-card .text-info {
    color: #00AEEF !important; /* Blue color from your theme */
}

.blog-card .text-danger {
    color: #FF725E !important; /* Red/Orange color from your theme */
}

.blog-card .badge.bg-danger {
    background-color: #FF725E !important;
    padding: 8px 12px;
    border-radius: 5px;
}
/*blog section*/


/*event*/
 .events-section {
            padding: 80px 0;
            background: #f5f5f5;
        }

        .events-section .section-subtitle {
            font-family: 'Playfair Display', serif;
            color: #d4a373;
            font-style: italic;
            font-size: 1.2rem;
            margin-bottom: 10px;
            display: block;
        }

        .events-section .section-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2.8rem;
            color: #1a1a1a;
            margin-bottom: 50px;
        }

        /* Event Card Design */
        .event-card {
            background: #fff;
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(212, 163, 115, 0.1);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            border: 1px solid #fef1e6;
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(212, 163, 115, 0.2);
        }

        .event-img-container {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .event-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .event-card:hover .event-img {
            transform: scale(1.1);
        }

        .event-date-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.95);
            padding: 10px 15px;
            border-radius: 12px;
            text-align: center;
            backdrop-filter: blur(5px);
        }

        .event-date-badge span {
            display: block;
            line-height: 1;
        }

        .event-day { font-weight: 800; font-size: 1.2rem; color: #1a1a1a; }
        .event-month { font-size: 0.8rem; text-transform: uppercase; color: #d4a373; font-weight: 700; }

        .event-content {
            padding: 30px;
        }

        .event-category {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #d4a373;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
        }

        .event-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .event-details {
            font-size: 0.9rem;
            color: #6c757d;
            margin-bottom: 20px;
        }

        .event-details i {
            color: #d4a373;
            margin-right: 8px;
            width: 16px;
        }

        .btn-book {
            background: #1a1a1a;
            color: #fff;
            border-radius: 50px;
            padding: 10px 25px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: none;
            width: 100%;
        }

        .btn-book:hover {
            background: #d4a373;
            color: #fff;
        }
/*event*/

/*portfolio*/

.portfolio-section {
    background-color: #ffffff;
    padding:80px 0px;
}

/* Header Line */
.header-line {
    width: 60px;
    height: 3px;
    background: #FF725E;
    margin-top: 15px;
}

/* Filter Buttons */
.filter-btns .btn {
    border: none;
    background: transparent;
    font-weight: 600;
    color: #666;
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 50px;
    transition: 0.3s;
}

.filter-btns .btn.active, .filter-btns .btn:hover {
    background: #00AEEF;
    color: #fff;
}

/* Project Card */
.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.project-card img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    height:300px;
    object-fit: cover;
}

/* Hover Overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 174, 239, 0.9), rgba(255, 114, 94, 0.4));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover img {
    transform: scale(1.1);
}

/* Overlay Content Animation */
.overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
    width: 100%;
}

.project-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content .category {
    color: #eee;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.overlay-content .title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 0;
}

.view-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    text-decoration: none;
    transition: 0.3s;
}

.view-btn:hover {
    background: #FF725E;
    color: #fff;
}
/*portfolio*/



.testimonial-section {
            padding: 80px 0;
            background: #fff;
        }

        /* কার্ডের মডার্ন ডিজাইন */
        .testimonial-card {
            background: #f5f5f5;
            border: none;
            border-radius: 20px;
            padding: 40px 30px;
            margin: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
            height: 320px;
            border:1px solid #e0e0e0;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
        }

        /* কোটেশন আইকন */
        .quote-icon {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 40px;
            color: #e0e0e0;
            opacity: 0.5;
        }

        .user-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #6366f1; /* Modern Indigo color */
            padding: 3px;
        }

        .user-info h6 {
            font-weight: 700;
            margin-bottom: 2px;
            color: #1f2937;
        }

        .user-info span {
            font-size: 13px;
            color: #6b7280;
        }

        .testimonial-text {
            color: #4b5563;
            line-height: 1.7;
            font-style: italic;
            margin-top: 20px;
        }

        /* স্লাইডার ইন্ডিকেটর */
        .carousel-indicators {
            bottom: -60px;
        }

        .carousel-indicators [button] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #6366f1;
        }

        .section-title {
            font-weight: 800;
            color: #111827;
            margin-bottom: 10px;
        }

        .carousel-indicators [data-bs-target] {
	background-color: #000;
}



/* follow us */
.follow-section {
            padding: 80px 0;
            background: #f5f5f5;
        }

        .follow-section .social-card {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    border-radius: 16px;
    background: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,.2);
    margin-bottom: 20px;
}

        .follow-section .social-icon {
            font-size: 24px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            /*background: #fff;*/
            margin-right: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .follow-section .social-info h6 {
            margin: 0;
            font-weight: 700;
            color: #1a1d23;
            font-size: 1.1rem;
        }

        .follow-section .social-info span {
            font-size: 13px;
            color: #6c757d;
        }

        /* Hover Effects with Brand Colors */
        .follow-section .social-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            background: #fff;
        }

        /* Facebook Hover */
        .fb-card:hover { border-color: #1877F2; }
        .fb-card:hover .social-icon { background: #1877F2; color: #fff; }

        /* Twitter/X Hover */
        .tw-card:hover { border-color: #000000; }
        .tw-card:hover .social-icon { background: #000; color: #fff; }

        /* Instagram Hover */
        .ins-card:hover { border-color: #E4405F; }
        .ins-card:hover .social-icon { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; }

        /* LinkedIn Hover */
        .ln-card:hover { border-color: #0077B5; }
        .ln-card:hover .social-icon { background: #0077B5; color: #fff; }

        .section-tag {
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
            color: #6366f1;
            font-size: 14px;
            display: block;
            margin-bottom: 10px;
        }
/* follow us */


/*partner*/
.partner-section {
            padding: 60px 0;
            display: flex;
            align-items: center;
            background: #fff;
        }

        .brand-title-area {
            border-left: 2px solid #000;
            padding-left: 20px;
        }

        .brand-title-area h2 {
            color: #000;
            font-size: 28px;
            text-transform: capitalize;
            line-height: 1.2;
            font-weight: 600;
        }

        /* কার্ডের স্টাইল */
.brand-card {
    background: #fff;
    border-radius: 8px;
    height: 100px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    padding: 15px;
    border: 1px solid rgba(0,0,0,.1);
}

.brand-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

        /* স্লাইডার নেভিগেশন স্টাইল */
        .slick-prev:before, .slick-next:before {
            color: #000; /* অ্যারো কালার */
            font-size: 25px;
        }
/*partner*/

/*package*/
.package-section{
    padding:80px 0px;
    background: #fff;
}

        /* কার্ডের স্টাইল - আপনার দেওয়া ইমেজের মতো হালকা পিঙ্ক বর্ডার ও শ্যাডো */
        .package-card {
            background: #fff;
            border: 1px solid #fce4ec; /* হালকা গোলাপী বর্ডার */
            border-radius: 25px; /* রাউন্ডেড কর্নার */
            padding: 40px 30px;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(252, 228, 236, 0.4);
        }

        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(252, 228, 236, 0.8);
        }

        .package-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: #1a1a1a;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .package-price {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: #1a1a1a;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .price-subtext {
            font-size: 1.1rem;
            font-weight: 500;
        }

        .package-features {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-top: 15px;
        }
/*package*/


 @media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
}

 @media (min-width: 320px) and (max-width:575px) {
    .hero-section {
    height: 100%!important;
}
}


/*============*/
 .video-section {
        background-color: #f8f9fa;
    }
    .video-card {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        cursor: pointer;
    }
    .video-card:hover {
        transform: translateY(-10px);
    }
    .video-thumbnail {
        position: relative;
    }
    .video-thumbnail img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
    }
    /* Play Button Overlay */
    .play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70px;
        height: 70px;
        background: rgba(13, 110, 253, 0.9);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 25px;
        transition: all 0.3s ease;
        border: 4px solid rgba(255,255,255,0.3);
    }
    .video-card:hover .play-btn {
        background: #ff4d05; /* Orange color on hover */
        transform: translate(-50%, -50%) scale(1.1);
    }
    .video-info {
        padding: 20px;
        background: #fff;
    }
    .video-info h5 {
        font-weight: 700;
        margin-bottom: 5px;
        color: #333;
    }
    .video-info span {
        font-size: 14px;
        color: #777;
    }
/*============*/