/* Global Styles */
:root {
    --primary-color: #000000;
    /* Black */
    --secondary-color: #222222;
    /* Dark Gray */
    --accent-color: #FF0000;
    /* Bright Red - from logo */
    --text-color: #222;
    --light-bg: #f8f8f8;
    --gray-bg: #e0e0e0;
    --white: #ffffff;
    --dark-bg: #000000;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Prevent text overflow globally */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
/* Navigation */
.navbar {
    background: #000000;
    /* Black Header */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    max-width: 100vw;
    top: 0;
    z-index: 1000;
    height: 110px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #222;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 110px;
    object-fit: contain;
    display: block;
    background: #fff;
    /* Ensure logo is visible if transparent, or keeps its own bg */
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 700;
    color: var(--white);
    /* White text on black */
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
    /* Red hover */
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: var(--white);
    /* White bars */
    margin-bottom: 4px;
    transition: var(--transition);
}

/* Hero Section with Slideshow */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 110px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    /* Wider content */
    padding: 0 30px;
    width: 100%;
    box-sizing: border-box;
}

.hero h1 {
    font-size: 4.5rem;
    /* Much bigger */
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 3px;
    word-wrap: break-word;
    hyphens: auto;
}

.tagline {
    font-size: 1.3rem;
    /* Bigger */
    margin-bottom: 3rem;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 35px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 90%;
    word-wrap: break-word;
    box-sizing: border-box;
}

.btn {
    display: inline-block;
    padding: 18px 50px;
    /* Bigger button */
    font-weight: 700;
    font-size: 1.1rem;
    /* Bigger text */
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    /* Bright Red */
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--accent-color);
    border-color: var(--white);
}

/* Sections */
.section {
    padding: 120px 0;
    /* More spacious */
    max-width: 100vw;
    overflow-x: hidden;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    /* Bigger title */
    margin-bottom: 70px;
    color: var(--primary-color);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    /* Wider underline */
    height: 4px;
    background: var(--accent-color);
    margin: 20px auto 0;
}

.section-subtitle {
    text-align: center;
    margin-top: -50px;
    margin-bottom: 80px;
    color: #666;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

.text-white {
    color: var(--white) !important;
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

.about-text p {
    margin-bottom: 25px;
    color: #555;
}

.vision-mission {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.vm-card {
    background: var(--white);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 280px;
    border-top: 5px solid var(--accent-color);
    /* Bright Red */
}

.vm-card h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1.2rem;
}

/* Why Us */
.checklist {
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
    background: var(--white);
    padding: 40px;
    border: 1px solid #eee;
}

.checklist-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
}

.checklist-item i {
    color: var(--accent-color);
    /* Bright Red checkmark */
    margin-right: 15px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    /* No border radius */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #eee;
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    /* Bright Red */
    margin-bottom: 25px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
    text-transform: uppercase;
    font-size: 1.2rem;
}

/* Process Section */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.process-step {
    background: var(--white);
    padding: 30px 20px;
    /* No border radius */
    width: 250px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--accent-color);
}

.process-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #f0f0f0;
    /* Very light gray */
    position: absolute;
    top: -10px;
    right: 10px;
    z-index: 0;
}

.process-step i {
    position: relative;
    z-index: 1;
    color: var(--secondary-color);
    /* Dark gray */
}

