/* Global Styles & Variables */
:root {
    --bg-main: #ffffff;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --primary-gold: #fbbf24;
    --text-main: #000000;
    --text-secondary: #333333;
    --transition-speed: 0.3s;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --header-height: 80px;
}

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

body {
    background-color: #ffffff;
    color: #000000;
    font-family: var(--font-body);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: #000;
    font-weight: 700;
}

.text-gold {
    color: #f59e0b;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-tagline {
    color: #f59e0b;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #f59e0b;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #d97706;
}

.btn-outline {
    border: 2px solid #f59e0b;
    color: #f59e0b;
    background: transparent;
    border-radius: 30px;
}

.btn-outline:hover {
    background: #f59e0b;
    color: #fff;
}

/* Navbar - Premium & Bold */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px;
    /* Made logo bigger as requested */
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    /* Subtle zoom on logo */
}

/* Nav Links - Bigger & Bolder */
.nav-links {
    display: flex;
    gap: 40px;
    /* More space between links */
    align-items: center;
}

.nav-links li {
    position: relative;
    padding: 10px 0;
    /* Increase hit area and spacing */
}

.nav-links a {
    font-weight: 800;
    /* Extra bold */
    font-size: 1.15rem;
    /* Larger text */
    color: #1f2937;
    /* Darker grey for sharpness */
    letter-spacing: 0.5px;
    display: flex;
    /* alignment for icons */
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.nav-links a i {
    font-size: 0.8rem;
    color: #f59e0b;
    /* Gold chevron */
    transition: transform 0.3s;
}

.nav-links li:hover>a {
    color: #f59e0b;
}

.nav-links li:hover>a i {
    transform: rotate(180deg);
}

/* Dropdown Menu - Dark Theme */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    /* Align slightly left or center */
    background: #111827;
    /* Dark background like the example image */
    min-width: 260px;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1001;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    color: #e5e7eb;
    /* Light text */
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 25px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #f59e0b;
    padding-left: 30px;
    /* Slide effect */
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Add a small arrow tip to the dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 30px;
    width: 12px;
    height: 12px;
    background: #111827;
    transform: rotate(45deg);
}

/* Hamburger Menu Toggle */
.nav-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1f2937;
    z-index: 1002;
    transition: color 0.3s ease;
}

.nav-toggle:hover {
    color: #f59e0b;
}

.nav-toggle.active {
    color: #f59e0b;
}

