body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #f9fafb 0%, #e5e7eb 100%);
}

.nav-link {
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    transform: translateY(-2px);
    color: #93c5fd;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-slide-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-slide-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-hover {
    transition: all 0.4s ease;
    background: white;
    border: 1px solid #e5e7eb;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.btn-transition {
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.btn-transition:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.parallax {
    background-image: url('https://images.unsplash.com/photo-1581093458791-9f3c0b3c7c5f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

/* Hamburger Menu Styles */
.hamburger {
    width: 28px;
    height: 24px;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Get in Touch Button Styles */
.contact-btn {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    padding: 10px 20px;
    border-radius: 9999px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-btn:hover {
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    transform: scale(1.08);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Floating Text Styles */
.floating-text {
    animation: pulse 0.8s ease-in-out infinite;
    display: inline-block;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 14px 28px;
    border-radius: 9999px;
    font-weight: 700;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-text:hover {
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    transform: scale(1.08);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Star Rating Styles */
.star-rating .star {
    color: #eab308;
}

.star-rating .empty-star {
    color: #d1d5db;
}

/* Profile Photo Styles */
.profile-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 2px solid #e5e7eb;
}

/* Client Logo Styles */
.client-logo {
padding-top: 10px;
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.client-logo:hover {
    filter: none;
    transform: scale(1.1);
}

/* Social Button Styles */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

/* City Button Styles */
.city-btn {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.city-btn:hover {
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    transform: scale(1.08);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* About Section Background */
.about-bg {
    background: linear-gradient(135deg, #1e3a8a, #06b6d4);
    position: relative;
    overflow: hidden;
}

.about-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1581093450021-4a7363e9a6b7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

/* Services Section Background */
.services-bg {
    background: linear-gradient(135deg, #14b8a6, #4ade80);
    position: relative;
    overflow: hidden;
}

.services-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1581093458791-9f3c0b3c7c5f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.service-icon {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.card-hover:hover .service-icon {
    transform: scale(1.1);
    color: #2563eb;
}

/* Floating Buttons Styles */
.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: fixed;
    z-index: 50;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.floating-btn.call {
    background: #2563eb;
    bottom: 120px;
    right: 20px;
}

.floating-btn.whatsapp {
    background: #22c55e;
    bottom: 50px;
    right: 20px;
}

.floating-btn:hover.call {
    background: #1e40af;
}

.floating-btn:hover.whatsapp {
    background: #15803d;
}



/* Responsive Adjustments */
@media (max-width: 640px) {
    .section-slide-in {
        transform: translateY(15px);
    }

    .card-hover {
        padding: 12px;
    }

    .client-logo {
        width: 80px;
        height: 80px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
    }

    .city-btn {
        padding: 10px 16px;
        font-size: 0.875rem;
    }

    .floating-text {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .about-image {
        width: 100%;
        height: 200px;
    }

    .service-icon {
        font-size: 2rem;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .floating-btn.call {
        bottom: 100px;
        right: 16px;
    }

    .floating-btn.whatsapp {
        bottom: 40px;
        right: 16px;
    }

    /* Smaller buttons on mobile */
    .book-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .grid-cols-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .md\\:grid-cols-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .md\\:grid-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\\:grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* Modal Styles - Update z-index to be higher than navbar */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Increased z-index to be higher than navbar */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 15px;
    padding: 2rem;
    max-width: 90%;
    width: 500px;
    text-align: center;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal h1 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.modal p {
    color: #1e40af;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.modal .btn {
    background: #2563eb;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.modal .btn:hover {
    background: #1e40af;
}

.modal .close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1e3a8a;
    cursor: pointer;
}
