:root {
    --primary-color: #ff6600;
    --primary-dark: #e65c00;
    --secondary-color: #ff9800;
    --accent-color: #ff4500;
    --whatsapp-color: #25d366;
    --text-main: #1a1a1b;
    --text-muted: #5f6368;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

a {
    text-decoration: none;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Scroll Animation Helper */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 28px;
    color: var(--primary-color);
}

    .logo span {
     color: var(--text-main);
}

.menu-btn {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

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

.nav-cta {
    display: flex;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    text-align: center;
    white-space: nowrap;
    min-height: 48px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-primary-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

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

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

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-blue {
    background: #0066cc;
    color: var(--white);
}

.btn-block {
    width: 100%;
    display: block;
}

.hero-btns .btn {
    min-width: 240px;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
}

.hero-btns .btn:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    /* Balanced gap */
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 24px;
    /* Balanced padding */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 17px;
    color: var(--text-main);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-item i {
    color: var(--primary-color);
    font-size: 22px;
}

/* Services */
.services {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-category h3 {
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 102, 0, 0.1);
}

.card .icon {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 102, 0, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.card:hover .icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(-5deg) scale(1.05);
}

.card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.card p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.card .btn-sm {
    padding: 8px 20px;
    font-size: 14px;
    margin-top: 15px;
}

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

.card-list li {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-list li i {
    color: var(--whatsapp-color);
    font-size: 14px;
}

.card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.card-footer .price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.card-footer .timeline {
    font-size: 13px;
    background: rgba(0, 0, 0, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
    color: var(--text-muted);
    font-weight: 600;
}

/* IT Solutions Cards */
.it-solutions {
    padding: 140px 0;
    background: var(--white);
}

.it-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    /* Increased gap */
}

.it-grid .card {
    text-align: center;
    align-items: center;
}

.it-grid .btn-sm {
    margin-top: auto;
    width: 100%;
}

/* Industries We Serve Section */
.industries {
    padding: 100px 0;
    background: var(--bg-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.industry-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.industry-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    background: rgba(255, 102, 0, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.authority {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.industry-card .card-list {
    margin-bottom: 0;
}

.industries-seo {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.industries-cta {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.industries-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.industries-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

/* Process Section */
.process {
    padding: 140px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    /* Increased gap */
    position: relative;
}

.process-step {
    text-align: center;
    padding: 60px 30px;
    /* Increased internal padding */
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
}

.process-step:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8533 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 24px;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.process-step i {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.process-step p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .it-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {

    .it-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Why Choose Us */
.why-choose {
    padding: 140px 0;
}

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

.why-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-main);
}

.why-list {
    margin-top: 30px;
}

.why-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.why-list li i {
    color: var(--primary-color);
    font-size: 20px;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    /* Increased gap */
}

.stat-box {
    background: linear-gradient(145deg, var(--primary-color) 0%, #ff8533 100%);
    color: var(--white);
    padding: 60px 40px;
    /* Increased internal padding */
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.25);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: scale(1.05);
}

.stat-box h3 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.95;
}

/* Testimonials */
.testimonials {
    padding: 140px 0;
    background: var(--bg-light);
}

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



.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(255, 102, 0, 0.05);
    font-family: serif;
    line-height: 1;
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 14px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 24px;
    color: var(--text-main);
    line-height: 1.6;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.testimonial-card h5 {
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 700;
}

.testimonial-card span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Final CTA */
.final-cta {
    padding: 140px 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 40%),
        linear-gradient(135deg, var(--primary-color) 0%, #ff8533 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="white" fill-opacity="0.05"/></svg>');
    opacity: 0.3;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 48px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}



/* Contact */
.contact {
    padding: 140px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text-main);
}

.contact-info p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
}

.contact-info p i {
    color: var(--primary-color);
    font-size: 22px;
    width: 40px;
    height: 40px;
    background: rgba(255, 102, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-container {
    background: var(--white);
    padding: 48px;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-form-container h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-form-container p {
    margin-bottom: 32px;
    color: var(--text-muted);
    font-size: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px; /* Prevents iOS zoom */
    transition: all 0.3s ease;
    background: #fcfcfc;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.05);
}


/* Footer */
.footer {
    padding: 60px 0;
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Floating WhatsApp */


    .nav-cta {
        width: 100%;
        padding: 0 40px;
    }

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

.hero {
    padding: 140px 20px 80px;
    background: radial-gradient(circle at top right, rgba(255, 102, 0, 0.08), transparent 40%),
        radial-gradient(circle at bottom left, rgba(255, 102, 0, 0.05), transparent 40%),
        linear-gradient(135deg, #fffcf9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100%;
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero .hook-line {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 20px auto 40px;
}

.hero .hook-line span {
    color: var(--primary-color);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}



/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    display: none;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.mobile-sticky-cta a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    font-weight: 600;
    color: var(--white);
}

.mobile-sticky-cta a:first-child {
    background: var(--primary-color);
}

.mobile-sticky-cta a:last-child {
    background: var(--whatsapp-color);
}

/* Responsive */




/* Trust Section */
.trust-section {
    padding: 80px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.trust-card {
    background: var(--white);
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.trust-card i {
    color: var(--primary-color);
    font-size: 20px;
}

.trust-card:hover {
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: var(--bg-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

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

.portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.5s;
}

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

.category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.portfolio-info {
    padding: 30px;
}

.portfolio-info h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.portfolio-info p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.view-link {
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    padding: 24px 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    margin-bottom: 10px;
    color: var(--text-main);
    font-size: 18px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Trust Badges */
.trust-badges {
    padding: 60px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.badges-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 18px;
}

.badge-item i {
    font-size: 32px;
    color: var(--primary-color);
}

/* Mobile Menu Toggle Styling */
.menu-btn {
    display: none;
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
}





@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 14px;
    }

    .card, .it-grid .card, .process-step, .testimonial-card, .faq-item {
        padding: 24px 20px !important;
        min-width: 0;
        word-wrap: break-word;
    }

    .badges-grid {
        gap: 20px;
    }

    .badge-item {
        font-size: 14px;
    }
}

/* Consolidated Media Queries */
@media (max-width: 991px) {
.section-title h2 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 140px 0 100px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero .hook-line {
        font-size: 1.4rem;
        margin: 20px auto 30px;
        text-align: center;
    }

    .trust-indicators {
        gap: 32px;
    }

    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Nav links stay visible at 991px - only hide below 768px */

.container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

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

@media (max-width: 768px) {
.header {
        padding: 8px 0;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding: 90px 20px 60px !important;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.6rem !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
    }

    .hero p {
        font-size: 0.95rem;
        line-height: 1.35;
        margin-bottom: 6px;
    }

    .hero .hook-line {
        font-size: 1.05rem;
        margin: 10px auto 12px;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 8px;
        margin-bottom: 25px;
    }

    .hero-btns .btn {
        width: 100%;
        min-width: unset;
        font-size: 15px;
        padding: 10px 20px;
    }

    .contact-form-container {
        padding: 32px 20px;
    }

    /* Neat & Clean Overrides for Sections and Grids */
    .services,
    .it-solutions,
    .process,
    .why-choose,
    .testimonials,
    .contact {
        padding: 60px 0 !important;
        /* Balanced mobile padding */
    }

    .section-title {
        margin-bottom: 40px !important;
    }

    .section-title h2 {
        font-size: 1.8rem !important;
    }

    .it-grid,
    .process-grid,
    .services-grid,
    .testimonials-grid,
    .industries-grid {
        gap: 24px !important;
        /* Tighter gaps for mobile */
    }

    .industries-grid {
        grid-template-columns: 1fr !important;
    }

    .industries-cta {
        padding: 40px 20px !important;
    }

    .industries-cta h3 {
        font-size: 1.6rem !important;
    }

    .card,
    .it-grid .card,
    .process-step,
    .testimonial-card {
        padding: 32px 24px !important;
        /* Uniform internal spacing */
    }

    .why-choose {
        padding: 60px 0 !important;
    }

    .stat-box {
        padding: 40px 20px !important;
    }

    .stat-box h3 {
        font-size: 28px !important;
    }

    .final-cta {
        padding: 80px 20px !important;
    }

    .final-cta h2 {
        font-size: 2rem !important;
    }

    .mobile-sticky-cta {
        display: grid;
    }

    .floating-whatsapp,
    .floating-call {
        bottom: 80px !important;
        /* Aligned at same height */
    }

    .floating-whatsapp {
        right: 20px;
    }

    .floating-call {
        left: 20px;
    }

    .final-cta h2 {
        font-size: 2.22rem;
    }

    .final-cta p {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .results-stats {
        grid-template-columns: 1fr;
    }

.header {
        padding: 10px 0;
    }

    .menu-btn {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: var(--white);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    .nav-menu.active {
        right: 0 !important;
        display: flex !important;
    }

    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        margin-bottom: 40px !important;
        width: 100% !important;
        padding: 0 !important;
        text-align: center !important;
        list-style: none !important;
    }

    .nav-links li {
        width: 100% !important;
    }

    .nav-links a {
        font-size: 22px !important;
        color: #1a1a1b !important;
        display: block !important;
        width: 100% !important;
        padding: 10px 0 !important;
        font-weight: 600 !important;
    }

    .nav-cta {
        width: 100% !important;
        padding: 0 40px !important;
        display: flex !important;
        justify-content: center !important;
    }

    .nav-cta .btn {
        width: 100% !important;
        max-width: 300px !important;
    }


    .hero-content h1 {
        font-size: 2.2rem;
    }



    .services-grid, .portfolio-grid, .it-grid, .trust-grid, .contact-grid, .service-cards, .testimonials-grid, .why-grid {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .stat-box {
        padding: 30px 15px !important;
    }


}

/* Base Performance Optimizations */
* {
    -webkit-tap-highlight-color: transparent;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

img {
    height: auto;
    object-fit: cover;
}

.btn {
    min-height: 48px; /* Better touch targets */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Mobile overflow fix */
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
