* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f4f6fb;
    color: #222;
    line-height: 1.6;
}

/* ================= NAVBAR ================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 50px;
    background: #0f172a;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
}

.navbar nav a {
    color: #cbd5e1;
    margin-left: 20px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.2s ease;
}

.navbar nav a:hover {
    color: #4da3ff;
}

/* ================= HERO SECTION ================= */

.hero {
    min-height: 92vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    background: radial-gradient(circle at top, #1e293b, #020617);
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 900px;
}

/* Hero Heading Style */

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-top {
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
}

.hero-highlight {
    display: block;
    font-size: clamp(3.2rem, 7vw, 6.2rem);
    font-weight: 700;
    color: #4da3ff;
}

.hero-script {
    display: block;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-style: italic;
    font-weight: 500;
    margin-top: -5px;
    opacity: 0.95;
}

.hero-title small {
    display: block;
    margin-top: 14px;
    font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    letter-spacing: 1px;
    color: #cbd5e1;
}

.hero-title small strong {
    color: white;
    font-weight: 600;
}

/* Sub Text */

.hero h2 {
    margin-top: 18px;
    font-size: 1.3rem;
    font-weight: 500;
}

.hero h2 span {
    color: #4da3ff;
}

.hero-tagline {
    margin-top: 10px;
    font-size: 1.05rem;
    max-width: 600px;
    margin-inline: auto;
    color: #cbd5e1;
}

/* Buttons */

.hero-buttons {
    margin-top: 28px;
}

.btn {
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 6px;
    font-size: 0.95rem;
    transition: 0.25s ease;
}

.primary {
    background: #4da3ff;
    color: white;
}

.primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.secondary {
    border: 1px solid #4da3ff;
    color: #4da3ff;
}

.secondary:hover {
    background: rgba(77,163,255,0.1);
}

/* ================= SECTIONS ================= */

.section {
    padding: 90px 20px;
    max-width: 1100px;
    margin: auto;
}

.section h2 {
    text-align: center;
    margin-bottom: 18px;
    font-size: 2rem;
}

.section p {
    text-align: center;
    max-width: 700px;
    margin: auto;
    color: #444;
}

/* Dark Section */

.dark {
    background: #020617;
    color: white;
}

.dark p {
    color: #cbd5e1;
}

/* ================= PRICING ================= */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.price-card {
    background: white;
    padding: 28px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    transition: 0.25s ease;
}

.price-card:hover {
    transform: translateY(-6px);
}

.dark .price-card {
    background: #0f172a;
    box-shadow: none;
}

.price-card h3 {
    font-size: 1.3rem;
}

.price {
    font-size: 2rem;
    font-weight: 600;
    color: #4da3ff;
    margin: 12px 0;
}

.price-card ul {
    list-style: none;
    margin: 20px 0;
}

.price-card li {
    margin: 8px 0;
    font-size: 0.95rem;
}

/* Featured Card */

.featured {
    border: 2px solid #4da3ff;
}

/* ================= CONTACT ================= */

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.contact-links a {
    font-size: 1.8rem;
    color: #4da3ff;
    transition: 0.25s ease;
}

.contact-links a:hover {
    transform: scale(1.2);
}

/* WhatsApp Green */

.contact-links .fa-whatsapp {
    color: #25D366;
}
/* ================= LARGE REVIEWS SHOWCASE ================= */

.reviews-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.review-card-large {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: white;
}

.review-card-large img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.review-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.review-card-large:hover img {
    transform: scale(1.03);
}

.review-overlay-large {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0,0,0,0.5);
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card-large:hover .review-overlay-large {
    opacity: 1;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .review-card-large img {
        max-height: 300px;
    }

    .review-overlay-large {
        font-size: 1rem;
        padding: 14px;
        opacity: 1; /* Show overlay always on mobile */
    }
}

/* ================= FOOTER ================= */

footer {
    background: #0f172a;
    padding: 18px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* ================= REVIEWS / PORTFOLIO ================= */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.review-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: white;
}

.review-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.review-card:hover img {
    transform: scale(1.05);
}

.review-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px;
    background: rgba(0,0,0,0.6);
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover .review-overlay {
    opacity: 1;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card img {
        height: 220px;
    }
}


/* ================= ANIMATION ================= */

.hero-title span,
.hero-title small {
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .hero h2 {
        font-size: 1.1rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .section {
        padding: 70px 15px;
    }

}
