:root {
    --primary: #45e8a5;
    --secondary: #f1de4b;
    --dark: #04000a;
    --dark-light: #12101a;
    --border: #1e1a2d;
    --text-light: #d1d1d1;
    --text-muted: #777;
}

body {
    background-color: var(--dark);
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.reviews-section {
    background: linear-gradient(135deg, var(--dark) 0%, #0e0b18 100%);
    padding: 60px 0;
    margin: 0;
}

.section-title {
    color: var(--secondary);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 0;
}

.review-card {
    background: var(--dark-light);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-weight: 700;
    color: var(--dark);
    font-size: 22px;
    flex-shrink: 0;
}

.reviewer-name {
    color: white;
    margin: 0 0 5px 0;
    font-weight: 600;
    font-size: 18px;
}

.review-rating {
    color: var(--secondary);
    font-size: 16px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    margin: 20px 0;
    font-style: italic;
}

.review-meta {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

.review-meta svg {
    margin-right: 8px;
}

/* Glide.js Custom Styles */
.glide__arrow {
    border: 2px solid var(--secondary);
    background: rgba(241, 222, 75, 0.1);
    color: var(--secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.glide__arrow:hover {
    background: var(--secondary);
    color: var(--dark);
}

.glide__arrow--left {
    left: -50px;
}

.glide__arrow--right {
    right: -50px;
}

.glide__bullets {
    bottom: -40px;
}

.glide__bullet {
    background: rgba(241, 222, 75, 0.3);
    border: none;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.glide__bullet--active {
    background: var(--secondary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .glide__arrow--left {
        left: -10px;
    }
    .glide__arrow--right {
        right: -10px;
    }
    .review-card {
        padding: 20px;
    }
}

.hero-heading-text {
font-size: 60px !important;
text-align: center;
}
.hero-8-inner {
max-width: 100% !important;
}
/* Hero section styling */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
    z-index: 1; /* Make sure the hero section is above the background */
}

/* Transparent black overlay */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 2; /* Ensure the overlay is above the background but below the content */
}

.hero-wrapper {
    position: relative;
    text-align: center;
    z-index: 3; /* Make sure the content is above the overlay */
}

.hero-heading-text {
    font-size: 3rem;
    color: white;
}

/* Optional: Styling for button */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #cddc39;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #aebf23;
}