/* Mobile Navigation Styles */
@media (max-width: 968px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 0;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        padding: 0;
        margin-bottom: 5px;
    }

    .nav-links>li>a {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-links>li>a:hover {
        background: #f9fafb;
        color: #f59e0b;
        padding-left: 25px;
    }

    /* Dropdown adjustments for mobile */
    .dropdown-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        box-shadow: none;
        background: #f9fafb;
        margin-top: 10px;
        margin-left: 20px;
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        max-height: 800px;
        padding: 10px 0;
    }

    .dropdown-menu a {
        color: #374151;
        font-size: 0.95rem;
        padding: 10px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dropdown-menu a:hover {
        background: #ffffff;
        color: #f59e0b;
        padding-left: 25px;
    }

    /* Overlay for mobile menu */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

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

    /* Logo size adjustment for mobile */
    .logo-img {
        height: 80px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('../assets/hero-banner.png') no-repeat top center;
    background-size: contain;
    height: 1200px;
    display: flex;
    align-items: center;
    padding-top: 0;
    margin-top: 100px !important;
    overflow: visible;
}

/* Responsive inline hero image to guarantee full-width display */
.hero-picture {
    display: block;
    width: 100%;
    height: 650px;
}
.hero-picture img.hero-img {
    display: block;
    width: 100%;
    height: 650px;
    object-fit: contain; /* show full image within box without cropping */
    object-position: center center;
    background-color: transparent; /* remove black bars; underlying page shows through */
    position: relative;
    z-index: 2;
}

/* remove overlay so image is clear */
.hero-overlay {
    display: none;
}

/* Mobile: swap hero banner image to the mobile-specific asset and keep it visible below the fixed navbar */
@media (max-width: 767px) {
    .hero-section {
        background: url('../assets/hero-banner-for-mobile.png') no-repeat;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center calc(var(--header-height) + 24px);
        min-height: calc(100vh - var(--header-height));
        height: auto;
        padding-top: calc(var(--header-height) + 24px);
        display: flex;
        align-items: flex-start;
        margin-top: 89px;
    }
}

.hero-content {
    position: absolute;
    top: 85%;
    left: 22%;
    transform: translateY(-50%);
    max-width: 600px;
    color: #ffffff;
    display: flex;
    justify-content: flex-start;
    width: auto;
    z-index: 5;
}

/* Keep the Get Started button visually stable across widths using percentage positioning.
   Tweak for medium and small screens for better alignment. */
@media (max-width: 1024px) {
    .hero-content {
        left: 12%;
        top: 58%;
    }
}

@media (max-width: 767px) {
    /* Fix Get Started button to a consistent spot on mobile devices */
    .hero-content {
        position: fixed;
        left: 50%;
        bottom: 120px;
        transform: translateX(-50%);
        width: auto;
        justify-content: center;
        z-index: 9999;
    }
    .hero-content .btn {
        padding: 16px 32px;
        font-size: 1rem;
    }

    /* Slight adjustment for very small screens */
    @media (max-width: 420px) {
        .hero-content {
            bottom: 90px;
        }
        .hero-content .btn {
            padding: 14px 28px;
        }
    }
}
.hero-content .btn{
    font-size: large;
    padding: 25px 50px;
    border-radius: 30px;
}
/* Make main promo headings centered and gold-ish across pages */
.section-title,
.page-title {
    text-align: center;
    color: var(--primary-gold);
}

/* Promo titles should be primarily white, but keep any .text-gold spans gold */
.promo-title {
    text-align: center;
    color: #ffffff;
}
.promo-title .text-gold {
    color: var(--primary-gold);
}

/* Ensure app header page titles inherit gold color and center alignment */
.app-header .page-title {
    color: var(--primary-gold);
    text-align: center;
}

.hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    color: #f3f3f3;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Services */
.services-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.service-card {
    background: #ffffff;
    padding: 20px;
    /* Minimal styling for clean white look */
}

.icon-box {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
}

/* Partner Section - Stylish Text Container */
.partner-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.partner-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.partner-content {
    background: #fff;
    padding: 40px;
    border-left: 5px solid #f59e0b;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Lifted look */
    border-radius: 0 20px 20px 0;
    position: relative;
    z-index: 2;
}

.partner-content h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #000;
}

.partner-content .tag {
    display: inline-block;
    background: #fff8e1;
    color: #f59e0b;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partner-content p {
    color: #555;
    margin-bottom: 30px;
}

/* Projects - Creative Work Professional Look */
.work-section {
    padding: 120px 0;
    background-color: #f9fafb;
    /* Slight off-white to differentiate */
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.project-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
}

.project-image-box {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f3f4f6;
}

.project-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image-box img {
    transform: scale(1.05);
}

.project-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Center project titles and content (make project cards match centered promo sections) */
.projects-grid .project-content {
    text-align: center;
    align-items: center;
}

/* Center overlay content in promo cards (bot/game/project showcases) */
.web-promo-card .hover-overlay {
    text-align: center;
    padding: 20px;
}
.web-promo-card .hover-overlay h3,
.web-promo-card .hover-overlay .hover-desc {
    margin-left: 0;
    margin-right: 0;
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.project-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 25px;
    flex: 1;
}

.project-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Payment */
.payment-section {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 2.5rem;
    color: #ccc;
    margin-top: 20px;
}

/* Testimonials - Premium Design */
.testimonials-section {
    padding: 120px 0;
    background-color: #4a042e;
    /* Deep purple/burgundy based on premium aesthetic */
    background-image: linear-gradient(135deg, #4a042e 0%, #2d021c 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Add a subtle background accent circle if desired */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-section .section-title {
    color: #ffffff;
    margin-bottom: 60px;
}

.testimonials-section .section-tagline {
    color: #fbbf24;
    /* Gold */
    opacity: 0.9;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 40px;
    /* Space for scrollbar or shadows */
    /* If grid is preferred over flex scroll: */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    color: #333333;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.quote-icon {
    font-size: 2rem;
    color: #e5e7eb;
    margin-bottom: 20px;
}

.review-text {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f3f4f6;
    padding-top: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h5 {
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    /* Gold stars */
    font-size: 0.75rem;
}

.quote-end {
    color: #e5e7eb;
    font-size: 1.5rem;
    align-self: flex-end;
}

/* Footer - Light & Attractive */
.footer {
    padding: 80px 0 40px;
    background: #fdfdfd;
    text-align: center;
    /* Very light background */
    border-top: 1px solid #eaeaea;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.social-links a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy effect */
}

/* Brand Colors on Hover */
.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    color: #fff;
    box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3);
}

