:root {
    --primary: #0a192f;
    --accent: #ffb400;
    --white: #ffffff;
    --text: #8892b0;
    --heading: #ccd6f6;
    --transition: all 0.3s ease;
}
/* Logo Container Styling */
.logo {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.logo-img {
    height: 50px;    /* Adjust this height to fit your navbar */
    width: auto;     /* Maintains aspect ratio */
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05); /* Subtle interaction effect */
}

/* Ensure the Navbar doesn't squeeze the logo */
.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Mobile Responsive adjustment */
@media (max-width: 768px) {
    .logo-img {
        height: 40px; /* Smaller logo for mobile screens */
    }
}

/* Ensure the main container doesn't touch the screen edges */
.container {
    max-width: 1200px; /* Limits how wide the content can go */
    margin: 0 auto;    /* Centers the content */
    padding: 0 25px;   /* Adds 'breathing room' on left and right */
    width: 100%;       /* Ensures it stays responsive */
    box-sizing: border-box;
}

/* Fix for full-width sections that might be causing horizontal scroll */
body, html {
    overflow-x: hidden; /* Prevents accidental horizontal scrolling */
    width: 100%;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px; /* Slightly tighter padding for small screens */
    }
}


* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Poppins', sans-serif; 
    background-color: #f8f9fa; 
    color: var(--text); 
    overflow-x: hidden; 
}

/* Navbar Enhancement */
.navbar {
    position: fixed; top: 0; width: 100%; height: 80px;
    background: rgba(10, 25, 47, 0.95); backdrop-filter: blur(10px);
    z-index: 1000; display: flex; align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; width: 90%; }
.logo { font-size: 24px; font-weight: 700; letter-spacing: 1px; }
.logo .mex { color: var(--white); }
.logo .services { color: var(--accent); }

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links a { color: var(--white); text-decoration: none; margin: 0 15px; font-size: 14px; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--accent); }
.btn-nav { background: var(--accent); color: var(--primary) !important; padding: 10px 20px; border-radius: 4px; }

/* Hero Section */
/* --- HERO SECTION REDESIGN --- */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?q=80&w=2075&auto=format&fit=crop') no-repeat center center/cover;
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
}

.hero-overlay { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: linear-gradient(to right, rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.6)); 
}

.hero-content { 
    position: relative; 
    z-index: 5; 
    color: #fff; 
    max-width: 900px; 
    padding: 0 20px; 
}

