/* Global Styles */
:root {
    --primary-color: #0f172a;
    /* Keep dark for text readability */
    --secondary-color: #b91c1c;
    /* Red from image */
    --accent-color: #1e3a8a;
    /* Blue from image */
    --gold-color: #fbbf24;
    --text-color: #334155;
    --light-bg: #f0f4f8;
    /* Light blue-ish gray */
    --white: #ffffff;
    --gradient-bg: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    /* Matching the grey/blue vibe */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(185, 28, 28, 0.39);
}

.btn-primary:hover {
    background-color: #991b1b;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-left: 10px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-gold {
    background-color: var(--gold-color);
    color: var(--primary-color);
    box-shadow: 0 4px 14px 0 rgba(251, 191, 36, 0.39);
}

.btn-gold:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--primary-color);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.btn-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 50px;
}

.btn-nav:hover {
    background-color: var(--secondary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.hero-text h1 .highlight {
    background-color: var(--secondary-color);
    color: white;
    padding: 0 15px;
    border-radius: 8px;
}

.hero-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 600px;
    /* Prevents them from getting too wide on desktop */
}

.tag {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--accent-color);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
    text-align: center;
    line-height: 1.2;
}

.tag i {
    color: var(--secondary-color);
    font-size: 0.9em;
}

.tag:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
    max-height: 600px;
    border-radius: 20px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.blob {
    display: none;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-img-wrapper {
    flex: 1;
    position: relative;
}

.about-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    border-left: 5px solid var(--secondary-color);
}

.experience-badge .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-list {
    margin-top: 2rem;
}

.about-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.about-list li i {
    color: var(--secondary-color);
}

.experience-box {
    background-color: #f1f5f9;
    padding: 20px;
    border-radius: var(--radius);
    margin: 20px 0;
    border-left: 4px solid var(--accent-color);
}

.experience-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.experience-box ul {
    list-style: disc;
    padding-left: 20px;
}

.experience-box li {
    margin-bottom: 5px;
    color: #475569;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Award Section */
.award {
    padding: 100px 0;
    background-color: #1e293b;
    color: var(--white);
    position: relative;
}

.award-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.award-content {
    flex: 1;
}

.award-content h2 {
    color: var(--gold-color);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.award-content h3 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.award-content p {
    color: #cbd5e1;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.award-image {
    flex: 1;
}

.award-image img {
    border-radius: var(--radius);
    border: 4px solid var(--gold-color);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #94a3b8;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-logo {
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.social-links {
    margin-bottom: 30px;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 15px;
    opacity: 0.7;
}

.social-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.copyright {
    font-size: 0.9rem;
    border-top: 1px solid #334155;
    padding-top: 20px;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background-color: var(--white);
}

.review-summary {
    text-align: center;
    margin-bottom: 60px;
}

.rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stars {
    color: var(--gold-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Reviews Carousel */
.reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.reviews-grid::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 350px;
    scroll-snap-align: center;
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 250px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reviewer-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.stars-small {
    color: var(--gold-color);
    font-size: 0.9rem;
}

.google-icon {
    font-size: 1.5rem;
    background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.review-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        padding-top: 120px;
        text-align: center;
        height: auto;
    }

    .hero-content {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-tags {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .tag {
        font-size: 0.75rem;
        padding: 8px 5px;
        flex-direction: column;
        gap: 4px;
        white-space: normal;
        height: 100%;
    }

    .about-container,
    .award-container {
        flex-direction: column;
        text-align: center;
    }

    .about-img-wrapper,
    .award-image {
        margin-bottom: 2rem;
        width: 100%;
    }

    .about-img,
    .award-img {
        max-width: 100%;
        margin: 0 auto;
    }

    .experience-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -25px;
    }

    .about-list {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-img {
        max-height: 400px;
    }

    .award-content h3 {
        font-size: 2rem;
    }

    .review-card {
        flex: 0 0 85%;
    }
}

/* Developer Credit */
.developer-credit {
    margin-top: 25px;
    font-size: 0.85rem;
    opacity: 0.6;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
}

.developer-credit:hover {
    opacity: 1;
}

.developer-credit a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
}

.developer-credit a:hover {
    color: var(--white);
}

.dev-text {
    font-size: 0.8rem;
}

.dev-logo {
    height: 20px;
    width: auto;
    display: inline-block;
}

.dev-name {
    font-weight: 600;
}