.social-links a:hover .fa-facebook-f {
    background: transparent;
}

/* 1. Instagram */
.social-links a:nth-child(1):hover {
    background: #E1306C;
    border-color: #E1306C;
}

/* 2. TikTok */
.social-links a:nth-child(2):hover {
    background: #000000;
    border-color: #000000;
}

/* 3. Twitter */
.social-links a:nth-child(3):hover {
    background: #000000;
    border-color: #000000;
}

/* 4. Telegram */
.social-links a:nth-child(4):hover {
    background: #0088cc;
    border-color: #0088cc;
}

/* 5. Email */
.social-links a:nth-child(5):hover {
    background: #D44638;
    border-color: #D44638;
}

/* 6. WhatsApp */
.social-links a:nth-child(6):hover {
    background: #25D366;
    border-color: #25D366;
}

/* =========================================
   App Development Page Styles
   ========================================= */

.app-dev-page {
    padding-top: 200px;
    /* Increased padding top as requested */
    padding-bottom: 80px;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

/* Curved Background Shape - Centered Oval Arch */
.curve-bg {
    position: absolute;
    top: 400px;
    /* Stats much lower from navbar */
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    /* Wide enough to look like a gentle curve */
    height: 100%;
    /* Extend to the bottom of the section */
    background: #eef2ff;
    border-radius: 50% 50% 0 0;
    z-index: 0;
}

/* ... existing styles ... */

/* Update Website Development Page Styles */

/* Ensure single row for web promo cards */
.web-promo-card {
    width: 350px;
    /* Small enough to fit 3 in a row */
    height: 400px;
    /* Adjusted height for landscape */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    background: #000;
    flex-shrink: 0;
}

/* Ensure showcase is flex row */
.promo-showcase {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    /* Allow wrap on mobile */
}

@media (min-width: 1024px) {
    .promo-showcase {
        flex-wrap: nowrap;
        /* Force single row on desktop */
    }
}

.web-promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.web-promo-card:hover .hover-overlay {
    transform: translateY(0);
}

.web-promo-card:hover .promo-label {
    transform: translate(-50%, 100%);
    opacity: 0;
}

.web-promo-card:hover img {
    transform: scale(1.1);
    opacity: 0.6;
}

/* Adjustments for responsive */
@media (max-width: 768px) {
    .web-promo-card {
        width: 100%;
        height: 220px;
    }
}

/* =========================================
   Game Development Page Styles
   ========================================= */

/* Game Showcase Layout */
.game-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Align vertically center */
    gap: 40px;
    flex-wrap: wrap;
}

.game-video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: #000;
    cursor: pointer;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.game-video-card:hover .video-thumb {
    opacity: 0.4;
}

.play-icon {
    position: absolute;
    font-size: 4rem;
    color: #fff;
    z-index: 2;
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s;
}

.game-video-card:hover .play-icon {
    transform: scale(1.1);
    color: #fbbf24;
}

/* Vertical Video (Phone style) */
.vertical-video {
    width: 320px;
    height: 600px;
    /* Tall like standard app promo */
}

