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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --white-color: #ffffff;
    --text-dark: #0f172a;
    --text-light: #475569;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white-color);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    animation: slideInLeft 0.6s ease-out;
    height: 100%;
}

.logo img {
    height: calc(100% - 2px);
    max-height: 78px;
    width: auto;
    border-radius: 8px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li {
    animation: fadeInUp 0.6s ease-out backwards;
}

.nav-menu li:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-menu li:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-menu li:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-menu li:nth-child(4) {
    animation-delay: 0.4s;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(30, 64, 175, 0.85) 100%),
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white-color);
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.btn-secondary:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-underline {
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    margin: 0 auto 1rem;
    border-radius: 3px;
    transition: width 0.8s ease-out 0.3s;
}

.section-header.visible .title-underline {
    width: 120px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.about-content {
    display: grid;
    gap: 3rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Our Clients Section */
.clients {
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
    overflow: hidden;
}

.clients-ribbon {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.clients-ribbon::before,
.clients-ribbon::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.clients-ribbon::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.clients-ribbon::after {
    right: 0;
    background: linear-gradient(to left, #f0f9ff, transparent);
}

.clients-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-item {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    padding: 1rem 2rem;
    border: 2px solid transparent;
    border-radius: 10px;
    background-origin: border-box;
    background-clip: text, border-box;
    transition: all 0.3s ease;
    position: relative;
}

.client-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(135deg, #93c5fd 0%, #dbeafe 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

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

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    background: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--white-color);
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

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

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #bfdbfe;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--white-color);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

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

/* Technologies Section */
.technologies {
    background: linear-gradient(180deg, #ffffff 0%, #dbeafe 100%);
}

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

.tech-item {
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    padding: 2rem 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
    border: 1px solid #bfdbfe;
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.tech-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech-item p {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Industries Section */
.industries {
    background: linear-gradient(180deg, #dbeafe 0%, #ffffff 100%);
}

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

.industry-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 2.5rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.industry-card i {
    font-size: 3rem;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.industry-card h4 {
    color: var(--white-color);
    font-size: 1.1rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-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" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
    background-size: cover;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--white-color);
    opacity: 0.95;
    margin-bottom: 2rem;
}

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

.cta-section .btn {
    animation: pulse 2s ease-in-out infinite;
}

.cta-section .btn-primary {
    background: var(--white-color);
    color: var(--primary-color);
    border-color: var(--white-color);
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.cta-section .btn-secondary:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white-color);
}

.contact-details h4 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.contact-details p a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details p a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid #bfdbfe;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.contact-form .btn {
    width: 100%;
    cursor: pointer;
    border: 2px solid var(--primary-color);
}

.contact-form .btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
}

.contact-form .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.contact-form .btn:disabled {
    background: #94a3b8;
    border-color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.7;
}

.contact-form .btn:disabled:hover {
    background: #94a3b8;
    border-color: #94a3b8;
    transform: none;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white-color);
}

.footer-section p {
    color: var(--gray-color);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--gray-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-color);
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Slide Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Floating Animation for Icons */
.feature-icon,
.service-icon,
.contact-icon {
    animation: float 3s ease-in-out infinite;
}

/* Stagger Animation Delays */
.service-card:nth-child(1),
.feature-card:nth-child(1),
.industry-card:nth-child(1),
.tech-item:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:nth-child(2),
.feature-card:nth-child(2),
.industry-card:nth-child(2),
.tech-item:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card:nth-child(3),
.feature-card:nth-child(3),
.industry-card:nth-child(3),
.tech-item:nth-child(3) {
    transition-delay: 0.3s;
}

.service-card:nth-child(4),
.feature-card:nth-child(4),
.industry-card:nth-child(4),
.tech-item:nth-child(4) {
    transition-delay: 0.4s;
}

.service-card:nth-child(5),
.industry-card:nth-child(5),
.tech-item:nth-child(5) {
    transition-delay: 0.5s;
}

.service-card:nth-child(6),
.tech-item:nth-child(6) {
    transition-delay: 0.6s;
}

.service-card:nth-child(7),
.tech-item:nth-child(7) {
    transition-delay: 0.7s;
}

.service-card:nth-child(8),
.tech-item:nth-child(8) {
    transition-delay: 0.8s;
}

.service-card:nth-child(9),
.tech-item:nth-child(9) {
    transition-delay: 0.9s;
}

.service-card:nth-child(10),
.tech-item:nth-child(10) {
    transition-delay: 1s;
}

.service-card:nth-child(11),
.tech-item:nth-child(11) {
    transition-delay: 1.1s;
}

.service-card:nth-child(12),
.tech-item:nth-child(12) {
    transition-delay: 1.2s;
}

/* Responsive Design */
/* Tablet & Mobile - 768px and below */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-wrapper {
        padding: 0.2rem 0;
        min-height: 65px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        max-height: 63px;
    }

    .nav-menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
        animation: none;
    }

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

    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Hero Section */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Sections */
    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
        letter-spacing: 1px;
    }

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

    /* About Section */
    .about-text p {
        font-size: 1rem;
    }

    /* Clients Section */
    .client-item {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }

    .clients-track {
        gap: 2rem;
    }

    /* Feature Cards */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    /* Tech Grid */
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .tech-item {
        padding: 1.5rem 1rem;
    }

    .tech-item i {
        font-size: 2.5rem;
    }

    /* Industries Grid */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .industry-card {
        padding: 2rem 1rem;
    }

    .industry-card i {
        font-size: 2.5rem;
    }

    .industry-card h4 {
        font-size: 1rem;
    }

    /* CTA Section */
    .cta-content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        align-items: flex-start;
    }

    .contact-icon {
        flex-shrink: 0;
    }

    .contact-details h4 {
        font-size: 1.3rem;
    }

    .contact-details p {
        font-size: 0.95rem;
        word-break: break-word;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section ul {
        list-style: none;
    }

    .social-links {
        justify-content: center;
    }

    /* Disable floating animations on mobile for better performance */
    .feature-icon,
    .service-icon,
    .contact-icon {
        animation: none;
    }

    /* Reduce transition delays on mobile */
    .service-card,
    .feature-card,
    .industry-card,
    .tech-item {
        transition-delay: 0s !important;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 12px;
    }

    /* Navigation */
    .nav-wrapper {
        min-height: 60px;
    }

    .logo img {
        max-height: 58px;
    }

    .nav-menu {
        padding: 1.5rem;
        top: 60px;
        height: calc(100vh - 60px);
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.8rem;
    }

    /* Hero Section */
    .hero {
        padding: 70px 0 50px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    /* Sections */
    section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        letter-spacing: 0.5px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Buttons */
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Clients Section */
    .client-item {
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
    }

    .clients-track {
        gap: 1.5rem;
    }

    .clients-ribbon::before,
    .clients-ribbon::after {
        width: 50px;
    }

    /* Feature & Service Cards */
    .feature-card,
    .service-card {
        padding: 1.2rem;
    }

    .feature-card h3,
    .service-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p,
    .service-card p {
        font-size: 0.9rem;
    }

    .feature-icon,
    .service-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i,
    .service-icon i {
        font-size: 1.8rem;
    }

    /* Tech Grid - Single Column on Small Mobile */
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .tech-item {
        padding: 1.2rem 1rem;
    }

    .tech-item i {
        font-size: 2rem;
    }

    .tech-item p {
        font-size: 0.9rem;
    }

    /* Industries Grid - Single Column */
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .industry-card {
        padding: 1.5rem 1rem;
    }

    .industry-card i {
        font-size: 2rem;
    }

    /* CTA Section */
    .cta-content h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    /* Contact Section */
    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        font-size: 1.2rem;
    }

    .contact-details h4 {
        font-size: 1.1rem;
    }

    .contact-details p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .contact-form-wrapper {
        padding: 1.2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 0.9rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

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

/* Extra Small Mobile - 360px and below */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

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

    .logo img {
        height: 40px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Mobile-Specific Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Better touch targets for mobile */
    .btn,
    .nav-link,
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Remove hover effects on touch devices */
    .service-card:hover,
    .feature-card:hover,
    .tech-item:hover,
    .industry-card:hover {
        transform: none;
    }

    /* Active states for touch feedback */
    .btn:active {
        transform: scale(0.98);
    }

    .service-card:active,
    .feature-card:active,
    .tech-item:active {
        opacity: 0.9;
    }
}

/* Landscape mode on mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 0 40px;
    }

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

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

    section {
        padding: 2rem 0;
    }
}