/* ============================================================
   ERP SOLUTIONS — MASTER STYLESHEET
   ============================================================
   Table of Contents:
   1.  CSS Custom Properties (Design Tokens)
   2.  Reset & Base
   3.  Typography Utilities
   4.  Layout Utilities
   5.  Buttons
   6.  Animations & Keyframes
   7.  Navbar
   8.  Hero (Home)
   9.  Page Banner
   10. Section Shared Styles
   11. Cards (Generic)
   12. Service Boxes / Industry / Case / Integration / Blog / Price / About
   13. Why Choose Us
   14. Partners Section
   15. Zoho / App / Software / IT / Consulting Hero Variants
   16. Premium Sections
   17. Pain Grid
   18. Module Grid
   19. Timeline Grid
   20. FAQ Grid
   21. Stats Row & Stat Cards
   22. Industries Page
   23. About Page
   24. Contact
   25. Footer
   26. Scroll Reveal
   27. Responsive
   ============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand colours */
  --primary-gradient: linear-gradient(135deg, rgba(4,16,45,.95), rgba(14,69,170,.88));
  --primary-dark:     #04102d;
  --primary:          #0e45aa;
  --primary-light:    #4f8dff;
  --accent:           #6ec1ff;

  /* Text */
  --text:   #1f2937;
  --muted:  #64748b;
  --white:  #fff;

  /* Backgrounds */
  --bg:       #eef4fb;
  --bg-light: #f8fbff;
  --bg-card:  #fff;

  /* Surfaces */
  --radius:  22px;
  --shadow:  0 12px 40px rgba(4,16,45,.08);
  --shadow-hover: 0 25px 55px rgba(14,69,170,.16);

  /* Transitions */
  --transition: all .35s ease;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin:     0;
  padding:    0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background:  var(--bg);
  color:       var(--text);
  padding-top: 90px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

img { display: block; max-width: 100%; }


/* ============================================================
   3. TYPOGRAPHY UTILITIES
   ============================================================ */
.section-heading {
  text-align:    center;
  max-width:     850px;
  margin:        0 auto 70px;
}

.section-heading h2 {
  font-size:     48px;
  margin-bottom: 20px;
  color:         var(--primary-dark);
}

.section-subtitle {
  text-align:    center;
  color:         var(--muted);
  font-size:     18px;
  margin-bottom: 60px;
}

.service-badge {
  display:       inline-block;
  padding:       10px 22px;
  border-radius: 50px;
  background:    rgba(255,255,255,.12);
  border:        1px solid rgba(255,255,255,.25);
  font-size:     13px;
  font-weight:   700;
  letter-spacing:1px;
  color:         #fff;
}

blockquote {
  margin:        25px 0;
  padding:       22px 28px;
  background:    #f1f5f9;
  border-left:   5px solid #2563eb;
  font-size:     24px;
  font-weight:   700;
  border-radius: 12px;
  color:         #2563eb;
}


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width:     90%;
  max-width: 1400px;
  margin:    auto;
}

.center-text { text-align: center; margin-top: 30px; }

.alt-bg  { background: #f5f8fc; }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn-primary,
.btn-secondary {
  display:       inline-block;
  padding:       16px 32px;
  border-radius: 14px;
  font-weight:   700;
  transition:    var(--transition);
}

.btn-primary {
  background: var(--white);
  color:      var(--primary);
}

.btn-primary:hover {
  background:  var(--primary);
  color:       #fff;
  transform:   translateY(-2px);
  box-shadow:  0 8px 24px rgba(14,69,170,.25);
}

.btn-secondary {
  border: 2px solid white;
  color:  white;
}

.btn-secondary:hover {
  background: rgba(255,255,255,.15);
  transform:  translateY(-2px);
}


/* ============================================================
   6. ANIMATIONS & KEYFRAMES
   ============================================================ */

/* --- Fade up (hero text stagger) --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Floating image --- */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* --- Gradient pan (hero / cta / footer) --- */
@keyframes gradientPan {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

/* --- Subtle pulse for stat boxes on hover --- */
@keyframes pulseShadow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79,141,255,.35); }
  50%       { box-shadow: 0 0 0 10px rgba(79,141,255,0); }
}

/* --- Shimmer for skeleton loaders / decorative --- */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}

