:root {
    --primary: #0070f3;
    --secondary: #00294e;
    --accent: #00b4d8;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
}

.nav-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-section {
    min-height: 100vh;
    /*background: linear-gradient(to right, rgba(0, 41, 78, 0.95), rgba(0, 41, 78, 0.8)),*/
    /*    url('image/pic16.jpeg') center/cover;*/
    background:linear-gradient(to right, rgb(0 41 78 / 95%), rgb(0 41 78 / 0%)), url(image/pic2.jpeg) center / cover;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.service-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.process-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.reveal-text {
    position: relative;
    overflow: hidden;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    transform: translateX(-100%);
    animation: revealText 0.8s ease forwards;
}

@keyframes revealText {
    to {
        transform: translateX(100%);
    }
}

.project-stats {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.project-stats::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    overflow: hidden;
}

.header-section {
    padding-bottom: 40px;
    text-align: center;
}

.business-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.rating-overview {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.overall-rating {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #667eea;
}

.rating-stars {
    color: #ffd700;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.reviews-track-container {
    position: relative;
    margin: 0 -20px;
    padding: 0 20px;
}

.reviews-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 min(400px, calc(100vw - 40px));
    scroll-snap-align: start;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef0f7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    object-fit: cover;
}

.reviewer-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #2d3436;
}

.verification {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #00b894;
    font-size: 0.9rem;
}

.review-rating {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 20px;
    height: 100px;
    overflow: hidden;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #b2bec3;
    font-size: 0.9rem;
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    transition: all 0.3s ease;
    z-index: 2000;
}

.scroll-button:hover {
    background: #667eea;
    color: white;
}

.scroll-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.5);
}

.scroll-button.prev {
    left: 20px;
}

.scroll-button.next {
    right: 20px;
}

.scroll-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.scroll-progress {
    position: relative;
    width: 100%;
    height: 4px;
    background: #eef0f7;
    border-radius: 2px;
    margin-top: 30px;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    height: 100%;
    background: #667eea;
    border-radius: 2px;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .review-card {
        padding: 20px;
    }

    .scroll-button {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    .review-card,
    .scroll-button,
    .progress-bar {
        transition: none;
    }

    .reviews-track {
        scroll-behavior: auto;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.service-icon i {
    color: white;
    font-size: 24px;
}

.service-title {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}


.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}