/* Badge Styling */
.hero-badge-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.badge-premium {
    background: var(--accent);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 1.25rem;
    color: #8892b0;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* --- BUTTON REDESIGN --- */
.hero-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

/* The Professional "Get a Quote" Button */
.btn-quote-main {
    text-decoration: none;
    background: var(--accent);
    color: var(--primary);
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(255, 180, 0, 0.2);
}

.btn-quote-main .btn-icon {
    background: rgba(10, 25, 47, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.btn-quote-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 180, 0, 0.4);
    background: #fff; /* Shifts to white on hover for premium feel */
}

/* The Professional "Our Services" Button */
.btn-services-secondary {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 25px;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

.btn-services-secondary:hover {
    color: var(--accent);
    gap: 15px; /* Subtle arrow movement */
}

/* Trust Line */
.hero-trust-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0.6;
}

.hero-trust-line span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.trust-mini-icons {
    display: flex;
    gap: 15px;
    font-size: 18px;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-cta-group { flex-direction: column; gap: 10px; }
    .btn-quote-main { width: 100%; justify-content: center; }
}

/* Glassmorphism Tracking Bar */
/* --- TRACKING SECTION: GLASSMORPHISM --- */
.tracking-section {
    margin-top: -80px; /* Overlaps Hero Section */
    position: relative;
    z-index: 20;
    padding: 0 15px;
}

.tracking-glass-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(10, 25, 47, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.tracking-header {
    margin-bottom: 25px;
    text-align: left;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.live-indicator .dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

.tracking-header h3 {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
}

/* Input Group Logic */
.track-input-group {
    display: flex;
    gap: 15px;
    background: #f8fafc;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.track-input-group:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 180, 0, 0.1);
    background: #fff;
}

.input-with-icon {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 15px;
    padding-left: 15px;
}

.input-with-icon i {
    color: #94a3b8;
    font-size: 20px;
}

.input-with-icon input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
    outline: none;
}

.btn-track-premium {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-track-premium:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateX(3px);
}

.tracking-footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tracking-footer p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.track-badges {
    display: flex;
    gap: 15px;
}

.track-badges span {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@media (max-width: 768px) {
    .track-input-group { flex-direction: column; }
    .btn-track-premium { width: 100%; justify-content: center; }
    .tracking-footer { justify-content: center; text-align: center; }
}
/* Professional Grid */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; color: var(--primary); }
.underline { width: 60px; height: 4px; background: var(--accent); margin: 15px auto; }

.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.s-card {
    background: white; padding: 40px; border-radius: 12px; transition: var(--transition);
    border-bottom: 3px solid transparent;
}
.s-card:hover { transform: translateY(-10px); border-bottom: 3px solid var(--accent); box-shadow: 0 20px 30px rgba(0,0,0,0.05); }
.s-icon { font-size: 40px; color: var(--accent); margin-bottom: 20px; }
.s-card h3 { color: var(--primary); margin-bottom: 15px; }

/* Trust Section */
/* --- TRUST SECTION REDESIGN --- */
.trust-premium {
    background: #0a192f; /* Using your primary dark color */
    padding: 120px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.badge-accent {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.trust-content h2 {
    font-size: 3rem;
    color: #fff;
    margin: 20px 0;
    line-height: 1.2;
}

.trust-content p {
    color: #8892b0;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Value Items Styling */
.value-prop-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    display: flex;
    gap: 20px;
}

.v-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 180, 0, 0.1);
    border: 1px solid rgba(255, 180, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
}

.v-text h4 {
    font-size: 18px;
    color: #ccd6f6;
    margin-bottom: 5px;
}

.v-text p {
    font-size: 14px;
    color: #8892b0;
    margin-bottom: 0;
}

/* Stat Card Visual */
.trust-visual {
    position: relative;
}

.stat-card-main {
    background: linear-gradient(135deg, #112240 0%, #0a192f 100%);
    padding: 60px 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.stat-box {
    margin: 20px 0;
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #8892b0;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 30px auto;
}

.floating-icon {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(255, 180, 0, 0.3);
}

.iso-badge {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #8892b0;
    font-size: 13px;
    justify-content: center;
}

.iso-badge i {
    color: var(--accent);
    font-size: 18px;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .value-item {
        flex-direction: column;
        align-items: center;
    }
    .v-text h4 { margin-top: 15px; }
    .trust-content h2 { font-size: 2.2rem; }
}

/* Footer */
/* --- PREMIUM FOOTER STYLES --- */
.footer-premium {
    background: #020c1b; /* Extra Dark Navy */
    color: #e6f1ff;
    padding: 80px 0 0 0;
    font-family: 'Poppins', sans-serif;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.5fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

/* Brand Section */
.logo-footer {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.logo-footer .mex-text { color: #fff; }
.logo-footer .services-text { color: var(--accent); }

.brand-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #8892b0;
    margin-bottom: 25px;
}

/* Social Icons */
.social-connect {
    display: flex;
    gap: 15px;
}
.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icon:hover {
    transform: translateY(-5px);
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}
.social-icon.wa:hover { background: #25D366; color: white; border-color: #25D366; }

/* Links & Headers */
.footer-premium h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}
.footer-premium h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: -8px;
    width: 30px; height: 2px;
    background: var(--accent);
}

.footer-premium ul { list-style: none; padding: 0; }
.footer-premium ul li { margin-bottom: 12px; }
.footer-premium ul li a {
    color: #8892b0;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}
.footer-premium ul li a:hover { color: var(--accent); padding-left: 5px; }

/* Stylish Office Cards */
.office-card {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--accent);
}
.office-icon { color: var(--accent); font-size: 18px; padding-top: 5px; }
.office-info h5 { color: #fff; font-size: 14px; margin-bottom: 5px; }
.office-info p { font-size: 13px; color: #8892b0; line-height: 1.5; margin: 0; }
.office-contact { margin-top: 5px !important; color: #ccd6f6 !important; }

/* Support Items */
.support-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}
.support-item i { font-size: 20px; color: var(--accent); }
.support-item p { font-size: 12px; color: #8892b0; margin: 0; }
.support-item a { color: #fff; font-weight: 600; text-decoration: none; font-size: 14px; }

/* Copyright Bar */
.footer-copyright {
    background: #010812;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: #495670;
}
.copyright-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright-flex a { color: #8892b0; text-decoration: none; }

/* Mobile Adjustments */
@media (max-width: 992px) {
    .footer-main-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-main-grid { grid-template-columns: 1fr; }
    .copyright-flex { flex-direction: column; gap: 10px; text-align: center; }
}

/* Responsiveness */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .nav-links { display: none; }
    .tracking-glass { padding: 20px; }
    .track-input-group { flex-direction: column; }
    .btn-track { padding: 15px; }
}

/* About Section */
/* Premium About Us Styling */
.about-premium {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

/* Image Stack Effect */
.about-visual {
    flex: 1;
    min-width: 400px;
    position: relative;
}

.image-stack {
    position: relative;
    padding-bottom: 40px;
}

.img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(10, 25, 47, 0.15);
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: -20px;
    background: var(--accent);
    color: var(--primary);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(255, 180, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.exp-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Styling */
.about-content {
    flex: 1.2;
    min-width: 400px;
}

.subtitle-premium {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 3.5rem;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 25px;
    text-align: left; /* Overriding previous center alignment */
}

.lead-text {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Minimal Timeline */
.timeline-simple {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.t-step {
    flex: 1;
}

.t-year {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.t-desc {
    font-size: 13px;
    color: var(--text);
}

.btn-minimal {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-minimal:hover {
    color: var(--accent);
}

.btn-minimal i {
    transition: var(--transition);
}

.btn-minimal:hover i {
    transform: translateX(5px);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .about-wrapper { gap: 40px; }
    .about-content h2 { font-size: 2.5rem; }
    .about-visual { min-width: 100%; order: 2; }
    .experience-badge { right: 20px; padding: 20px; }
}

/* Why Us Section */
.why-us { background: #f0f4f8; padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.f-box { background: white; padding: 40px; border-radius: 15px; text-align: center; transition: 0.3s; }
.f-box:hover { background: var(--primary); color: white; }
.f-box i { font-size: 45px; color: var(--accent); margin-bottom: 20px; }

/* India Map Markers */
/* Network Section Fixes */
/* Pan India Network Redesign */
.pan-india-network {
    background: #0a192f; /* Deep Corporate Navy */
    color: #fff;
    padding: 120px 0;
    overflow: hidden;
}

.network-flex {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.network-visual {
    flex: 1;
    min-width: 400px;
    display: flex;
    justify-content: center;
}

.graphic-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.abstract-map {
    width: 100%;
    filter: invert(100%) opacity(0.15); /* Makes the map a subtle white ghost outline */
}

/* Abstract Network Glows */
.glow-point {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(4px);
    box-shadow: 0 0 20px var(--accent);
}
.p1 { top: 30%; left: 45%; }
.p2 { top: 55%; left: 35%; }
.p3 { top: 60%; left: 60%; }
.p4 { top: 75%; left: 45%; }

/* Animated Connection Lines */
.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.arc-line {
    fill: none;
    stroke: rgba(255, 180, 0, 0.3);
    stroke-width: 1;
    stroke-dasharray: 100;
    animation: dash 5s linear infinite;
}

@keyframes dash {
    from { stroke-dashoffset: 200; }
    to { stroke-dashoffset: 0; }
}

/* Content Details */
.network-details {
    flex: 1.2;
    min-width: 400px;
}

.badge-gold {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
}

.network-details h2 {
    font-size: 3rem;
    margin: 20px 0;
}

.capability-grid {
    margin: 40px 0;
}

.cap-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.cap-item i {
    font-size: 24px;
    color: var(--accent);
    margin-top: 5px;
}

.cap-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cap-item p {
    color: #8892b0;
    font-size: 14px;
}

.office-locations {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccd6f6;
    font-size: 13px;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .network-flex { gap: 40px; text-align: center; }
    .cap-item { flex-direction: column; align-items: center; gap: 10px; }
    .network-details h2 { font-size: 2.2rem; }
}

/* Marker Positioning (Approximate) */
.m-raipur { top: 58%; left: 55%; background: #ff0000; }
.m-indore { top: 53%; left: 43%; background: #ffb400; }
.m-delhi { top: 30%; left: 45%; }
.m-mumbai { top: 65%; left: 35%; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 180, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 180, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 180, 0, 0); }
}

/* Testimonials */
/* --- TESTIMONIAL SLIDER STYLES --- */
.testimonials-slider-sec {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonial-wrapper {
    max-width: 1000px;
    margin: 50px auto 0;
    position: relative;
}

.t-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Smoother movement */
    width: 100%; 
    will-change: transform;
}

.t-slide {
    min-width: 100%; /* Ensures each slide takes full width of container */
    padding: 10px;   /* Prevents shadow clipping */
    box-sizing: border-box;
}

.t-card-premium {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    position: relative;
}

.t-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.google-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #4285F4; /* Google Blue */
}

.stars {
    color: #fbbc05; /* Google Gold */
    font-size: 14px;
}

.t-comment {
    font-size: 18px;
    line-height: 1.8;
    color: var(--primary);
    font-style: italic;
    margin-bottom: 35px;
    font-weight: 400;
}

.t-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 25px;
}

.author-info strong {
    display: block;
    font-size: 16px;
    color: var(--primary);
}

.author-info span {
    font-size: 13px;
    color: #8892b0;
}

.verified-badge {
    color: #10b981; /* Success Green */
    font-size: 20px;
}

/* Slider Controls */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-nav button {
    background: white;
    border: 1px solid #edf2f7;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    color: var(--primary);
}

.slider-nav button:hover {
    background: var(--primary);
    color: var(--accent);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--accent);
    width: 20px;
    border-radius: 10px;
}

/* Services Section - Modern Redesign */
 /* --- SERVICES REDESIGN: OPTICAL ALIGNMENT --- */
.services-premium {
    padding: 100px 0;
    background: #fcfcfd;
}

.service-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.service-inner {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left; /* Professional standard for B2B */
}

/* Perfect Icon Alignment */
.icon-wrapper {
    margin-bottom: 25px;
    display: flex;
    justify-content: flex-start; /* Aligns with text */
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    transition: all 0.3s ease;
}

.service-inner:hover .icon-box {
    background: var(--primary);
    color: var(--accent);
    transform: rotateY(10deg);
}

/* Typography Scale */
.service-inner h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.card-divider {
    width: 30px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 20px;
}

.service-inner p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
    font-weight: 400;
}

/* List Items */
.service-points {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-points li {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-points li i {
    color: var(--accent);
    font-size: 14px;
}

/* The Link Button */
.service-link {
    margin-top: auto;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--accent);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Professional Card Hover */
.service-item:hover .service-inner {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}