/* --- Scale in (modal / card entrance) --- */
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* --- Scroll reveal --- */
.reveal {
  opacity:    0;
  transform:  translateY(50px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.active {
  opacity:   1;
  transform: translateY(0);
}

/* Hero stagger animations */
.hero-text h1 {
  animation: fadeUp .8s ease forwards;
}
.hero-text p {
  opacity:   0;
  animation: fadeUp .8s ease .2s forwards;
}
.hero-buttons {
  opacity:   0;
  animation: fadeUp .8s ease .4s forwards;
}
.hero-stats {
  opacity:   0;
  animation: fadeUp .8s ease .6s forwards;
}

/* Floating hero image */
.hero-image img {
  animation: floatY 4s ease-in-out infinite;
}

/* Gradient pan applied to animated backgrounds */
.hero,
.cta-section,
.footer {
  background-size: 200% 200%;
  animation: gradientPan 10s ease infinite;
}

/* Zoho / variant hero images float too */
.zoho-right img,
.app-right img,
.software-right img,
.it-right img,
.consulting-right img {
  animation: floatY 4s ease-in-out infinite;
}


/* ============================================================
   7. NAVBAR
   ============================================================ */
.navbar {
  position:        fixed;
  top:             0;
  left:            0;
  width:           100%;
  background:      rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  z-index:         9999;
  box-shadow:      0 4px 18px rgba(0,0,0,.06);
}

.nav-container {
  width:           95%;
  max-width:       1400px;
  margin:          auto;
  height:          90px;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             20px;
}

.logo img { height: 65px; }

.nav-menu {
  display:     flex;
  gap:         24px;
  align-items: center;
}

.nav-menu li { position: relative; }

.nav-menu li a {
  color:          #334155;
  font-size:      15px;
  font-weight:    700;
  text-transform: uppercase;
  transition:     color .25s;
}

.nav-menu li a:hover { color: var(--primary); }

.nav-arrow { font-size: 12px; margin-left: 6px; }

.dropdown-menu {
  position:   absolute;
  top:        42px;
  left:       0;
  min-width:  270px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding:    12px 0;
  opacity:    0;
  visibility: hidden;
  transform:  translateY(10px);
  transition: opacity .3s, transform .3s, visibility .3s;
}

.dropdown:hover .dropdown-menu {
  opacity:    1;
  visibility: visible;
  transform:  translateY(0);
}

.dropdown-menu li a {
  display:     block;
  padding:     14px 20px;
  font-size:   14px;
  font-weight: 500;
}

.nav-btn a {
  background:    var(--primary-gradient);
  color:         #fff;
  padding:       14px 24px;
  border-radius: 14px;
  font-weight:   600;
  transition:    var(--transition);
}

.nav-btn a:hover {
  opacity:   .9;
  transform: translateY(-2px);
}


/* ============================================================
   8. HERO (HOME)
   ============================================================ */
.hero {
  min-height: calc(100vh - 90px);
  display:    flex;
  align-items:center;
  padding:    80px 0;
  background: var(--primary-gradient);
  color:      #fff;
  position:   relative;
  overflow:   hidden;
}

/* Decorative glows */
.hero::before,
.hero::after {
  content:       "";
  position:      absolute;
  border-radius: 50%;
}
.hero::before {
  width:  520px; height: 520px;
  background: rgba(255,255,255,.08);
  top: -140px; right: -120px;
  filter: blur(50px);
}
.hero::after {
  width:  380px; height: 380px;
  background: rgba(110,193,255,.12);
  bottom: -100px; left: -100px;
  filter: blur(50px);
}

.hero-wrapper {
  display:               grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items:           center;
  gap:                   80px;
  position:              relative;
  z-index:               2;
}

/* Left content */
.hero-text h1 {
  font-size:     64px;
  line-height:   1.15;
  margin-bottom: 28px;
  font-weight:   800;
  max-width:     850px;
}

.hero-text p {
  font-size:     21px;
  line-height:   1.9;
  margin-bottom: 35px;
  max-width:     720px;
  color:         rgba(255,255,255,.9);
}

.hero-buttons {
  display:       flex;
  gap:           18px;
  flex-wrap:     wrap;
  margin-bottom: 45px;
}

/* Right image */
.hero-image {
  display:     flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width:           100%;
  max-width:       420px;
  padding:         30px;
  background:      rgba(255,255,255,.08);
  border:          1px solid rgba(255,255,255,.12);
  border-radius:   28px;
  backdrop-filter: blur(18px);
  box-shadow:      0 25px 60px rgba(0,0,0,.18);
}

/* Stats row */
.hero-stats {
  display:   flex;
  gap:       20px;
  flex-wrap: wrap;
}

.stat-box {
  min-width:       170px;
  padding:         24px 22px;
  border-radius:   20px;
  background:      rgba(255,255,255,.08);
  border:          1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  transition:      var(--transition);
}

.stat-box:hover {
  background: rgba(255,255,255,.14);
  transform:  translateY(-6px);
  animation:  pulseShadow 1.2s ease;
}

.stat-box h3 {
  font-size:     34px;
  margin-bottom: 8px;
  font-weight:   800;
}

.stat-box p {
  font-size:   15px;
  color:       rgba(255,255,255,.85);
  line-height: 1.5;
  margin:      0;
}


/* ============================================================
   9. PAGE BANNER
   ============================================================ */
.page-banner {
  background:  var(--primary-gradient);
  color:       #fff;
  text-align:  center;
  padding:     130px 0;
}

.page-banner h1 { font-size: 60px; margin-bottom: 16px; }
.page-banner p  { font-size: 22px; }


/* ============================================================
   10. SECTION SHARED STYLES
   ============================================================ */
.services,
.about-page,
.services-page,
.industries-page,
.case-studies-page,
.integrations-page,
.blog-page,
.pricing-page,
.why-us,
.partners-section,
.cta-section {
  padding: 110px 0;
}

.services h2 {
  text-align:    center;
  font-size:     48px;
  margin-bottom: 16px;
}


/* ============================================================
   11. CARDS (GENERIC)
   ============================================================ */
.cards {
  display:               grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:                   28px;
  margin-top:            50px;
}

.card {
  background:     var(--bg-card);
  padding:        35px 28px;
  border-radius:  22px;
  min-height:     320px;
  box-shadow:     var(--shadow);
  border:         1px solid rgba(14,69,170,.06);
  transition:     var(--transition);
  display:        flex;
  flex-direction: column;
  align-items:    center;
  text-align:     center;
}

.card:hover {
  transform:  translateY(-12px);
  box-shadow: var(--shadow-hover);
}

.card h3 {
  font-size:  22px;
  color:      var(--primary);
  margin:     20px 0 16px;
  min-height: 54px;
}

.card p {
  color:       #666;
  line-height: 1.7;
  font-size:   15px;
}

.service-icon {
  width:         72px;
  height:        72px;
  display:       flex;
  align-items:   center;
  justify-content: center;
  font-size:     34px;
  background:    linear-gradient(135deg, #0e45aa, #4fa3ff);
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow:    0 10px 25px rgba(14,69,170,.25);
  transition:    transform .3s;
}

.card:hover .service-icon {
  transform: rotate(-6deg) scale(1.1);
}

/* Logo variant */
.service-logo-card { justify-content: flex-start; }
.service-logo { width: 140px; height: 60px; object-fit: contain; margin-bottom: 18px; }
.service-link { color: inherit; }


/* ============================================================
   12. SERVICE / INDUSTRY / CASE / INTEGRATION / BLOG / PRICE / ABOUT BOXES
   ============================================================ */
.service-box,
.industry-box,
.case-box,
.integration-box,
.blog-card,
.price-card,
.about-box {
  background:    var(--bg-card);
  padding:       42px 36px;
  border-radius: var(--radius);
  box-shadow:    var(--shadow);
  border:        1px solid rgba(14,69,170,.06);
  transition:    var(--transition);
}

.service-box:hover,
.industry-box:hover,
.case-box:hover,
.integration-box:hover,
.blog-card:hover,
.price-card:hover,
.about-box:hover {
  transform:  translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.service-box h2,
.industry-box h2,
.case-box h2,
.integration-box h2,
.blog-card h2,
.about-box h2 {
  color:         var(--primary-dark);
  margin-bottom: 18px;
  line-height:   1.3;
}

.about-box p {
  color:       var(--muted);
  line-height: 1.85;
  font-size:   16px;
}


/* ============================================================
   13. WHY CHOOSE US
   ============================================================ */
.why-header {
  text-align:    center;
  margin-bottom: 70px;
}

.why-header h2 {
  font-size:     52px;
  font-weight:   800;
  color:         var(--primary-dark);
  margin-bottom: 18px;
}

.why-header .section-subtitle {
  max-width:   900px;
  margin:      auto;
  font-size:   19px;
  line-height: 1.8;
}

.why-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   32px;
}

.why-box {
  background:    var(--bg-card);
  padding:       42px;
  border-radius: 24px;
  box-shadow:    var(--shadow);
  border:        1px solid rgba(14,69,170,.06);
  transition:    var(--transition);
  min-height:    320px;
}

.why-box:hover {
  transform:  translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.why-icon {
  width:         70px;
  height:        70px;
  display:       flex;
  align-items:   center;
  justify-content: center;
  font-size:     32px;
  border-radius: 18px;
  margin-bottom: 24px;
  background:    linear-gradient(135deg, #eef5ff, #dbeaff);
  transition:    transform .3s;
}

.why-box:hover .why-icon {
  transform: scale(1.15) rotate(-5deg);
}

.why-box h3 {
  color:         var(--primary-dark);
  font-size:     28px;
  font-weight:   700;
  margin-bottom: 18px;
  line-height:   1.35;
}

.why-box p {
  color:       var(--muted);
  line-height: 1.9;
  font-size:   16px;
}


/* ============================================================
   14. PARTNERS SECTION
   ============================================================ */
.partners-section {
  background: linear-gradient(180deg, var(--bg-light), #fff);
}

.partner-grid {
  display:               grid;
  grid-template-columns: repeat(5, 1fr);
  gap:                   30px;
}

.partner-card {
  background:    var(--bg-card);
  padding:       40px 25px;
  border-radius: 24px;
  box-shadow:    0 10px 35px rgba(0,0,0,.08);
  text-align:    center;
  transition:    var(--transition);
  border:        1px solid rgba(14,69,170,.08);
}

.partner-card:hover {
  transform:  translateY(-12px);
  box-shadow: 0 20px 45px rgba(14,69,170,.15);
}

.partner-card img {
  height:        60px;
  max-width:     140px;
  object-fit:    contain;
  margin:        0 auto 20px;
}

.partner-card i {
  font-size:     52px;
  color:         var(--primary);
  margin-bottom: 20px;
  display:       block;
}

.partner-card h3 {
  font-size: 22px;
  color:     #0d2c67;
}


/* ============================================================
   15. HERO VARIANTS (Zoho / App / Software / IT / Consulting)
   ============================================================ */

/* --- Shared hero variant layout --- */
.zoho-hero,
.app-hero,
.software-hero,
.it-hero,
.consulting-hero {
  padding: 110px 0;
  color:   #fff;
  position:  relative;
  overflow:  hidden;
}

/* Individual brand gradients */
.zoho-hero        { background: linear-gradient(135deg, #0f1f5c, #2e63ff); }
.app-hero         { background: linear-gradient(135deg, #0f172a, #2563eb); }
.software-hero    { background: linear-gradient(135deg, #111827, #1d4ed8); }
.it-hero          { background: linear-gradient(135deg, #0f172a, #0f766e); }
.consulting-hero  { background: linear-gradient(135deg, #111827, #7c3aed); }

/* Optional: industry-specific hero colour helpers */
.realestate-hero  { background: linear-gradient(135deg, #0f172a, #1d4ed8); }
.healthcare-hero  { background: linear-gradient(135deg, #0f172a, #059669); }
.education-hero   { background: linear-gradient(135deg, #1e293b, #7c3aed); }
.ecommerce-hero   { background: linear-gradient(135deg, #111827, #ea580c); }

/* Decorative orb (Zoho hero) */
.zoho-hero::before {
  content:       '';
  position:      absolute;
  width:         500px; height: 500px;
  background:    rgba(255,255,255,.08);
  border-radius: 50%;
  top: -150px; right: -100px;
  pointer-events: none;
}

/* Flex wrapper shared by all variants */
.zoho-hero-wrap,
.app-hero-wrap,
.software-hero-wrap,
.it-hero-wrap,
.consulting-wrap {
  display:     flex;
  align-items: center;
  gap:         60px;
}

/* Flex children */
.zoho-left, .zoho-right,
.app-left,  .app-right,
.software-left, .software-right,
.it-left,   .it-right,
.consulting-left, .consulting-right {
  flex: 1;
}

/* Right-side images */
.zoho-right img,
.app-right img,
.software-right img,
.it-right img {
  width:         100%;
  max-width:     560px;
  margin:        auto;
  border-radius: 24px;
  box-shadow:    0 25px 60px rgba(0,0,0,.35);
}

.consulting-right img {
  width:         100%;
  max-width:     560px;
  border-radius: 24px;
  box-shadow:    0 25px 60px rgba(0,0,0,.35);
}

/* Hero headings */
.zoho-left h1,
.app-left h1,
.software-left h1,
.it-left h1,
.consulting-left h1 {
  font-size:     58px;
  line-height:   1.15;
  font-weight:   800;
  margin-bottom: 25px;
}

.zoho-left p,
.app-left p,
.software-left p,
.it-left p,
.consulting-left p {
  font-size:   19px;
  line-height: 1.8;
  color:       rgba(255,255,255,.88);
  margin:      25px 0;
}

/* Hero metrics bar */
.hero-metrics {
  display:    flex;
  gap:        20px;
  margin-top: 35px;
  flex-wrap:  wrap;
}

.hero-metrics > div {
  background:      rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  padding:         22px;
  border-radius:   18px;
  min-width:       130px;
  transition:      var(--transition);
}

.hero-metrics > div:hover {
  transform:  translateY(-8px);
  background: rgba(255,255,255,.18);
}

.hero-metrics h3 {
  font-size:     42px;
  color:         #69a8ff;
  margin-bottom: 4px;
}

.hero-metrics p {
  color:  #fff;
  margin: 0;
}

/* Case hero */
.case-hero {
  background:  linear-gradient(135deg, #0f172a, #2563eb);
  color:       #fff;
  padding:     120px 0;
  text-align:  center;
}

.case-hero h1 { font-size: 52px; margin: 20px 0; }


/* ============================================================
   16. PREMIUM SECTIONS
   ============================================================ */
.premium-section {
  background:    var(--bg-card);
  padding:       60px 65px;
  border-radius: 28px;
  margin-bottom: 40px;
  box-shadow:    0 15px 45px rgba(0,0,0,.06);
  transition:    var(--transition);
}

.premium-section:hover {
  transform: translateY(-5px);
}

.premium-section h2 {
  font-size:     42px;
  margin-bottom: 28px;
  color:         var(--primary-dark);
}

.premium-section p {
  font-size:     18px;
  line-height:   1.9;
  color:         #475569;
  margin-bottom: 22px;
}

/* Colour-modifier classes */
.gray-section { background: #f8fafc; }

.tech-section {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color:      #fff;
}
.tech-section h2,
.tech-section p { color: #fff; }


/* ============================================================
   17. PAIN GRID
   ============================================================ */
.pain-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   18px;
  margin-top:            25px;
}

.pain-card {
  padding:       22px;
  border-radius: 16px;
  color:         #fff;
  font-weight:   600;
  box-shadow:    0 10px 25px rgba(0,0,0,.12);
  transition:    transform .3s;
}

.pain-card:hover { transform: scale(1.03); }

.blue-card   { background: linear-gradient(135deg, #2563eb, #1e40af); }
.orange-card { background: linear-gradient(135deg, #f59e0b, #ea580c); }
.purple-card { background: linear-gradient(135deg, #9333ea, #6d28d9); }
.green-card  { background: linear-gradient(135deg, #10b981, #047857); }

/* Generic problem / process cards (non-coloured) */
.problem-grid,
.process-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   20px;
  margin-top:            30px;
}

.problem-card,
.process-card {
  background:    var(--bg-light);
  padding:       25px;
  border-radius: 16px;
  box-shadow:    0 8px 25px rgba(0,0,0,.05);
}


/* ============================================================
   18. MODULE GRID
   ============================================================ */
.module-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   25px;
  margin-top:            35px;
}

.module-card {
  padding:       28px;
  border-radius: 22px;
  min-height:    170px;
  transition:    var(--transition);
  background:    var(--bg-light);
}

.module-card:hover { transform: translateY(-10px) scale(1.02); }

.module-card h3 {
  font-size:     22px;
  margin-bottom: 15px;
  color:         var(--primary-dark);
}

/* Coloured module variants */
.crm-card {
    background: linear-gradient(135deg, #4f46e5, #1e3a8a);

}
.module-card p{
  
    color: rgba(255, 255, 255, 0.85);
 
}
.finance-card {
    background: linear-gradient(135deg, #10b981, #064e3b);
}

.inventory-card {
    background: linear-gradient(135deg, #f97316, #9a3412);
}

.hr-card {
    background: linear-gradient(135deg, #a855f7, #581c87);
}

.automation-card {
    background: linear-gradient(135deg, #06b6d4, #0e7490);
}

.analytics-card {
    background: linear-gradient(135deg, #ec4899, #be185d);
}

.crm-card h3,
.finance-card h3,
.inventory-card h3,
.hr-card h3,
.automation-card h3,
.analytics-card h3 { color: #fff; }


/* ============================================================
   19. TIMELINE GRID
   ============================================================ */
.timeline-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   25px;
}

.timeline-card {
  text-align:    center;
  background:    linear-gradient(135deg, #f8fbff, #e5edff);
  padding:       35px;
  border-radius: 24px;
  transition:    var(--transition);
}

.timeline-card:hover {
  transform:  translateY(-10px);
  box-shadow: 0 15px 40px rgba(37,99,235,.15);
}

.timeline-card span {
  width:         70px; height: 70px;
  display:       inline-flex;
  align-items:   center;
  justify-content: center;
  border-radius: 50%;
  color:         #fff;
  font-size:     22px;
  font-weight:   700;
  background:    linear-gradient(135deg, #2563eb, #4f46e5);
  margin-bottom: 20px;
}


/* ============================================================
   21. STATS ROW & STAT CARDS (Case Studies page)
   ============================================================ */
.stats-row {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   25px;
  margin:                60px 0;
}

.stat-card {
  background:    var(--bg-card);
  padding:       35px;
  border-radius: 18px;
  text-align:    center;
  box-shadow:    0 12px 35px rgba(0,0,0,.08);
  transition:    var(--transition);
}

.stat-card:hover { transform: translateY(-8px); }

.stat-card h3 {
  font-size: 42px;
  color:     #2563eb;
}

.premium-case-card {
  background:    var(--bg-card);
  padding:       45px;
  border-radius: 22px;
  margin-bottom: 40px;
  box-shadow:    0 18px 45px rgba(0,0,0,.08);
  transition:    var(--transition);
}

.premium-case-card:hover { transform: translateY(-4px); }

.case-tag {
  display:       inline-block;
  background:    #eff6ff;
  color:         #2563eb;
  padding:       8px 16px;
  border-radius: 999px;
  font-size:     14px;
  font-weight:   700;
  margin-bottom: 20px;
}

.case-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   25px;
  margin-top:            25px;
}

.case-grid > div {
  background:    #f8fafc;
  padding:       25px;
  border-radius: 16px;
}


/* ============================================================
   22. INDUSTRIES PAGE
   ============================================================ */
.industries-hero-banner {
  position:   relative;
  min-height: 500px;
  background: url('../images/industries-hero.jpg') center/cover no-repeat;
  display:    flex;
  align-items:center;
}

.hero-overlay {
  position:   absolute;
  inset:      0;
  background: linear-gradient(90deg,
    rgba(6,25,65,.92) 0%,
    rgba(14,69,170,.72) 60%,
    rgba(14,69,170,.35) 100%);
}

.hero-content {
  position:   relative;
  z-index:    2;
  color:      #fff;
  text-align: center;
}

.hero-content h1 {
  font-size:     56px;
  font-weight:   800;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  max-width: 850px;
  margin:    auto;
}

.industries-intro {
  padding:    90px 0;
  text-align: center;
}

.industry-section { padding: 80px 0; }

.industry-row {
  display:     flex;
  gap:         60px;
  align-items: center;
}

.industry-row.reverse { flex-direction: row-reverse; }

.industry-image,
.industry-content { flex: 1; }

.industry-image img {
  width:         100%;
  height:        450px;
  object-fit:    cover;
  border-radius: 20px;
  box-shadow:    0 20px 50px rgba(0,0,0,.1);
}

.industry-content h2 {
  font-size:     48px;
  color:         #1d3471;
  margin-bottom: 25px;
}

.industry-content p {
  font-size:   22px;
  line-height: 1.8;
  color:       #555;
}

.industry-btn {
  display:       inline-block;
  margin-top:    30px;
  background:    #243c88;
  color:         #fff;
  padding:       16px 34px;
  border-radius: 10px;
  transition:    var(--transition);
}

.industry-btn:hover {
  background:  var(--primary-light);
  transform:   translateY(-3px);
}


/* ============================================================
   23. ABOUT PAGE
   ============================================================ */
.about-list {
  margin-top:   20px;
  padding-left: 20px;
}

.about-list li {
  margin-bottom: 12px;
  font-size:     18px;
}

.tech-stack-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   25px;
  margin-top:            30px;
}

.tech-stack-grid .tech-card {
  background:    #f8fafc;
  padding:       28px;
  border-radius: 18px;
  box-shadow:    0 8px 25px rgba(0,0,0,.06);
  line-height:   1.8;
}

.about-hero img {
  width:         100%;
  max-width:     550px;
  border-radius: 20px;
  box-shadow:    0 20px 50px rgba(0,0,0,.15);
}

/* Tech card grid (services / tech sections) */
.tech-grid {
  display:               grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap:                   24px;
  margin-top:            35px;
}

.tech-card {
  background:      var(--bg-card);
  border-radius:   20px;
  padding:         30px 20px;
  min-height:      190px;
  display:         flex;
  flex-direction:  column;
  justify-content: center;
  align-items:     center;
  box-shadow:      0 8px 30px rgba(0,0,0,.08);
  transition:      var(--transition);
  text-align:      center;
}

.tech-card:hover {
  transform:  translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.tech-card img {
  width:         72px; height: 72px;
  object-fit:    contain;
  margin-bottom: 18px;
}

.tech-card span {
  font-size:   17px;
  font-weight: 600;
  color:       #0f1b4c;
  line-height: 1.4;
}

.cloud-card img { width: 90px; height: 72px; }

/* Consulting 4-col tech grid override */
.consulting-wrap .tech-grid { grid-template-columns: repeat(4, 1fr); }

.consulting-wrap .tech-card {
  padding:      20px;
  font-weight:  700;
  min-height:   auto;
}


/* ============================================================
   24. CONTACT
   ============================================================ */
.contact-hero {
  min-height: 100vh;
  background: url('assets/images/contact-bg.jpg') center/cover no-repeat;
  position:   relative;
  display:    flex;
  align-items:center;
  padding:    120px 50px 80px;
}

.contact-overlay {
  position:   absolute;
  inset:      0;
  background: var(--primary-gradient);
}

.contact-main {
  position:              relative;
  z-index:               2;
  width:                 100%;
  max-width:             1400px;
  margin:                auto;
  display:               grid;
  grid-template-columns: 1fr 550px;
  gap:                   60px;
}

.contact-left { color: #fff; }
.contact-left h1 { font-size: 64px; margin-bottom: 25px; }
.contact-left p  { font-size: 22px; line-height: 1.7; }

.contact-form-card {
  background:      rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  border:          1px solid rgba(255,255,255,.18);
  padding:         45px;
  border-radius:   30px;
}

.contact-form-card h2 { color: #fff; font-size: 42px; }
.contact-form-card p  { color: rgba(255,255,255,.85); margin-bottom: 30px; }

.form-row {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width:         100%;
  padding:       18px 20px;
  border-radius: 16px;
  border:        1px solid rgba(255,255,255,.15);
  background:    rgba(255,255,255,.09);
  color:         #fff;
  margin-bottom: 18px;
  outline:       none;
  transition:    border-color .3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(110,193,255,.6);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.7); }
.contact-form select option          { color: #000; }

.contact-form button {
  width:         100%;
  border:        none;
  padding:       18px;
  border-radius: 999px;
  background:    linear-gradient(135deg, #00c6ff, #0072ff);
  color:         #fff;
  font-size:     18px;
  font-weight:   700;
  cursor:        pointer;
  transition:    var(--transition);
}

.contact-form button:hover {
  transform:  translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,114,255,.4);
}


/* ============================================================
   25. CTA SECTION
   ============================================================ */
.cta-section {
  text-align: center;
  background: var(--primary-gradient);
  color:      #fff;
}

.cta-section h2 { font-size: 52px; margin-bottom: 20px; }
.cta-section p  { font-size: 20px; margin-bottom: 30px; color: rgba(255,255,255,.88); }


/* ============================================================
   26. FOOTER
   ============================================================ */
.footer {
  background: var(--primary-gradient);
  color:      #fff;
}

.footer-wrapper {
  display:               grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap:                   40px;
  padding:               60px 0;
}

.footer-brand img {
  height:        70px;
  background:    #fff;
  padding:       8px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.footer-brand p,
.footer-contact p {
  color:       rgba(255,255,255,.9);
  line-height: 1.8;
}

.footer-links h3,
.footer-contact h3 { margin-bottom: 20px; }

.footer-links a {
  display:       block;
  margin-bottom: 14px;
  color:         rgba(255,255,255,.9);
  transition:    color .25s;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  text-align: center;
  padding:    20px;
  background: rgba(0,0,0,.2);
}

.footer-bottom p { color: rgba(255,255,255,.8); }


/* ============================================================
   27. ZOHO-STATS (Zoho hero sub-section, kept distinct from hero-metrics)
   ============================================================ */
.zoho-stats {
  display:    flex;
  gap:        40px;
  margin-top: 40px;
  flex-wrap:  wrap;
}

.zoho-stats h3 {
  font-size: 34px;
  color:     #69a8ff;
}


/* ============================================================
   28. RESPONSIVE
   ============================================================ */

/* --- ≤ 1200px --- */
@media (max-width: 1200px) {
  .cards        { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
  .tech-grid    { grid-template-columns: repeat(3, 1fr); }
}

/* --- ≤ 992px --- */
@media (max-width: 992px) {
  .hero-wrapper        { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-text h1        { font-size: 50px; margin-left: auto; margin-right: auto; }
  .hero-text p         { margin-left: auto; margin-right: auto; }
  .hero-buttons,
  .hero-stats          { justify-content: center; }

  .contact-main        { grid-template-columns: 1fr; }
  .contact-left h1     { font-size: 48px; }
  .split-layout        { grid-template-columns: 1fr; }

  .zoho-hero-wrap,
  .app-hero-wrap,
  .software-hero-wrap,
  .it-hero-wrap,
  .consulting-wrap     { flex-direction: column; }

  .zoho-left h1,
  .app-left h1,
  .software-left h1,
  .it-left h1,
  .consulting-left h1  { font-size: 40px; }

  .hero-metrics        { flex-direction: column; }

  .module-grid,
  .timeline-grid,
  .pain-grid,
  .problem-grid,
  .process-grid        { grid-template-columns: 1fr; }

  .tech-grid           { grid-template-columns: repeat(3, 1fr); }
  .consulting-wrap .tech-grid { grid-template-columns: repeat(2, 1fr); }

  .industry-row,
  .industry-row.reverse { flex-direction: column; }
  .industry-image img  { height: 320px; }
  .hero-content h1     { font-size: 42px; }
  .industry-content h2 { font-size: 34px; }
  .industry-content p  { font-size: 18px; }

  .tech-stack-grid     { grid-template-columns: 1fr; }
  .premium-section     { padding: 35px 30px; }
  .premium-section h2  { font-size: 32px; }

  .footer-wrapper      { grid-template-columns: 1fr 1fr; }
  .stats-row           { grid-template-columns: 1fr; }
  .case-grid           { grid-template-columns: 1fr; }
  .case-hero h1        { font-size: 36px; }
  .zoho-stats          { flex-direction: column; gap: 20px; }
}

/* --- ≤ 768px --- */
@media (max-width: 768px) {
  .nav-menu             { display: none; }

  .hero                 { padding: 60px 0; }
  .hero-text h1         { font-size: 36px; }
  .hero-text p          { font-size: 18px; line-height: 1.8; }
  .hero-image img       { max-width: 300px; padding: 20px; }
  .hero-stats           { flex-direction: column; align-items: center; }
  .stat-box             { width: 100%; max-width: 260px; }

  .cards                { grid-template-columns: 1fr; }
  .card                 { min-height: auto; }

  .why-grid             { grid-template-columns: 1fr; }
  .why-header h2        { font-size: 34px; }
  .why-box              { min-height: auto; }
  .why-box h3           { font-size: 24px; }

  .partner-grid         { grid-template-columns: 1fr; }

  .form-row,
  .footer-wrapper       { grid-template-columns: 1fr; }

  .contact-left h1      { font-size: 36px; }
  .contact-left p       { font-size: 18px; }

  .card,
  .service-box,
  .industry-box,
  .case-box,
  .integration-box,
  .blog-card,
  .price-card,
  .about-box,
  .why-box              { padding: 32px 24px; }

  .tech-grid            { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .tech-card            { min-height: 160px; padding: 22px 14px; }
  .tech-card img        { width: 56px; height: 56px; }
  .tech-card span       { font-size: 14px; }
}

/* --- ≤ 480px --- */
@media (max-width: 480px) {
  .tech-grid            { grid-template-columns: 1fr; }
  .premium-section      { padding: 28px 20px; }
}

/* ============================================================
   Reduced-motion accessibility
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration:   0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration:  0.01ms !important;
  }
}
.web-hero{
    background: linear-gradient(135deg,#071c66,#2563eb);
    padding:90px 0;
}

.web-hero-wrap{
    display:flex;
    align-items:center;
    gap:60px;
}

.web-left,.web-right{
    flex:1;
}

.web-left h1{
    font-size:58px;
    line-height:1.15;
    color:#fff;
    margin:20px 0;
}

.web-left p{
    color:#dce7ff;
    font-size:20px;
    line-height:1.8;
}

.web-right img{
    width:100%;
    max-width:600px;
    border-radius:24px;
    box-shadow:0 30px 60px rgba(0,0,0,.25);
}

.hero-metrics{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.hero-metrics div{
    background:rgba(255,255,255,.12);
    padding:25px;
    border-radius:18px;
    min-width:140px;
    backdrop-filter: blur(8px);
}

.hero-metrics h3{
    color:#59d0ff;
    font-size:40px;
}

.pain-grid,.module-grid,.tech-grid,.timeline-grid{
    display:grid;
    gap:20px;
}

.pain-grid{
    grid-template-columns:repeat(4,1fr);
}

.module-grid,.timeline-grid{
    grid-template-columns:repeat(3,1fr);
}

.tech-grid{
    grid-template-columns:repeat(3,1fr);
}

.faq-card,.timeline-card,.tech-card{
    background:#fff;
    border-radius:18px;
    padding:28px;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    transition:.35s;
}

.module-card:hover,
.faq-card:hover,
.timeline-card:hover,
.tech-card:hover{
    transform:translateY(-8px);
}

.blue-card{border-top:4px solid #2563eb;}
.purple-card{border-top:4px solid #7c3aed;}
.green-card{border-top:4px solid #16a34a;}
.orange-card{border-top:4px solid #f97316;}
.cyan-card{border-top:4px solid #06b6d4;}
.pink-card{border-top:4px solid #ec4899;}

.tech-card{
    display:flex;
    align-items:center;
    gap:15px;
}

.tech-card img{
    width:42px;
    height:42px;
    object-fit:contain;
}

.timeline-card{
    text-align:center;
}

.timeline-card span{
    display:inline-flex;
    width:55px;
    height:55px;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
    font-weight:700;
}

@media(max-width:992px){
    .web-hero-wrap{
        flex-direction:column;
    }

    .module-grid,
    .pain-grid,
    
    .timeline-grid,
    .tech-grid{
        grid-template-columns:1fr;
    }

    .web-left h1{
        font-size:40px;
    }
}
.app-hero{
    background: linear-gradient(135deg,#071c66,#2563eb);
    padding:90px 0;
}

.app-hero-wrap{
    display:flex;
    align-items:center;
    gap:60px;
}

.app-left,.app-right{
    flex:1;
}

.app-left h1{
    color:#fff;
    font-size:58px;
    line-height:1.15;
    margin:20px 0;
}

.app-left p{
    color:#dbeafe;
    font-size:20px;
    line-height:1.8;
}

.app-right img{
    width:100%;
    max-width:580px;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.hero-metrics{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.hero-metrics div{
    background:rgba(255,255,255,.12);
    padding:24px;
    min-width:140px;
    border-radius:18px;
    backdrop-filter:blur(10px);
}

.hero-metrics h3{
    font-size:38px;
    color:#60a5fa;
}

.pain-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.module-grid,
.tech-grid,

.timeline-grid{
    display:grid;
    gap:20px;
}

.module-grid{
    grid-template-columns:repeat(3,1fr);
}

.tech-grid{
    grid-template-columns:repeat(4,1fr);
}

.timeline-grid{
    grid-template-columns:repeat(3,1fr);
}

.tech-card,.faq-card,.timeline-card{
    background:#fff;
    padding:28px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.07);
    transition:.35s;
}

.module-card:hover,
.tech-card:hover,
.faq-card:hover,
.timeline-card:hover{
    transform:translateY(-8px);
}

.blue-card{border-top:4px solid #2563eb;}
.purple-card{border-top:4px solid #7c3aed;}
.green-card{border-top:4px solid #16a34a;}
.orange-card{border-top:4px solid #f97316;}
.cyan-card{border-top:4px solid #06b6d4;}
.pink-card{border-top:4px solid #ec4899;}

.tech-card{
    display:flex;
    align-items:center;
    gap:15px;
}

.tech-card img{
    width:46px;
    height:46px;
    object-fit:contain;
    border-radius:8px;
}

.timeline-card{
    text-align:center;
}

.timeline-card span{
    width:55px;
    height:55px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    font-weight:700;
    margin-bottom:15px;
}

.section-note{
    margin-top:25px;
    font-weight:600;
    color:#2563eb;
}

@media(max-width:992px){
    .app-hero-wrap{
        flex-direction:column;
    }

    .pain-grid,
    .module-grid,
    .tech-grid,
    
    .timeline-grid{
        grid-template-columns:1fr;
    }

    .app-left h1{
        font-size:40px;
    }

    .hero-metrics{
        flex-direction:column;
    }
}
.software-hero{
    background:linear-gradient(135deg,#071c66,#2563eb);
    padding:90px 0;
}

.software-hero-wrap{
    display:flex;
    align-items:center;
    gap:60px;
}

.software-left,.software-right{
    flex:1;
}

.software-left h1{
    color:#fff;
    font-size:56px;
    line-height:1.15;
    margin:20px 0;
}

.software-left p{
    color:#dbeafe;
    font-size:20px;
    line-height:1.8;
}

.software-right img{
    width:100%;
    max-width:580px;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.hero-metrics{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.hero-metrics div{
    background:rgba(255,255,255,.12);
    padding:24px;
    min-width:140px;
    border-radius:18px;
}

.hero-metrics h3{
    color:#60a5fa;
    font-size:38px;
}

.pain-grid,.module-grid,.tech-grid,.timeline-grid{
    display:grid;
    gap:20px;
}

.pain-grid{grid-template-columns:repeat(4,1fr);}
.module-grid{grid-template-columns:repeat(3,1fr);}
.tech-grid{grid-template-columns:repeat(3,1fr);}
.timeline-grid{grid-template-columns:repeat(3,1fr);}

.tech-card,.faq-card,.timeline-card{
    background:#fff;
    padding:28px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.07);
    transition:.35s;
}

.module-card:hover,
.tech-card:hover,
.faq-card:hover,
.timeline-card:hover{
    transform:translateY(-8px);
}

.tech-card{
    display:flex;
    align-items:center;
    gap:14px;
}

.tech-card img{
    width:44px;
    height:44px;
    object-fit:contain;
}

.blue-card{border-top:4px solid #2563eb;}
.purple-card{border-top:4px solid #7c3aed;}
.green-card{border-top:4px solid #16a34a;}
.orange-card{border-top:4px solid #f97316;}
.cyan-card{border-top:4px solid #06b6d4;}
.pink-card{border-top:4px solid #ec4899;}

.timeline-card{
    text-align:center;
}

.timeline-card span{
    width:55px;
    height:55px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    font-weight:700;
    margin-bottom:15px;
}

.section-note{
    margin-top:24px;
    color:#2563eb;
    font-weight:600;
}

@media(max-width:992px){
    .software-hero-wrap{
        flex-direction:column;
    }

    .pain-grid,
    .module-grid,
    .tech-grid,
    
    .timeline-grid{
        grid-template-columns:1fr;
    }

    .software-left h1{
        font-size:40px;
    }

    .hero-metrics{
        flex-direction:column;
    }
}
.it-hero{
    background:linear-gradient(135deg,#071c66,#2563eb);
    padding:90px 0;
}

.it-hero-wrap{
    display:flex;
    align-items:center;
    gap:60px;
}

.it-left,.it-right{
    flex:1;
}

.it-left h1{
    color:#fff;
    font-size:56px;
    line-height:1.15;
    margin:20px 0;
}

.it-left p{
    color:#dbeafe;
    font-size:20px;
    line-height:1.8;
}

.it-right img{
    width:100%;
    max-width:580px;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.hero-metrics{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.hero-metrics div{
    background:rgba(255,255,255,.12);
    padding:24px;
    min-width:140px;
    border-radius:18px;
    backdrop-filter:blur(10px);
}

.hero-metrics h3{
    font-size:38px;
    color:#60a5fa;
}

.pain-grid,
.module-grid,
.tech-grid,

.timeline-grid{
    display:grid;
    gap:20px;
}

.pain-grid{grid-template-columns:repeat(4,1fr);}
.module-grid{grid-template-columns:repeat(3,1fr);}
.tech-grid{grid-template-columns:repeat(3,1fr);}
.timeline-grid{grid-template-columns:repeat(3,1fr);}

.tech-card,.faq-card,.timeline-card{
    background:#fff;
    padding:28px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.07);
    transition:.35s;
}

.module-card:hover,
.tech-card:hover,
.faq-card:hover,
.timeline-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(37,99,235,.15);
}

.blue-card{border-top:4px solid #2563eb;}
.purple-card{border-top:4px solid #7c3aed;}
.green-card{border-top:4px solid #16a34a;}
.orange-card{border-top:4px solid #f97316;}
.cyan-card{border-top:4px solid #06b6d4;}
.pink-card{border-top:4px solid #ec4899;}

.tech-card{
    display:flex;
    align-items:center;
    gap:14px;
}

.tech-card img{
    width:44px;
    height:44px;
    object-fit:contain;
}

.timeline-card{
    text-align:center;
}

.timeline-card span{
    width:55px;
    height:55px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    font-weight:700;
    margin-bottom:15px;
}

.section-note{
    margin-top:24px;
    color:#2563eb;
    font-weight:600;
}

@media(max-width:992px){
    .it-hero-wrap{
        flex-direction:column;
    }

    .pain-grid,
    .module-grid,
    .tech-grid,
    
    .timeline-grid{
        grid-template-columns:1fr;
    }

    .it-left h1{
        font-size:40px;
    }

    .hero-metrics{
        flex-direction:column;
    }
}
.consulting-hero{
    background:linear-gradient(135deg,#0f172a,#1d4ed8);
    padding:90px 0;
}

.consulting-wrap{
    display:flex;
    align-items:center;
    gap:60px;
}

.consulting-left,.consulting-right{
    flex:1;
}

.consulting-left h1{
    font-size:56px;
    color:#fff;
    line-height:1.15;
    margin:20px 0;
}

.consulting-left p{
    color:#dbeafe;
    font-size:20px;
    line-height:1.8;
}

.consulting-right img{
    width:100%;
    max-width:560px;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.hero-metrics{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.hero-metrics div{
    background:rgba(255,255,255,.12);
    padding:22px;
    border-radius:18px;
    min-width:140px;
    backdrop-filter:blur(12px);
}

.hero-metrics h3{
    color:#60a5fa;
    font-size:38px;
}

.pain-grid,.module-grid,.tech-grid,.timeline-grid{
    display:grid;
    gap:20px;
}

.pain-grid{grid-template-columns:repeat(4,1fr);}
.module-grid{grid-template-columns:repeat(3,1fr);}
.tech-grid{grid-template-columns:repeat(4,1fr);}
.timeline-grid{grid-template-columns:repeat(3,1fr);}

.tech-card,.faq-card,.timeline-card{
    background:#fff;
    padding:28px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.07);
    transition:.35s;
}

.module-card:hover,
.tech-card:hover,
.faq-card:hover,
.timeline-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(37,99,235,.15);
}

.blue-card{border-top:4px solid #2563eb;}
.purple-card{border-top:4px solid #7c3aed;}
.green-card{border-top:4px solid #16a34a;}
.orange-card{border-top:4px solid #f97316;}
.cyan-card{border-top:4px solid #06b6d4;}
.pink-card{border-top:4px solid #ec4899;}

.tech-card{
    display:flex;
    align-items:center;
    gap:14px;
}

.tech-card img{
    width:42px;
    height:42px;
    object-fit:contain;
}

.timeline-card{
    text-align:center;
}

.timeline-card span{
    width:55px;
    height:55px;
    border-radius:50%;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    background:#2563eb;
    color:#fff;
    font-weight:700;
    margin-bottom:14px;
}

.section-note{
    margin-top:25px;
    color:#2563eb;
    font-weight:600;
}

@media(max-width:992px){
    .consulting-wrap{
        flex-direction:column;
    }

    .consulting-left h1{
        font-size:40px;
    }

    .pain-grid,.module-grid,.tech-grid,.timeline-grid{
        grid-template-columns:1fr;
    }

    .hero-metrics{
        flex-direction:column;
    }
}
.about-hero{
    background:linear-gradient(135deg,#0f172a,#2563eb);
    padding:90px 0;
}

.about-hero-wrap{
    display:flex;
    align-items:center;
    gap:60px;
}

.about-left,.about-right{
    flex:1;
}

.about-left h1{
    font-size:56px;
    line-height:1.15;
    color:#fff;
    margin:20px 0;
}

.about-left p{
    color:#dbeafe;
    font-size:19px;
    line-height:1.8;
}

.about-right img{
    width:100%;
    max-width:560px;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.hero-metrics{
    display:flex;
    gap:20px;
    margin-top:35px;
}

.hero-metrics div{
    background:rgba(255,255,255,.12);
    padding:24px;
    border-radius:18px;
    min-width:150px;
    backdrop-filter:blur(12px);
}

.hero-metrics h3{
    font-size:36px;
    color:#60a5fa;
}

.tech-grid,
.module-grid,

.timeline-grid{
    display:grid;
    gap:20px;
}

.tech-grid{
    grid-template-columns:repeat(3,1fr);
}

.module-grid{
    grid-template-columns:repeat(2,1fr);
}

.timeline-grid{
    grid-template-columns:repeat(3,1fr);
}

.tech-card,

.faq-card,
.timeline-card{
    background:#fff;
    padding:28px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.07);
    transition:.35s;
}

.tech-card:hover,
.module-card:hover,
.faq-card:hover,
.timeline-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(37,99,235,.15);
}

.tech-card{
    display:flex;
    align-items:center;
    gap:14px;
}

.tech-card img{
    width:42px;
    height:42px;
    object-fit:contain;
}

.blue-card{border-top:4px solid #2563eb;}
.purple-card{border-top:4px solid #7c3aed;}
.green-card{border-top:4px solid #16a34a;}
.orange-card{border-top:4px solid #f97316;}

.timeline-card{
    text-align:center;
}

.timeline-card span{
    width:54px;
    height:54px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#2563eb;
    color:#fff;
    font-weight:700;
    margin-bottom:14px;
}

@media(max-width:992px){
    .about-hero-wrap{
        flex-direction:column;
    }

    .about-left h1{
        font-size:40px;
    }

    .tech-grid,
    .module-grid,
    
    .timeline-grid{
        grid-template-columns:1fr;
    }

    .hero-metrics{
        flex-direction:column;
    }
}
.faq-section{
    display:grid;
    grid-template-columns: 1fr 1.7fr;
    gap:60px;
    align-items:start;
}

.faq-label{
    color:#192baf;
    font-weight:700;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:1px;
}

.faq-left h2{
    font-size:48px;
    margin:20px 0;
}

.faq-left p{
    font-size:20px;
    color:#667085;
    line-height:1.8;
}

.faq-item{
    border-bottom:1px solid #e5e7eb;
    padding:18px 0;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:24px;
    font-weight:600;
    cursor:pointer;
    text-align:left;
    padding:10px 0;
    color:#0f172a;
}
.split-layout {
    /* display: grid; */
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
}
.faq-question span{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#192baf;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
    flex-shrink:0;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:all .35s ease;
}

.faq-answer p{
    padding-top:15px;
    color:#475467;
    line-height:1.8;
    font-size:18px;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

@media(max-width:992px){
    .faq-section{
        grid-template-columns:1fr;
    }

    .faq-left h2{
        font-size:36px;
    }

    .faq-question{
        font-size:18px;
    }
}
.module-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:30px;
}

.module-card{
    padding:35px 28px;
    border-radius:20px;
    background:#fff;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
    transition:all 0.35s ease;
    text-align:left;
}

.module-card img{
    width:64px;
    height:64px;
    object-fit:contain;
    margin-bottom:20px;
}

.module-card h3{
    font-size:24px;
    font-weight:700;
    color:#0b1b4d;
    margin-bottom:14px;
}

.module-card p{
    color:#5a6478;
    line-height:1.8;
    font-size:16px;
}

.module-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(37,99,235,0.15);
}

/* Card colors */
.crm-card{
    background:linear-gradient(135deg,#eff6ff,#ffffff);
    border-top:5px solid #2563eb;
}

.finance-card{
    background:linear-gradient(135deg,#f0fdf4,#ffffff);
    border-top:5px solid #22c55e;
}

.inventory-card{
    background:linear-gradient(135deg,#fff7ed,#ffffff);
    border-top:5px solid #f97316;
}

.hr-card{
    background:linear-gradient(135deg,#faf5ff,#ffffff);
    border-top:5px solid #9333ea;
}

.automation-card{
    background:linear-gradient(135deg,#eef2ff,#ffffff);
    border-top:5px solid #6366f1;
}

.analytics-card{
    background:linear-gradient(135deg,#ecfeff,#ffffff);
    border-top:5px solid #06b6d4;
}

@media(max-width:992px){
    .module-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .module-grid{
        grid-template-columns:1fr;
    }
}
.hero-metrics{
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: nowrap; /* prevent wrapping */
}

.hero-metrics > div{
    flex: 1; /* all equal width */
    min-width: 180px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 28px 24px;
    border-radius: 20px;
}

.hero-metrics h3{
    margin: 0 0 8px;
    font-size: 52px;
    font-weight: 700;
    color: #63a4ff;
}

.hero-metrics p{
    margin: 0;
    font-size: 16px;
    color: #fff;
    line-height: 1.4;
}
.module-card{
    min-height: 340px;
    padding: 35px 30px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all .3s ease;
}

.module-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(37,99,235,0.12);
}

.module-logo{
    width: 110px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 20px;
}

.module-card h3{
    margin-bottom: 15px;
}

.module-card p{
    line-height: 1.85;
    color: #5f6b85;
}
.case-studies-page {
    padding: 90px 0;
    background: #f3f7fb;
}

.premium-case-card {
    position: relative;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 24px;
    padding: 45px;
    margin-bottom: 45px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.premium-case-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(#2563eb, #06b6d4);
}

.premium-case-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(37,99,235,0.22);
}
.case-hero{
    padding:140px 0 90px;
    background:linear-gradient(135deg,#0f172a,#1d4ed8);
    color:#fff;
    text-align:center;
}

.case-hero h1{
    font-size:56px;
    font-weight:800;
}

.case-hero p{
    max-width:900px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
}

.case-studies-page{
    padding:80px 0;
    background:#eef4ff;
}

.stats-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:50px;
}

.stat-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.stat-card h3{
    color:#2563eb;
    font-size:42px;
}

.premium-case-card{
    background:#fff;
    padding:50px;
    border-radius:25px;
    margin-bottom:50px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    border-left:6px solid #2563eb;
    transition:.4s;
}

.premium-case-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 70px rgba(37,99,235,.18);
}

.case-tag{
    display:table;
    margin:0 auto 20px;
    padding:10px 20px;
    border-radius:40px;
    background:linear-gradient(90deg,#2563eb,#06b6d4);
    color:#fff;
    font-weight:600;
}

.premium-case-card h2{
    text-align:center;
    font-size:40px;
    margin-bottom:20px;
}

.case-intro{
    text-align:center;
    font-size:18px;
    line-height:1.8;
    color:#475569;
}

.case-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:35px;
}

.mini-card{
    background:#f8fafc;
    padding:30px;
    border-radius:20px;
}

.result-card{
    grid-column:1 / span 2;
    background:linear-gradient(135deg,#2563eb,#06b6d4);
    color:#fff;
    padding:35px;
    border-radius:20px;
}

.mini-card h4,
.result-card h4{
    text-align:center;
    font-size:24px;
    margin-bottom:20px;
}

.mini-card ul,
.result-card ul{
    list-style:none;
    padding:0;
}

.mini-card li,
.result-card li{
    padding:12px 0;
}

.mini-card li::before{
    content:"• ";
    color:#2563eb;
}

.result-card li::before{
    content:"✓ ";
}

.cta-section{
    padding:90px 0;
    background:#0f172a;
    color:#fff;
    text-align:center;
}

.btn-primary{
    display:inline-block;
    margin-top:20px;
    padding:14px 30px;
    background:#2563eb;
    color:#fff;
    border-radius:40px;
    text-decoration:none;
}

@media(max-width:900px){
    .stats-row,.case-grid{
        grid-template-columns:1fr;
    }

    .result-card{
        grid-column:auto;
    }

    .premium-case-card h2{
        font-size:28px;
    }
}

.trust-boxes{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.trust-card{
    min-width:160px;
    padding:25px;
    border-radius:20px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,0.12);
    text-align:center;
    transition:.3s ease;
}

.trust-card:hover{
    transform:translateY(-8px);
}

.trust-card h3{
    font-size:34px;
    color:#60a5fa;
    margin-bottom:10px;
}