.process-step h4 {
    color: var(--accent-color);
    /* Bright Red */
    margin-top: 15px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.process-step p {
    position: relative;
    z-index: 1;
    color: #666;
}

/* Industries Section */
.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.industry-tag {
    background: var(--white);
    color: var(--text-color);
    padding: 15px 30px;
    /* No border radius */
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.industry-tag:hover {
    background: var(--accent-color);
    /* Bright Red */
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

.industry-tag i {
    color: var(--secondary-color);
}

.industry-tag:hover i {
    color: var(--white);
}

/* Portfolio Section - Scrolling Marquee Gallery */
.portfolio-section {
    overflow: hidden;
    padding-bottom: 80px;
    max-width: 100vw;
}

.marquee-gallery {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.marquee-row {
    overflow: hidden;
    margin-bottom: 15px;
    max-width: 100vw;
}

.marquee-track {
    display: flex;
    gap: 15px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-row.reverse .marquee-track {
    animation: marquee-reverse 30s linear infinite;
}

.marquee-track img {
    width: 350px;
    height: 250px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.marquee-track img:hover {
    transform: scale(1.05);
    z-index: 10;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-reverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.map-container {
    flex: 1;
    min-width: 300px;
    /* No border radius */
    height: 400px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--white);
    /* White icons against dark bg */
    margin-right: 25px;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: #888;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--white);
    font-size: 1.1rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-item a {
    word-break: break-all;
}

.contact-item a:hover {
    color: #ccc;
    text-decoration: underline;
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* No border radius */
    font-size: 1.2rem;
    transition: var(--transition);
    color: var(--white);
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Footer - Simple Design */
footer {
    background: #000;
    color: #666;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
    border-top: 1px solid #222;
}

footer a {
    color: #999;
    margin: 0 10px;
}

footer a:hover {
    color: var(--white);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 0;
    /* Squared */
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-5px);
}

/* ===== Testimonials Section ===== */
.testimonials-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-carousel {
    overflow: hidden;
    flex: 1;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 30px;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background: var(--white);
    padding: 35px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--accent-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    margin-bottom: 18px;
    display: flex;
    gap: 3px;
}

.testimonial-stars i {
    color: #FFB800;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 2px;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-arrow {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.testimonial-arrow:hover {
    background: var(--accent-color);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--accent-color);
    transform: scale(1.15);
}

/* ===== Our Presence - India Map Section ===== */
.presence-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.india-map-container {
    flex: 1.2;
    position: relative;
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 15px;
    min-height: 600px;
    overflow: hidden;
}

.map-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Map Image Wrapper */
.map-image-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
}

.india-map-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.5;
    filter: brightness(0.6) contrast(1.2) sepia(0.3) hue-rotate(-10deg);
}

/* City Marker Divs - positioned absolutely via percentage */
.city-marker-div {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 5;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-center {
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.9), 0 0 20px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 3;
}

.city-marker-div:hover .marker-center {
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 0.5);
    transform: scale(1.3);
}

.marker-ring {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: ringPulse 2.5s ease-out infinite;
    animation-delay: var(--delay);
    opacity: 0;
}

.marker-ring.ring-2 {
    animation-delay: calc(var(--delay) + 0.8s);
}

@keyframes ringPulse {
    0% {
        width: 10px;
        height: 10px;
        opacity: 0.8;
        border-width: 2px;
    }

    100% {
        width: 45px;
        height: 45px;
        opacity: 0;
        border-width: 1px;
    }
}

.marker-label {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.city-marker-div:hover .marker-label {
    color: #fff;
    top: -26px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Map Tooltip */
.map-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.92);
    border: 1px solid var(--accent-color);
    padding: 12px 18px;
    pointer-events: none;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.2s ease;
    min-width: 120px;
}

.map-tooltip.visible {
    opacity: 1;
}

.tooltip-city {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.tooltip-projects {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* Stats Sidebar */
.presence-stats {
    flex: 0.5;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-card {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-highlight {
    border-color: var(--accent-color);
}

.stat-highlight::before {
    opacity: 1;
}

.stat-card i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* City List Card */
.city-list-card {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 25px 20px;
}

.city-list-card h4 {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #222;
}

.city-list-card h4 i {
    color: var(--accent-color);
    margin-right: 8px;
}

.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.city-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bbb;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.city-list li:hover {
    color: #fff;
}

.city-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    display: inline-block;
    flex-shrink: 0;
    animation: dotGlow 2s ease-in-out infinite alternate;
}

@keyframes dotGlow {
    0% {
        box-shadow: 0 0 3px rgba(255, 0, 0, 0.5);
    }

    100% {
        box-shadow: 0 0 8px rgba(255, 0, 0, 1);
    }
}

.city-badge {
    background: var(--accent-color);
    color: #fff;
    font-size: 0.6rem;
    padding: 2px 6px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-left: auto;
}

/* Responsive - Tablet (max 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        padding: 0 20px;
    }

    .tagline {
        font-size: 1rem;
        padding: 15px 25px;
    }

    .marquee-track img {
        width: 280px;
        height: 200px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-content {
        padding: 30px;
    }

    .vm-cards {
        flex-wrap: wrap;
        gap: 20px;
    }

    .vm-card {
        min-width: 45%;
    }

    .process-wrapper {
        gap: 15px;
    }

    .process-step {
        padding: 20px 15px;
    }

    .contact-wrapper {
        gap: 30px;
    }

    .testimonial-card {
        min-width: calc(50% - 15px);
    }

    .testimonial-track {
        gap: 20px;
    }

    .presence-layout {
        flex-direction: column;
        gap: 30px;
    }

    .india-map-container {
        min-height: 400px;
    }

    .presence-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    .stat-card {
        flex: 1;
        min-width: calc(50% - 10px);
    }

    .city-list-card {
        width: 100%;
    }
}

/* Responsive - Mobile (max 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        height: 80px;
        padding: 0 10px;
    }

    .logo img {
        height: 80px;
    }

    .hero {
        margin-top: 80px;
        min-height: 70vh;
        height: auto;
        padding: 60px 0;
    }

    .hero-content {
        padding: 0 15px;
        max-width: 100%;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.3s;
        box-shadow: none;
        padding-top: 40px;
        z-index: 999;
    }

    .nav-menu li a {
        color: #fff;
        font-size: 1.1rem;
        padding: 15px;
        display: block;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .tagline {
        font-size: 0.75rem;
        padding: 10px 12px;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .section-title::after {
        width: 50px;
    }

    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 30px;
    }

    /* About Section */
    .about-content {
        padding: 20px;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    /* Checklist / Why Us Section - Mobile Fix */
    .checklist {
        display: flex;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .checklist-item {
        width: 100%;
        font-size: 0.95rem;
        align-items: flex-start;
    }

    .checklist-item i {
        min-width: 20px;
        /* Prevent icon shrinking */
        margin-top: 5px;
    }

    /* Process Section */
    .process-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .process-step {
        width: 100%;
        padding: 20px;
    }

    .process-step h4 {
        font-size: 1rem;
    }

    .process-number {
        font-size: 1.5rem;
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    /* Industries Section */
    .industries-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .industry-tag {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    /* VM Cards */
    .vm-cards {
        flex-direction: column;
        gap: 15px;
    }

    .vm-card {
        min-width: 100%;
        padding: 25px 20px;
    }

    /* Portfolio/Marquee Gallery */
    .portfolio-section {
        padding: 40px 0;
    }

    .marquee-gallery {
        padding: 0;
    }

    .marquee-row {
        margin-bottom: 8px;
    }

    .marquee-track {
        gap: 8px;
        animation-duration: 20s;
    }

    .marquee-track img {
        width: 200px;
        height: 140px;
    }

    /* Contact Section */
    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info,
    .map-container {
        min-width: 100%;
        width: 100%;
    }

    .map-container {
        height: 250px;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .social-links {
        justify-content: flex-start;
        gap: 10px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Testimonials */
    .testimonial-card {
        min-width: calc(100% - 0px);
        padding: 25px 20px;
    }

    .testimonial-track {
        gap: 15px;
    }

    .testimonial-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-dots {
        margin-top: 25px;
    }

    .testimonial-dot {
        width: 10px;
        height: 10px;
    }

    /* Presence Map */
    .india-map-container {
        min-height: 300px;
        padding: 15px;
    }

    .stat-card {
        min-width: calc(50% - 10px);
        padding: 18px 12px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .city-list {
        grid-template-columns: 1fr;
    }

    /* WhatsApp Button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 15px;
    }

    /* Footer */
    footer {
        padding: 20px 0;
    }

    footer p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
}

/* Responsive - Small Mobile (max 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .navbar {
        height: 70px;
    }

    .logo img {
        height: 70px;
    }

    .hero {
        margin-top: 70px;
        min-height: 60vh;
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .tagline {
        font-size: 0.65rem;
        padding: 8px 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    .marquee-track img {
        width: 150px;
        height: 110px;
    }

    .marquee-track {
        gap: 6px;
        animation-duration: 15s;
    }

    .marquee-row {
        margin-bottom: 6px;
    }

    .process-step {
        padding: 15px;
    }

    .process-step h4 {
        font-size: 0.9rem;
    }

    .process-step p {
        font-size: 0.8rem;
    }

    .about-content {
        padding: 15px;
    }

    .about-content p {
        font-size: 0.85rem;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .vm-card {
        padding: 20px 15px;
    }

    .vm-card h3 {
        font-size: 1.1rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-item i {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .social-links {
        justify-content: center;
    }

    .map-container {
        height: 200px;
    }

    footer {
        padding: 15px 0;
    }

    footer p {
        font-size: 0.75rem;
    }

    footer a {
        display: block;
        margin: 5px 0;
    }
}