.navigation-menu li a {
    color: white !important;
    text-decoration: none;
    line-height: 1.2;
    padding-bottom: 1px !important;
}

.navigation-menu li.active a {
    border-bottom: 2px solid white;
    padding-bottom: 2px !important;
}

#topnav .navigation-menu>li:hover>a,
#topnav .navigation-menu>li.active>a {
    color: #fff !important;
}

.g-review {
    opacity: 0.9;
    background-color: #f2f2f2;
    border-radius: 40px !important;
}

.g-review:hover {
    opacity: 1;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.1);
}

.custom-bg-section {
    position: relative;
    overflow: hidden;
    background-color: #E0E0E0;
}

.custom-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('/img/home/intro-bg.jpg') no-repeat right center;
    background-size: contain;
    opacity: 0.15;
    z-index: 1;
}

.custom-bg-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.testimonials-section h2 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 10px;
}

.testimonials-section p.subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.testimonial-card {
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 30px 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quote-icon {
    font-size: 36px;
    color: #ec407a;
    text-align: left;
    margin-bottom: 15px;
}

.testimonial-content {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-user img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-name {
    font-weight: 600;
    color: #ec407a;
}

.testimonial-time {
    font-size: 13px;
    color: #888;
}

.testimonial-user-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #262e49;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}

.mobile-menu.show {
    left: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 60px;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.navbar-toggle {
    display: none;
    cursor: pointer;
}

.navbar-toggle .lines {
    width: 25px;
    display: block;
}

.navbar-toggle span {
    height: 2px;
    width: 100%;
    background-color: white;
    display: block;
    margin-bottom: 5px;
    transition: all 0.2s ease;
}

/* Show toggle button on mobile */
@media (max-width: 768px) {
    .navbar-toggle {
        display: block;
    }

    #navigation {
        display: none;
    }
}

.snash-list {
    list-style: none;
    padding-left: 0;
}

.snash-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #4a4a4a;
    font-weight: 500;
}

.snash-list li::before {
    content: "\f058";
    /* FontAwesome check-circle */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #b21378;
    /* Primary theme color */
    font-size: 18px;
}

.footer-links p:hover span.d-none {
    display: inline-block !important;
}

.footer-links p span.d-none {
    transition: all 0.3s ease-in-out;
}

.video-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
}

.video-container img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.play-icon a {
    display: inline-block;
    width: 64px;
    height: 64px;
    background: url('{{ asset(' assets/img/play-icon.png') }}') no-repeat center center;
    background-size: contain;
}