/* Horizontal Video (Landscape style) */
.horizontal-video {
    width: 600px;
    height: 380px;
    /* Similar to web promo */
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .horizontal-video {
        width: 100%;
        max-width: 600px;
        height: 340px;
    }

    .vertical-video {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .game-showcase {
        flex-direction: column;
    }

    .vertical-video,
    .horizontal-video {
        width: 100%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 16/9;
        /* Fallback to standard video ratio on mobile for consistency, or keep distinct */
    }

    .vertical-video {
        aspect-ratio: 9/16;
        /* Keep vertical ratio? Or adaptable? */
        height: 500px;
    }
}


.app-dev-page .container {
    position: relative;
    z-index: 2;
}

.app-header {
    margin-bottom: 50px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.breadcrumb-tag {
    display: inline-block;
    background: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #666;
}

/* Service Tag Pill */
.service-tag {
    display: inline-block;
    background: #f3f4f6;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

/* Hero Illustration (Icon Stack) */
.app-hero-illustration {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.bulb-graphic {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-bulb {
    font-size: 10rem;
    color: #f59e0b;
    /* Gold/Yellow Bulb */
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(245, 158, 11, 0.3));
}

.gear-1 {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 5rem;
    color: #4ade80;
    /* Green Gear */
    animation: spin 10s linear infinite;
}

.gear-2 {
    position: absolute;
    bottom: 20px;
    left: 0;
    font-size: 4rem;
    color: #f43f5e;
    /* Red/Pink Gear */
    animation: spin-reverse 8s linear infinite;
}

.code-icon {
    position: absolute;
    top: 50%;
    right: -20px;
    font-size: 3rem;
    color: #6366f1;
    /* Blue Icon */
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    100% {
        transform: rotate(-360deg);
    }
}

/* Main Text */
.app-main-text {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
}

.app-main-text p {
    margin-bottom: 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.f-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #4f46e5;
    /* Primary icon color */
    background: #e0e7ff;
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    min-height: 40px;
    /* Align titles */
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card p {
    font-size: 0.85rem;
    color: #666;
}

/* Bottom Promo Section */
.app-promo-bottom {
    background: #4a042e;
    text-align: center;
    /* Deep purple */
    padding: 100px 0;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

.app-promo-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a042e 0%, #2d021c 100%);
    z-index: 1;
}

.app-promo-bottom .container {
    position: relative;
    z-index: 2;
}

.promo-tag {
    color: #fbbf24;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    text-align: center;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.promo-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.promo-showcase {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Promo Card & Interactions */
.promo-card {
    width: 320px;
    height: 600px;
    /* Taller vertical aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    background: #000;
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Static Bottom Label */
.promo-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover Overlay */
.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 4, 46, 0.96);
    /* Deep Brand Purple */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.hover-overlay.right-content {
    align-items: flex-end;
    text-align: right;
    padding-right: 30px;
    padding-left: 30px;
}

.hover-overlay h3 {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 20px;
}

.hover-desc {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.live-btn {
    display: inline-block;
    background: #ffffff;
    color: #4a042e;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

.live-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Hover Interactions */
.promo-card:hover .hover-overlay {
    transform: translateY(0);
}

.promo-card:hover .promo-label {
    transform: translate(-50%, 100%);
    /* Slide label down out of view */
    opacity: 0;
}

.promo-card:hover img {
    transform: scale(1.1);
    opacity: 0.6;
}

/* =========================================
   Website Development Page Styles
   ========================================= */

/* Reuse app-dev-page for updated page layout, but target cards differently */

/* CSS Cleaned up - Web Promo Cards are defined in the main block above */

/* =========================================
   About Page Styles
   ========================================= */

.about-page .app-main-text {
    display: none;
    /* Hide default text block from previous page clones if present */
}

/* Intro Section */
.about-intro-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text-content {
    flex: 1;
    min-width: 300px;
}

.intro-gold {
    color: #fbbf24;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.intro-headline {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 25px;
    color: #1f2937;
}

.intro-sub {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Stats Section */
.about-stats-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: #fff;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateX(10px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6366f1;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #4a042e;
    /* Brand Color */
    margin: 0;
}

.stat-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Info Row (Duties & Qualities) */
.about-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 100px;
}

.info-col {
    flex: 1;
    min-width: 300px;
}

.info-col h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.info-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: #fbbf24;
    border-radius: 2px;
}

.info-col ul {
    list-style: none;
    padding: 0;
}

.info-col ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #4b5563;
}

.info-col ul li::before {
    content: '\f00c';
    /* Check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #10b981;
    /* Green check */
}

/* Team Grid */
.team-section {
    margin-bottom: 100px;
}

.small-text-gold {
    color: #d97706;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 40px;
    display: block;
}

.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.team-card {
    width: 200px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    text-align: left;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-info {
    padding: 15px;
}

.team-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    line-height: 1.2;
}

.team-info p {
    font-size: 0.8rem;
    color: #888;
}

/* About Testimonials */
.about-testimonials {
    background: #4a042e;
    /* Dark background section */
    padding: 80px 0;
}

.about-testimonials .testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.client-info-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}


/* =========================================
   Contact Page Styles
   ========================================= */

.contact-page {
    /* Ensure no oval background here */
    background: #fff;
    padding-bottom: 100px;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 60px;
}

.contact-info-side {
    flex: 1;
    min-width: 300px;
}

.contact-form-side {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Soft shadow like image */
}

/* Headings */
.contact-headline {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #111;
}

/* Map */
.map-container {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    background: #eee;
}

/* Details Grid */
.contact-details-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-item {
    flex: 1 1 45%;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item.full-width {
    flex: 1 1 100%;
}

.c-icon {
    font-size: 1.5rem;
    color: #fbbf24;
    /* Gold icon usually, here red/pink/gold as per desire. Image shows red/pink icons */
}

/* Override icons color based on image reference - looks reddish/pink */
.c-icon i {
    color: #ff6b6b;
}

.c-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.c-text p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Form Styles */
.crystal-form .form-group {
    margin-bottom: 20px;
}

.crystal-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.9rem;
}

/* Input style to match image: rounded, light bg/border */
.crystal-form .form-control {
    width: 100%;
    padding: 15px 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    transition: all 0.3s;
}

.crystal-form .form-control:focus {
    border-color: #fbbf24;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.crystal-form textarea.form-control {
    resize: none;
    height: 120px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: #fbbf24;
    /* Gold button */
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 15px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #d97706;
}

@media (max-width: 768px) {
    .contact-layout {
        flex-direction: column;
    }
}

/* =========================================
   WhatsApp Floating Button - Premium Design
   ========================================= */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    overflow: hidden;
}

.whatsapp-float:hover {
    width: 230px;
    border-radius: 50px;
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    transform: translateY(-3px);
    justify-content: flex-start;
    padding-left: 20px;
}

.whatsapp-float i {
    font-size: 2rem;
    transition: all 0.3s ease;
}

.whatsapp-float:hover i {
    font-size: 1.8rem;
}

.whatsapp-text {
    font-size: 0.9rem;
    font-weight: 700;
    display: none;
    white-space: nowrap;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    margin-left: 12px;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.whatsapp-float:hover .whatsapp-text {
    display: inline-block;
    opacity: 1;
}

/* Pulse animation for attention */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    animation: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .whatsapp-float:hover {
        width: 60px;
        border-radius: 50%;
    }

    .whatsapp-text {
        display: none;
    }
}

/* =========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ========================================= */

/* Typography adjustments for mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-tagline {
        font-size: 0.75rem;
    }

    .container {
        padding: 0 15px;
    }

    /* Hero Section Mobile */
    .hero-section {
        height: 70vh;
        background-size: contain;
        background-position: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    /* Partner Section Mobile */
    .partner-section {
        padding: 60px 0;
    }

    .partner-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .partner-content {
        padding: 30px 20px;
    }

    .partner-content h2 {
        font-size: 1.8rem;
    }

    /* Projects Section Mobile */
    .work-section {
        padding: 60px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-card {
        border-radius: 16px;
    }

    .project-image-box {
        height: 250px;
    }

    .project-content {
        padding: 25px 20px;
    }

    .project-title {
        font-size: 1.4rem;
    }

    .project-desc {
        font-size: 0.9rem;
    }

    /* Payment Section Mobile */
    .payment-section {
        padding: 40px 0;
    }

    .payment-section h3 {
        font-size: 1.2rem;
    }

    .payment-icons {
        font-size: 2rem;
        gap: 20px;
    }

    /* Testimonials Section Mobile */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .review-text {
        font-size: 0.9rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 50px 0 30px;
    }

    .social-links {
        gap: 15px;
        flex-wrap: wrap;
    }

    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    /* App Development Page Mobile */
    .app-dev-page {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .app-hero-illustration {
        margin-bottom: 30px;
    }

    .bulb-graphic {
        width: 180px;
        height: 180px;
    }

    .main-bulb {
        font-size: 6rem;
    }

    .gear-1 {
        font-size: 3rem;
    }

    .gear-2 {
        font-size: 2.5rem;
    }

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

    .app-main-text {
        font-size: 0.95rem;
        margin-bottom: 50px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Promo Section Mobile */
    .app-promo-bottom {
        padding: 60px 0;
    }

    .promo-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .promo-showcase {
        gap: 30px;
    }

    .promo-card {
        width: 100%;
        max-width: 320px;
        height: 500px;
    }

    .web-promo-card {
        width: 100%;
        height: 300px;
    }

    /* About Page Mobile */
    .about-intro-grid {
        gap: 30px;
        margin-bottom: 50px;
    }

    .intro-headline {
        font-size: 1.4rem;
    }

    .about-info-row {
        gap: 30px;
        margin-bottom: 60px;
    }

    .info-col h3 {
        font-size: 1.3rem;
    }

    .team-section {
        margin-bottom: 60px;
    }

    .team-grid {
        gap: 20px;
    }

    .team-card {
        width: 100%;
        max-width: 250px;
    }

    /* Contact Page Mobile */
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .contact-headline {
        font-size: 1.6rem;
    }

    .contact-form-side {
        padding: 30px 20px;
    }

    .map-container {
        height: 250px;
    }

    .contact-item {
        flex: 1 1 100%;
    }

    /* Game Development Mobile */
    .game-showcase {
        gap: 25px;
    }

    .vertical-video {
        width: 100%;
        max-width: 280px;
        height: 450px;
    }

    .horizontal-video {
        width: 100%;
        max-width: 100%;
        height: 280px;
    }

    .play-icon {
        font-size: 3rem;
    }

    /* Hover overlays on mobile */
    .hover-overlay h3 {
        font-size: 1.5rem;
    }

    .hover-desc {
        font-size: 0.9rem;
    }

    .live-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .navbar {
        padding: 15px 0;
    }

    .logo-img {
        height: 60px;
    }

    .nav-links {
        width: 100%;
        padding: 80px 20px 20px;
    }

    .hero-section {
        height: 60vh;
    }

      .hero-content {
        max-width: 600px;
        position: relative;
        color: #ffffff;
        top: 51px;
        left: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
    }
.hero-content .btn{
    padding: 25px 51px;
    border-radius: 30px;
    font-size: medium;
}
    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .partner-content h2 {
        font-size: 1.5rem;
    }

    .project-title {
        font-size: 1.2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .payment-icons {
        font-size: 1.8rem;
        gap: 15px;
    }

    .promo-card,
    .web-promo-card {
        height: 400px;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .intro-headline {
        font-size: 1.2rem;
    }

    .contact-headline {
        font-size: 1.3rem;
    }
}

/* Tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .logo-img {
        height: 100px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        gap: 25px;
    }
}
@media (min-width: 1511px) and (max-width: 1621px) {
    .hero-content {
    position: absolute;
    top: 76%;
    left: 22%;
    transform: translateY(-50%);
    max-width: 600px;
    color: #ffffff;
    display: flex;
    justify-content: flex-start;
    width: auto;
    z-index: 5;
}
}
@media (min-width: 1411px) and (max-width: 1511px) {
    .hero-content {
    position: absolute;
    top: 68%;
    left: 22%;
    transform: translateY(-50%);
    max-width: 600px;
    color: #ffffff;
    display: flex;
    justify-content: flex-start;
    width: auto;
    z-index: 5;
}
}
@media (min-width: 1321px) and (max-width: 1411px) {
    .hero-content {
    position: absolute;
    top: 68%;
    left: 22%;
    transform: translateY(-50%);
    max-width: 600px;
    color: #ffffff;
    display: flex;
    justify-content: flex-start;
    width: auto;
    z-index: 5;
}
}
@media (min-width: 1223px) and (max-width: 1321px) {
   .hero-content {
    position: absolute;
    top: 61%;
    left: 18%;
    transform: translateY(-50%);
    max-width: 600px;
    color: #ffffff;
    display: flex;
    justify-content: flex-start;
    width: auto;
    z-index: 5;
}
}
@media (min-width: 1129px) and (max-width: 1223px) {
   .hero-content {
    position: absolute;
    top: 61%;
    left: 18%;
    transform: translateY(-50%);
    max-width: 600px;
    color: #ffffff;
    display: flex;
    justify-content: flex-start;
    width: auto;
    z-index: 5;
}
}
@media (min-width: 768px) and (max-width: 1129px) {
   .hero-content {
   display: none;
}
}