:root {
    --primary-orange: #ff6b35;
    --dark-red: #d73527;
    --light-orange: #ffab91;
    --light-gray: #f5f7fa;
    --twitter-blue: #ff6b35;
    --accent-color: #ff4757;
    --text-color: #333;
    --section-spacing: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar.sticky {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-orange) 100%);
    padding: 0.8rem 5%;
}

.navbar.sticky .logo,
.navbar.sticky .nav-links a {
    color: white;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.logo-img {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.social-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.twitter-follow {
    background: var(--twitter-blue);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.twitter-follow:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(29, 161, 242, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-orange);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-red) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 8rem 1rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    animation: fadeIn 1s ease;
}

.hero h1 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    background: white;
    color: var(--primary-orange);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.secondary-cta {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Services Section */
.section {
    padding: var(--section-spacing) 0;
}

.section-light {
    background: var(--light-gray);
}

.section-white {
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-red);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--primary-orange);
    transition: height 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 2.5rem;
    color: transparent;
    text-shadow: 0 0 0 var(--primary-orange);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

/* MDM Section */
.mdm-section {
    padding: var(--section-spacing) 0;
    background: white;
}

.mdm-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
}

.mdm-text h2 {
    color: var(--dark-red);
    margin-bottom: 1.5rem;
}

.mdm-features {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.mdm-features ul {
    list-style: none;
    margin-top: 1.5rem;
}

.mdm-features li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.mdm-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Apps Section */
.app-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    margin: 0 auto 2rem;
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.app-description {
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.app-store-button {
    background: black;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.app-store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.app-feature {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    color: transparent;
    text-shadow: 0 0 0 var(--primary-orange);
    margin-bottom: 1rem;
}

/* Support Section */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.support-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.support-icon {
    font-size: 2.5rem;
    color: transparent;
    text-shadow: 0 0 0 var(--primary-orange);
    margin-bottom: 1.5rem;
}

/* Hire/Contact Section */
.hire-section {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-orange) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hire-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.2;
}

.hire-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hire-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hire-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    color: var(--text-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-red);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

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

.submit-button {
    background: var(--primary-orange);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin: 4rem 0;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: var(--light-gray);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--light-orange);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.author-info {
    line-height: 1.3;
}

.author-name {
    font-weight: 600;
    color: var(--text-color);
}

.author-role {
    font-size: 0.9rem;
    color: #666;
}

/* Footer */
footer {
    background: #212529;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-col h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding-top: 6rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 4rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero p {
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .service-card,
    .support-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .hire-form {
        padding: 1.5rem;
    }
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-orange);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--dark-red);
    transform: translateY(-5px);
}

ul,
ol {
    list-style: none;
}

.marquee-section {
    background: #ffffff;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow-y: hidden;
}

.marquee-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 28px 16px;
}

.marquee-content h6 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #525252;
}

.marquee-content__logos-wrapper {
    overflow: hidden;
}

.marquee-content__logos {
    display: flex;
    width: 200%;
}

.marquee-content__logos__group {
    display: flex;
    padding: 2px 0px;
    animation: scroll-x 30s linear infinite;
}

.marquee-content__logos__group,
.marquee-content__logos {
    gap: 78.5px;
}

@keyframes scroll-x {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(calc(-100% - 78.5px));
    }
}

.marquee-content__logos__group img {
    width: 218px;
    height: auto;
}

@media screen and (min-width: 768px) {
    .marquee-section {
        box-shadow:
            0px 4px 6px -1px rgba(0, 0, 0, 0.1),
            0px 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    .marquee-content__logos__group,
    .marquee-content__logos {
        padding: 0;
        gap: 8px;
    }
}

@media screen and (min-width: 1440px) {
    .marquee-section {
        box-shadow:
            0px 10px 15px -3px rgba(0, 0, 0, 0.1),
            0px 4px 6px -2px rgba(0, 0, 0, 0.05);
        border-radius: 6px;
    }

    .marquee-content {
        /* padding: 96px 0px; */
    }

    .marquee-content__logos__group,
    .marquee-content__logos {
        gap: 32px;
    }

    @keyframes scroll-x {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(calc(-100% - 32px));
        }
    }
}

.payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    padding: 16px 0;
}

.payment-icon {
    padding: 0 10px;
}