/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large desktop / small laptop */
@media (max-width: 1200px) {
  .container { padding: 0 1.5rem; }
  .header-inner { padding: 0 24px; }
  .footer-grid { padding: 0 2rem; }
  .footer-bottom { padding: 1.5rem 2rem 0; }
  .hero-content { padding: 0 2rem; }
  .site-header { height: 80px; }
  .main-nav { gap: 1rem; margin-left: 2rem; }
  .main-nav a { font-size: 14px; }
  .logo-img { width: 200px; }
  .about-quote-badge { right: -1.5rem; bottom: -1.5rem; padding: 1.25rem; }
  .about-quote-badge p { font-size: 15px; }
  .about-accent-top { width: 6rem; height: 6rem; }
  .project-card-lg .card-image,
  .project-card-sm .card-image { height: 320px; }
}

/* Tablet landscape / small desktop */
@media (max-width: 1024px) {
  :root { --section-padding: 4rem; }
  .container { padding: 0 1.5rem; }
  .display-lg { font-size: 48px; }
  .headline-lg { font-size: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-section { height: 80vh; min-height: 500px; }
  .site-header { height: 78px; }
  .header-inner { padding: 0 24px; }
  .logo-img { width: 160px; }
  .main-nav { gap: 0.9rem; margin-left: 1.5rem; }
  .main-nav a { font-size: 13px; letter-spacing: 0.03em; }
  .site-header .btn-orange { height: 44px; padding: 0 1rem; font-size: 12px; }
  .about-grid { gap: 3rem; }
  .about-quote-badge { display: none; }
  .about-accent-top { width: 5rem; height: 5rem; top: -1rem; left: -1rem; }
  .project-card-lg .card-image,
  .project-card-sm .card-image { height: 280px; }
  .projects-row-top,
  .projects-row-bottom { grid-template-columns: 1fr 1fr; }

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

/* Tablet portrait */
@media (max-width: 768px) {
  :root {
    --section-padding: 3.5rem;
    --margin-desktop: 1rem;
  }

  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  .display-lg { font-size: 32px; }
  .headline-lg { font-size: 30px; }
  .headline-md { font-size: 26px; }

  .container { padding: 0 1.25rem; }
  .site-header { height: 72px; }
  .mobile-menu { top: 72px; height: calc(100vh - 72px); }
  .logo-img { width: 145px; }
  .header-inner { padding: 0 16px; }
  .site-header .btn-orange { height: 40px; padding: 0 0.75rem; font-size: 11px; border-radius: 6px; }
  .mobile-menu-btn { width: 36px; height: 36px; }
  .mobile-menu-btn .material-symbols-outlined { font-size: 26px; }

  /* Hero */
  .hero-section { height: 90vh; min-height: 480px; }
  .hero-content h1 { font-size: 30px; }
  .hero-content p { font-size: 16px; line-height: 1.7; }
  .hero-buttons .btn { font-size: 12px; padding: 14px 22px; min-height: 48px; }
  .scroll-indicator { display: none; }

  /* Highlights */
  .highlights-bar { margin-top: -3rem; padding: 1.5rem; max-width: calc(100% - 2rem); }
  .highlights-grid { gap: 1rem; }
  .highlight-item .number { font-size: 28px; }
  .highlight-item .label { font-size: 11px; }

  /* About - single column */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-content {
    order: 1;
  }
  .about-content p {
    font-size: 16px;
    line-height: 1.75;
  }
  .about-image {
    order: 2;
  }
  .about-img-wrapper img {
    border-radius: 10px;
  }
  .about-accent-top {
    width: 4rem;
    height: 4rem;
    top: -1rem;
    left: -1rem;
    border-top-width: 6px;
    border-left-width: 6px;
  }

  /* Projects - switch to carousel */
  .projects-grid-desktop { display: none; }
  .projects-carousel-mobile { display: block; }
  .projects-header { margin-bottom: 2rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
  .project-carousel-card { flex: 0 0 90%; }
  .project-carousel-card .card-image { height: 220px !important; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.5rem; }
  .service-card .icon-box { width: 48px; height: 48px; }
  .service-card .icon-box .material-symbols-outlined { font-size: 24px; margin-bottom: 0; }

  /* Process - switch to vertical timeline */
  .process-desktop { display: none; }
  .process-mobile { display: block; }
  .mobile-timeline { padding-left: 2.75rem; }
  .mt-step { padding-bottom: 2rem; }
  .mt-icon { width: 2.25rem; height: 2.25rem; left: -2.75rem; }
  .mt-icon .material-symbols-outlined { font-size: 16px; }
  .mt-content h4 { font-size: 17px; }
  .mt-content p { font-size: 14px; }

  /* Testimonials - switch to slider */
  .testimonials-grid-desktop { display: none; }
  .testimonials-slider-mobile { display: block; }
  .testimonial-slide { flex: 0 0 90%; padding: 1.75rem; }
  .testimonial-slide blockquote { font-size: 15px; }

  /* CTA */
  .cta-content h2 { font-size: 28px; }
  .cta-content p { font-size: 16px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; min-height: 48px; }

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

  .section-header { margin-bottom: 2rem; }
  .section-header h2 { font-size: 26px; }
  .section-label { font-size: 13px; }

  /* Stats */
  .stats-grid .stat-number { font-size: 36px; }
  .stats-grid .stat-label { font-size: 12px; }

  .project-card .card-image { height: 200px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item img { height: 200px; }

  .timeline-item .content { width: calc(100% - 40px); margin-left: 40px; text-align: left; }
  .timeline-item .content.left { text-align: left; }
  .timeline-item .spacer { display: none; }

  .contact-form { padding: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full-width { grid-column: span 1; }
  .info-card { padding: 1rem; }
  .advantage-card { padding: 1.5rem; }
  .advantage-card h3 { font-size: 18px; }

  /* About page - switch to mobile layouts */
  .about-who-desktop { display: none; }
  .about-who-mobile { display: block; }
  .about-mvv-desktop { display: none; }
  .about-mvv-mobile { display: block; }
  .about-leadership-desktop { display: none; }
  .about-leadership-mobile { display: block; }

  .about-who-mobile { padding: 0; }
  .about-who-mobile .about-who-heading { font-size: 30px; }
  .about-who-mobile .about-who-text { font-size: 16px; }
  .about-who-image { margin-bottom: 1.25rem; }
  .about-who-badges { gap: 0.5rem; }
  .about-badge { padding: 0.5rem 0.875rem; font-size: 13px; }

  .about-mvv-card { padding: 1.5rem; margin-bottom: 1rem; }
  .about-mvv-icon { width: 44px; height: 44px; margin-bottom: 1rem; }
  .about-mvv-icon .material-symbols-outlined { font-size: 24px; }
  .about-mvv-title { font-size: 19px; }
  .about-mvv-desc { font-size: 15px; }
  .about-mvv-list { margin-top: 1rem; gap: 0.5rem; }
  .about-mvv-list li { font-size: 14px; }
  .about-mvv-value-item { padding: 1rem; }
  .about-mvv-value-item .material-symbols-outlined { font-size: 26px; }
  .about-mvv-value-item h4 { font-size: 15px; }

  .about-leadership-mobile .about-leadership-heading { font-size: 28px; }
  .about-leadership-text { font-size: 16px; }
  .about-leadership-stats { gap: 1.5rem; }
  .about-leadership-quote { padding: 1.25rem; }
  .about-leadership-quote p:first-child { font-size: 15px; }
  .about-leadership-btn { min-height: 48px; font-size: 15px; padding: 12px 20px; }

  .cert-bar { gap: 1rem; }
  .cert-item { font-size: 11px; }
  .filter-tabs { overflow-x: auto; flex-wrap: nowrap; border-bottom: none; }
  .filter-tab { white-space: nowrap; }
  .faq-item { padding: 1rem; }
  .page-hero .hero-content { padding-left: 1.25rem; padding-right: 1.25rem; }

  /* EPC section - switch to mobile */
  .epc-desktop { display: none; }
  .epc-mobile { display: block; }
  .epc-stats-standalone { display: none; }
  .epc-mobile-header h2 { font-size: 30px; }
  .epc-mobile-header p { font-size: 17px; }
  .epc-stats-grid { gap: 0.875rem; }
  .epc-stat-card { padding: 1.25rem 0.75rem; min-height: 100px; }
  .epc-stat-num { font-size: 32px; }
  .epc-features-grid { gap: 0.875rem; }

  /* Industries section - switch to mobile */
  .industries-desktop { display: none; }
  .industries-mobile { display: block; }
  .industries-mobile-header h2 { font-size: 28px; }
  .industries-mobile-header p { font-size: 16px; }

  /* Feature cards - switch to mobile */
  .features-desktop { display: none; }
  .features-mobile { display: block; }
  .features-mobile-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .feature-card-mobile { padding: 1.25rem; min-height: 140px; }
  .feature-card-mobile .material-symbols-outlined { font-size: 32px; }
  .feature-card-mobile h3 { font-size: 17px; }
  .feature-card-mobile p { font-size: 14px; }

  /* Contact - switch to single column */
  .contact-desktop { display: none; }
  .contact-mobile { display: block; }
  .contact-mobile .contact-form { padding: 1.5rem; }
  .contact-mobile .contact-form h3 { font-size: 22px; margin-bottom: 1.5rem; }
  .contact-mobile .info-card { padding: 1.25rem; }
  .contact-mobile .gstin-card { padding: 1.125rem 1.25rem; }
  .contact-mobile .gstin-value { font-size: 18px; }
}

/* Large phones */
@media (max-width: 576px) {
  :root { --section-padding: 3rem; }
  .container { padding: 0 1.125rem; }
  .hero-section { min-height: 420px; }
  .hero-content h1 { font-size: 28px; }
  .hero-content p { font-size: 15px; }
  .highlights-bar { padding: 1.25rem; }
  .about-grid { gap: 1.5rem; }
  .about-content p { font-size: 16px; }
  .about-accent-top { width: 3.5rem; height: 3.5rem; }
  .project-carousel-card { flex: 0 0 92%; }
  .project-carousel-card .card-image { height: 220px !important; }
  .testimonial-slide { flex: 0 0 92%; padding: 1.5rem; }
  .testimonial-slide blockquote { font-size: 15px; }
  .mt-step { padding-bottom: 1.75rem; }
  .cta-content h2 { font-size: 26px; }
  .cta-content p { font-size: 15px; }
  .page-hero .hero-content h1 { font-size: 28px; }

  /* EPC mobile section */
  .epc-mobile-header h2 { font-size: 30px; }
  .epc-mobile-header p { font-size: 16px; }
  .epc-stat-num { font-size: 30px; }
  .epc-stat-card { padding: 1.25rem 0.75rem; min-height: 100px; }
  .epc-feature-card { padding: 1rem; }
  .epc-feature-card h4 { font-size: 15px; }
  .epc-feature-card p { font-size: 12px; }

  /* Industries mobile */
  .industries-mobile-header h2 { font-size: 28px; }
  .industries-mobile-grid .industry-card { padding: 1rem; min-height: 110px; }
  .industries-mobile-grid .industry-card .material-symbols-outlined { font-size: 28px; }
  .industries-mobile-grid .industry-card h4 { font-size: 14px; }

  /* Feature cards */
  .feature-card-mobile { padding: 1.125rem; min-height: 140px; }
  .feature-card-mobile .material-symbols-outlined { font-size: 30px; }

  /* Contact mobile */
  .contact-mobile .contact-form { padding: 1.25rem; }
  .contact-mobile .contact-form h3 { font-size: 20px; }
  .form-grid-mobile { gap: 1rem; }
  .form-grid-mobile .form-group input,
  .form-grid-mobile .form-group select,
  .form-grid-mobile .form-group textarea { min-height: 50px; padding: 12px 14px; font-size: 15px; }
  .form-grid-mobile .form-group textarea { min-height: 120px; }
  .form-grid-mobile .full-width .btn-submit { min-height: 50px; padding: 14px; font-size: 15px; }
  .contact-mobile .info-card { padding: 1rem; }
  .contact-mobile .info-card h4 { font-size: 16px; }
  .contact-mobile .info-card p { font-size: 14px; }
  .contact-mobile .gstin-card { padding: 1rem 1.125rem; }
  .contact-mobile .gstin-value { font-size: 17px; }
  .contact-info-mobile .btn-call-now { min-height: 48px; font-size: 15px; }

  /* About page mobile */
  .about-who-mobile .about-who-heading { font-size: 28px; }
  .about-who-mobile .about-who-text { font-size: 16px; }
  .about-who-image { margin-bottom: 1rem; }
  .about-who-badges { gap: 0.5rem; }
  .about-badge { padding: 0.5rem 0.75rem; font-size: 12px; }

  .about-mvv-card { padding: 1.25rem; margin-bottom: 0.875rem; }
  .about-mvv-icon { width: 40px; height: 40px; margin-bottom: 0.875rem; }
  .about-mvv-icon .material-symbols-outlined { font-size: 22px; }
  .about-mvv-title { font-size: 18px; }
  .about-mvv-desc { font-size: 15px; }
  .about-mvv-list li { font-size: 13px; }
  .about-mvv-value-item { padding: 0.875rem; }
  .about-mvv-value-item .material-symbols-outlined { font-size: 24px; }
  .about-mvv-value-item h4 { font-size: 15px; }
  .about-mvv-value-item p { font-size: 13px; }

  .about-leadership-mobile .about-leadership-heading { font-size: 26px; }
  .about-leadership-text { font-size: 15px; }
  .about-leadership-stats { gap: 1.25rem; }
  .about-leadership-quote { padding: 1.125rem; }
  .about-leadership-quote p:first-child { font-size: 15px; }
  .about-leadership-btn { min-height: 48px; font-size: 15px; padding: 12px 20px; }
}

/* Small phones */
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 1rem; }
  .site-header { height: 68px; }
  .mobile-menu { top: 68px; height: calc(100vh - 68px); }
  .header-inner { padding: 0 16px; }
  .logo-img { width: 130px; }
  .site-header .btn-orange { height: 36px; padding: 0 0.6rem; font-size: 10px; }
  .mobile-menu-btn { width: 32px; height: 32px; }
  .mobile-menu-btn .material-symbols-outlined { font-size: 24px; }
  .hero-section { min-height: 400px; }
  .hero-content h1 { font-size: 26px; }
  .hero-content p { font-size: 14px; }
  .hero-buttons .btn { font-size: 11px; padding: 12px 18px; }
  .highlight-item .number { font-size: 24px; }
  .stats-grid .stat-number { font-size: 28px; }
  .headline-lg { font-size: 26px; }
  .about-content p { font-size: 15px; line-height: 1.7; }
  .project-carousel-card { flex: 0 0 95%; }
  .project-carousel-card .card-image { height: 200px !important; }
  .testimonial-slide { flex: 0 0 95%; padding: 1.25rem; }
  .testimonial-slide blockquote { font-size: 14px; }
  .mt-step { padding-bottom: 1.5rem; }
  .mt-content h4 { font-size: 16px; }
  .mt-content p { font-size: 13px; }
  .carousel-dots .dot { width: 8px; height: 8px; }
  .carousel-dots .dot.active { width: 24px; }
  .cta-content h2 { font-size: 24px; }
  .cta-content p { font-size: 14px; }
  .page-hero { height: 340px; min-height: 340px; }
  .page-hero .hero-content h1 { font-size: 24px; }
  .page-hero .hero-content p { font-size: 14px; margin-bottom: 1rem; }

  /* EPC mobile section */
  .epc-mobile-header h2 { font-size: 28px; }
  .epc-mobile-header p { font-size: 16px; }
  .epc-stats-grid { gap: 0.75rem; }
  .epc-stat-card { padding: 1rem 0.5rem; min-height: 90px; }
  .epc-stat-num { font-size: 26px; }
  .epc-stat-lbl { font-size: 11px; }
  .epc-features-grid { gap: 0.75rem; }
  .epc-feature-card { padding: 0.875rem; }
  .epc-feature-card .material-symbols-outlined { font-size: 24px; }
  .epc-feature-card h4 { font-size: 14px; }
  .epc-feature-card p { font-size: 12px; }

  /* Industries mobile */
  .industries-mobile-header h2 { font-size: 26px; }
  .industries-mobile-header p { font-size: 15px; }
  .industries-mobile-grid { gap: 0.75rem; }
  .industries-mobile-grid .industry-card { padding: 0.875rem; min-height: 100px; }
  .industries-mobile-grid .industry-card .material-symbols-outlined { font-size: 26px; margin-bottom: 0.5rem; }
  .industries-mobile-grid .industry-card h4 { font-size: 13px; }

  /* Feature cards */
  .features-mobile-grid { gap: 0.875rem; }
  .feature-card-mobile { padding: 1rem; min-height: 140px; }
  .feature-card-mobile h3 { font-size: 16px; }
  .feature-card-mobile p { font-size: 14px; }

  /* Contact mobile */
  .contact-mobile .contact-form { padding: 1rem; }
  .form-grid-mobile { gap: 0.875rem; }
  .form-grid-mobile .form-group input,
  .form-grid-mobile .form-group select,
  .form-grid-mobile .form-group textarea { min-height: 48px; padding: 11px 12px; font-size: 15px; }
  .form-grid-mobile .full-width .btn-submit { min-height: 48px; padding: 12px; font-size: 14px; }
  .contact-mobile .info-card { padding: 0.875rem; gap: 0.75rem; }
  .contact-mobile .info-card .icon-box { width: 42px; height: 42px; }
  .contact-mobile .info-card .icon-box .material-symbols-outlined { font-size: 22px; }
  .contact-mobile .info-card h4 { font-size: 15px; }
  .contact-mobile .info-card p { font-size: 14px; }
  .contact-mobile .gstin-card { padding: 0.875rem 1rem; }
  .contact-mobile .gstin-value { font-size: 16px; }
  .contact-info-mobile .btn-call-now { min-height: 46px; font-size: 14px; }

  /* About page mobile */
  .about-who-mobile .about-who-heading { font-size: 26px; }
  .about-who-mobile .about-who-text { font-size: 15px; }
  .about-who-image { margin-bottom: 0.875rem; }
  .about-badge { padding: 0.375rem 0.75rem; font-size: 12px; }
  .about-badge .material-symbols-outlined { font-size: 18px; }

  .about-mvv-card { padding: 1.125rem; margin-bottom: 0.75rem; }
  .about-mvv-icon { width: 38px; height: 38px; margin-bottom: 0.75rem; }
  .about-mvv-icon .material-symbols-outlined { font-size: 20px; }
  .about-mvv-title { font-size: 17px; }
  .about-mvv-desc { font-size: 14px; }
  .about-mvv-list li { font-size: 13px; }
  .about-mvv-value-item { padding: 0.75rem; }
  .about-mvv-value-item .material-symbols-outlined { font-size: 22px; }
  .about-mvv-value-item h4 { font-size: 14px; }
  .about-mvv-value-item p { font-size: 13px; }

  .about-leadership-mobile .about-leadership-heading { font-size: 24px; margin-bottom: 1rem; }
  .about-leadership-text { font-size: 15px; }
  .about-leadership-stats { gap: 1rem; padding-top: 1rem; }
  .about-leadership-stat .leader-stat-value { font-size: 22px; }
  .about-leadership-stat .leader-stat-label { font-size: 11px; }
  .about-leadership-quote { padding: 1rem; }
  .about-leadership-quote p:first-child { font-size: 14px; }
  .about-leadership-btn { min-height: 46px; font-size: 14px; padding: 12px 18px; }
}

/* Very small phones (320-375px) */
@media (max-width: 375px) {
  :root { --section-padding: 2.5rem; }
  .container { padding: 0 0.875rem; }
  .headline-lg { font-size: 24px; }
  .hero-content h1 { font-size: 24px; }
  .hero-content p { font-size: 13px; }
  .highlights-bar { padding: 1rem; }
  .highlight-item .number { font-size: 22px; }
  .project-carousel-card .card-image { height: 180px !important; }
  .testimonial-slide { padding: 1rem; }
  .testimonial-slide blockquote { font-size: 13px; }
  .cta-content h2 { font-size: 22px; }
  .cta-content p { font-size: 13px; }

  /* EPC mobile section */
  .epc-mobile-header h2 { font-size: 26px; }
  .epc-mobile-header p { font-size: 15px; }
  .epc-stats-grid { gap: 0.625rem; }
  .epc-stat-card { padding: 0.875rem 0.5rem; min-height: 85px; }
  .epc-stat-num { font-size: 24px; }
  .epc-features-grid { gap: 0.625rem; }
  .epc-feature-card { padding: 0.75rem; }
  .epc-feature-card h4 { font-size: 13px; }
  .epc-feature-card p { font-size: 11px; }

  /* Industries mobile */
  .industries-mobile-header h2 { font-size: 24px; }
  .industries-mobile-grid { gap: 0.625rem; }
  .industries-mobile-grid .industry-card { padding: 0.75rem; min-height: 90px; }
  .industries-mobile-grid .industry-card .material-symbols-outlined { font-size: 24px; }

  /* Feature cards - single column on very small phones */
  .features-mobile-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .feature-card-mobile { padding: 0.875rem; min-height: 130px; }
  .feature-card-mobile .material-symbols-outlined { font-size: 28px; margin-bottom: 0.5rem; }
  .feature-card-mobile h3 { font-size: 16px; }
  .feature-card-mobile p { font-size: 14px; }

  /* Contact mobile */
  .contact-mobile .contact-form { padding: 0.875rem; }
  .contact-mobile .contact-form h3 { font-size: 18px; margin-bottom: 1rem; }
  .form-grid-mobile { gap: 0.75rem; }
  .form-grid-mobile .form-group input,
  .form-grid-mobile .form-group select,
  .form-grid-mobile .form-group textarea { min-height: 46px; padding: 10px 12px; font-size: 14px; }
  .form-grid-mobile .form-group textarea { min-height: 100px; }
  .form-grid-mobile .full-width .btn-submit { min-height: 46px; padding: 11px; font-size: 14px; }
  .contact-mobile .info-card { padding: 0.75rem; gap: 0.625rem; }
  .contact-mobile .info-card .icon-box { width: 40px; height: 40px; }
  .contact-mobile .info-card .icon-box .material-symbols-outlined { font-size: 20px; }
  .contact-mobile .info-card h4 { font-size: 14px; }
  .contact-mobile .info-card p { font-size: 13px; }
  .contact-mobile .gstin-card { padding: 0.75rem 0.875rem; }
  .contact-mobile .gstin-label { font-size: 11px; }
  .contact-mobile .gstin-value { font-size: 15px; }
  .contact-info-mobile .btn-call-now { min-height: 44px; font-size: 14px; }

  /* About page mobile */
  .about-who-mobile .about-who-heading { font-size: 24px; }
  .about-who-mobile .about-who-text { font-size: 15px; }
  .about-who-image { margin-bottom: 0.75rem; }
  .about-badge { padding: 0.375rem 0.625rem; font-size: 11px; gap: 0.375rem; }
  .about-badge .material-symbols-outlined { font-size: 16px; }

  .about-mvv-card { padding: 1rem; margin-bottom: 0.625rem; }
  .about-mvv-icon { width: 36px; height: 36px; margin-bottom: 0.625rem; }
  .about-mvv-icon .material-symbols-outlined { font-size: 18px; }
  .about-mvv-title { font-size: 16px; }
  .about-mvv-desc { font-size: 14px; }
  .about-mvv-list li { font-size: 12px; }
  .about-mvv-value-item { padding: 0.625rem; }
  .about-mvv-value-item .material-symbols-outlined { font-size: 20px; }
  .about-mvv-value-item h4 { font-size: 13px; }
  .about-mvv-value-item p { font-size: 12px; }

  .about-leadership-mobile .about-leadership-heading { font-size: 22px; margin-bottom: 0.875rem; }
  .about-leadership-text { font-size: 14px; }
  .about-leadership-stats { gap: 0.875rem; padding-top: 0.75rem; }
  .about-leadership-stat .leader-stat-value { font-size: 20px; }
  .about-leadership-stat .leader-stat-label { font-size: 10px; }
  .about-leadership-quote { padding: 0.875rem; }
  .about-leadership-quote p:first-child { font-size: 14px; }
  .about-leadership-btn { min-height: 44px; font-size: 14px; padding: 10px 16px; }
}

/* Below 360px - single column for industry cards */
@media (max-width: 359px) {
  .contact-mobile .contact-form { padding: 0.75rem; }
  .form-grid-mobile { gap: 0.625rem; }
  .form-grid-mobile .form-group input,
  .form-grid-mobile .form-group select,
  .form-grid-mobile .form-group textarea { min-height: 44px; padding: 9px 10px; font-size: 14px; }
  .contact-mobile .info-card { padding: 0.625rem; gap: 0.5rem; }
  .contact-mobile .info-card .icon-box { width: 36px; height: 36px; }
  .contact-mobile .info-card .icon-box .material-symbols-outlined { font-size: 18px; }

  /* About page mobile */
  .about-who-mobile .about-who-heading { font-size: 22px; }
  .about-who-mobile .about-who-text { font-size: 14px; }
  .about-badge { padding: 0.25rem 0.5rem; font-size: 11px; }

  .about-mvv-card { padding: 0.875rem; margin-bottom: 0.5rem; }
  .about-mvv-icon { width: 34px; height: 34px; }
  .about-mvv-icon .material-symbols-outlined { font-size: 17px; }
  .about-mvv-title { font-size: 15px; }
  .about-mvv-desc { font-size: 13px; }

  .about-leadership-mobile .about-leadership-heading { font-size: 20px; }
  .about-leadership-text { font-size: 14px; }
  .about-leadership-quote { padding: 0.75rem; }
  .about-leadership-btn { min-height: 42px; font-size: 13px; }
  .contact-mobile .gstin-card { padding: 0.625rem 0.75rem; }
  .contact-mobile .gstin-value { font-size: 14px; }
  .contact-info-mobile .btn-call-now { min-height: 42px; font-size: 13px; }

  .industries-mobile-grid {
    grid-template-columns: 1fr;
  }
  .industries-mobile-grid .industry-card {
    min-height: 80px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0.875rem 1rem;
  }
  .industries-mobile-grid .industry-card .material-symbols-outlined {
    margin-bottom: 0;
    font-size: 28px;
    flex-shrink: 0;
  }
}
