/* Canonical enterprise styles extracted from enterprise-networking.html */
:root {
  --primary: #0284c7;
  --accent: #0ea5a3;
  --text-dark: #0b1220;
  --text-muted: #475569;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-light: rgba(11, 18, 32, 0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; width: 100%; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg-light); color: var(--text-dark); }
.page-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
header { background: var(--bg-white); border-bottom: 1px solid var(--border-light);position: relative; z-index: 20; }
/* Top bar (contact + social) */
.topbar { background: linear-gradient(90deg,#071433 0%, #0b1730 100%); color: rgba(255,255,255,0.95); box-shadow: inset 0 -1px 0 rgba(255,255,255,0.02); }
.topbar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 8px 20px; }
.topbar-left { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar .contact-link { display: inline-flex; gap: 10px; align-items: center; color: rgba(255,255,255,0.92); text-decoration: none; font-size: 13px; }
.topbar .contact-link i { width: 18px; text-align: center; color: rgba(255,255,255,0.9); font-size: 14px; }
.topbar .contact-text { display: inline-block; white-space: nowrap; }
.topbar-right { display: flex; align-items: center; }
.social-links { display: flex; gap: 8px; align-items: center; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; color: white; background: rgba(255,255,255,0.03); text-decoration: none; transition: all 200ms ease; font-size: 14px; }
.social-links a:hover { background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(2,132,199,0.18); }
.social-links a i { width: 16px; height: 16px; display: inline-block; text-align: center; }
@media (max-width: 768px) {
  .topbar-inner { padding: 8px 14px; }
  .topbar .contact-text { display: none; }
  .topbar { font-size: 13px; }
}
.header-inner { width: 100%; padding: 0; box-sizing: border-box; }
/* Main header / navigation styles */
/* Main header (full-width background) */
.site-header { width:100%; background: linear-gradient(180deg,#ffffff 0%, #fbfdff 100%); box-shadow: 0 6px 30px rgba(12,24,48,0.06); border-radius: 0; }
.site-header-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; padding: 14px 28px; column-gap: 28px; }
.header-left { justify-self: start; display:flex; align-items:center; gap:14px; }
.header-center { justify-self: center; display:flex; align-items:center; justify-content:center; }
.header-right { justify-self: end; display:flex; align-items:center; }
.site-logo { display:flex; align-items:center; gap:12px; }
.site-logo .logo-img { height:36px; width:auto; display:block; }
.nav-toggle { display:none; background:transparent; border:0; cursor:pointer; width:48px; height:48px; align-items:center; justify-content:center; border-radius:8px; }
.nav-toggle:hover { background: rgba(2,132,199,0.04); }
.nav-toggle .hamburger { width:20px; height:2px; background:var(--text-dark); position:relative; display:block; transition: background .2s ease; }
.nav-toggle .hamburger::before, .nav-toggle .hamburger::after { content:''; position:absolute; left:0; right:0; height:2px; background:var(--text-dark); transition: transform .25s ease, top .25s ease, opacity .2s ease; }
.nav-toggle .hamburger::before { top:-6px; }
.nav-toggle .hamburger::after { top:6px; }
.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { transform: rotate(45deg); top:0; }
.nav-toggle.active .hamburger::after { transform: rotate(-45deg); top:0; }
.main-nav { display:flex; align-items:center; }
.nav-menu { list-style:none; display:flex; gap:26px; align-items:center; justify-content:center; }
.nav-menu .menu-item { position:relative; }
.menu-link { background:transparent; border:0; color:var(--text-dark); font-weight:700; font-size:16px; padding:12px 14px; cursor:pointer; border-radius:10px; position:relative; }
.menu-link::after { content:''; position:absolute; left:12px; right:12px; bottom:6px; height:2px; background: linear-gradient(90deg,var(--primary),var(--accent)); transform: scaleX(0); transform-origin:left; transition: transform .28s cubic-bezier(.2,.9,.2,1); border-radius:2px; opacity:0; }
.menu-link:hover::after, .menu-link:focus::after { transform: scaleX(1); opacity:1; }
.menu-link:hover, .menu-link:focus { color:var(--primary); outline: none; }

/* Solutions dropdown (single-column, premium look) */
.solutions-dropdown { width: 310px; min-width: 280px; background: var(--bg-white); border-radius: 12px; padding: 12px 8px; box-shadow: 0 20px 50px rgba(2,12,30,0.16), inset 0 1px 0 rgba(255,255,255,0.5); opacity: 0; visibility: hidden; transform: translateY(-10px) scale(.98); transform-origin: top center; transition: opacity 280ms cubic-bezier(.2,.8,.2,1), transform 280ms cubic-bezier(.2,.8,.2,1), visibility 280ms ease; border-top: 3px solid; border-image: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%) 1; position: absolute; left: 50%; transform-origin: top center; top: calc(100% + 12px); z-index: 70; }
.menu-item.open > .solutions-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) scale(1); }
.solutions-item:hover > .solutions-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) scale(1); }
.solutions-list { list-style: none; margin: 0; padding: 4px 0; }
.solutions-list li { margin: 0; }
.solutions-list a { display: flex; align-items: center; gap: 12px; padding: 14px 16px; color: var(--text-dark); text-decoration: none; font-weight: 600; font-size: 14px; border-radius: 9px; transition: all 200ms ease; position: relative; }
.solutions-list a::before { content: '▸'; color: var(--primary); font-weight: 800; font-size: 12px; transition: all 200ms ease; opacity: 0.6; }
.solutions-list a:hover, .solutions-list a:focus { background: linear-gradient(90deg, rgba(2,132,199,0.08) 0%, rgba(14,165,163,0.04) 100%); color: var(--primary); transform: translateX(6px); outline: none; }
.solutions-list a:hover::before, .solutions-list a:focus::before { opacity: 1; transform: scale(1.3); }

/* Desktop: ensure dropdown aligns below button and doesn't overflow */
.solutions-item { position: relative; }
@media (min-width: 981px) {
  .solutions-item .menu-link { cursor: pointer; }
}

/* Mobile: convert to accordion style */
@media (max-width: 980px) {
  .solutions-item > .solutions-dropdown { position: relative; left: 0; transform: none; top: 0; width: 100%; box-shadow: none; padding: 0; background: transparent; visibility: visible; opacity: 1; max-height: 0; overflow: hidden; transition: max-height 280ms ease; border: none; }
  .solutions-item:hover > .solutions-dropdown { opacity: 1; visibility: visible; transform: none; max-height: 0; }
  .menu-item.open > .solutions-dropdown { max-height: 1000px; }
  .solutions-list a { padding: 14px 18px; border-bottom: 1px solid var(--border-light); background: var(--bg-white); margin: 0; }
  .solutions-list a::before { display: none; }
  .dropdown, .mega-menu { position: relative; left: 0; transform: none; top: 0; opacity: 1; visibility: visible; max-height: 0; overflow: hidden; transition: max-height 280ms ease; box-shadow: none; background: transparent; padding: 0; border: none; }
  .menu-item.open > .dropdown, .menu-item.open > .mega-menu { max-height: 500px; }
  .menu-item:hover > .dropdown, .menu-item:hover > .mega-menu { opacity: 1; visibility: visible; transform: none; max-height: 0; }
  .dropdown a::before { display: none; }
}

/* Simple dropdown (About Us, etc.) */
.dropdown, .mega-menu { position: absolute; left: 0; top: calc(100% + 12px); background: var(--bg-white); min-width: 280px; padding: 14px 10px; border-radius: 12px; box-shadow: 0 20px 50px rgba(2,12,30,0.16), inset 0 1px 0 rgba(255,255,255,0.5); opacity: 0; visibility: hidden; transform: translateY(-10px) scale(.98); transition: all 280ms cubic-bezier(.2,.8,.2,1); z-index: 60; border-top: 3px solid; border-image: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%) 1; }
.menu-item.open > .dropdown, .menu-item.open > .mega-menu { opacity:1; visibility:visible; transform: translateY(0) scale(1); }
.menu-item:hover > .dropdown, .menu-item:hover > .mega-menu { opacity:1; visibility:visible; transform: translateY(0) scale(1); }
.dropdown a { display: flex; align-items: center; gap: 12px; text-decoration:none; color:var(--text-dark); padding: 14px 16px; border-radius:9px; font-size:14px; font-weight: 600; transition: all 200ms ease; position: relative; }
.dropdown a::before { content: '→'; color: var(--accent); font-weight: 700; opacity: 0.5; transition: all 200ms ease; }
.dropdown a:hover { background: linear-gradient(90deg, rgba(2,132,199,0.08) 0%, rgba(14,165,163,0.04) 100%); color:var(--primary); transform: translateX(6px); }
.dropdown a:hover::before { opacity: 1; transform: translateX(3px); color: var(--primary); }

/* Mega menu styles */
.mega-menu { width: 760px; display:grid; grid-template-columns: repeat(3,1fr); gap:18px; padding:20px; }
.mega-column h4 { margin:0 0 8px 0; font-size:13px; color:var(--text-dark); letter-spacing:0.02em; font-weight:700; }
.mega-column a { display:flex; align-items:center; gap:10px; padding:8px 10px; font-size:14px; color:var(--text-muted); border-radius:8px; }
.mega-column a::before { content:''; width:8px; height:8px; border-radius:2px; background: rgba(2,132,199,0.12); display:inline-block; }
.mega-column a:hover { color:var(--primary); background: rgba(2,132,199,0.04); transform: translateX(4px); }

/* Adjust positions for right aligned dropdowns */
.menu-item.right { right:0; left:auto; }
.menu-item.right > .dropdown, .menu-item.right > .mega-menu { right: 0; left: auto; transform: translateY(-10px) scale(.98); }
.menu-item.right:hover > .dropdown, .menu-item.right:hover > .mega-menu, .menu-item.right.open > .dropdown, .menu-item.right.open > .mega-menu { right: 0; left: auto; transform: translateY(0) scale(1); }

/* Mobile styles */
@media (max-width: 980px) {
  .nav-toggle { display:flex; }
  .main-nav { position:fixed; inset:72px 16px auto 16px; background:var(--bg-white); border-radius:12px; box-shadow:0 20px 60px rgba(2,12,30,0.12); max-height:0; overflow:hidden; transition: max-height 320ms ease; width:calc(100% - 32px); }
  .main-nav.open { max-height: 80vh; overflow:auto; }
  .nav-menu { flex-direction:column; gap:0; padding:14px; }
  .menu-link { width:100%; text-align:left; padding:12px 10px; }
  .dropdown, .mega-menu { position:relative; top:0; left:0; transform:none; opacity:1; visibility:visible; width:100%; box-shadow:none; background:transparent; padding:0; }
  .mega-menu { display:block; width:100%; }
}
@media (min-width: 981px) {
  /* ensure nav sits in center column on large screens */
  .main-nav { position: relative; width: auto; background: transparent; box-shadow: none; border-radius: 0; }
  .main-nav .nav-menu { gap: 22px; }
  .dropdown, .mega-menu { top: calc(100% + 12px); }
}
.logo { font-size: 20px; font-weight: 800; color: var(--text-dark); display: flex; align-items: center; gap: 12px; }
.logo-img { height: 40px; width: auto; object-fit: contain; }
.logo span { display: block; font-size: 12px; color: var(--accent); font-weight: 700; margin-top: 2px; }
nav { display: flex; gap: 28px; }
nav a { font-size: 14px; font-weight: 500; color: var(--text-muted); text-decoration: none; transition: color 250ms ease; }
nav a:hover { color: var(--primary); }
@media (max-width: 640px) { nav { display: none; } }
/* Header actions (CTA) */
.header-actions { display:flex; align-items:center; gap:12px; }
.btn-cta { padding: 10px 20px; border-radius: 10px; font-size: 14px; font-weight: 700; box-shadow: 0 8px 28px rgba(2,132,199,0.14); }
.btn-cta.btn-primary { background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); color: #fff; }
@media (max-width: 980px) { .header-actions { display: none; } }
main { flex: 1; display: flex; flex-direction: column; }
    
/* CREATIVE ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
@keyframes glow { 0%, 100% { box-shadow: 0 0 20px rgba(2, 132, 199, 0.3); } 50% { box-shadow: 0 0 30px rgba(2, 132, 199, 0.6); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
@keyframes shimmer { 0% { background-position: -1000px 0; } 100% { background-position: 1000px 0; } }
    
/* SERVICE CONTENT CREATIVE STYLING */
.service-hero { padding: 80px 20px; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); color: white; text-align: center; position: relative; overflow: hidden; }
.service-hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.1), transparent); border-radius: 50%; animation: float 6s ease-in-out infinite; }
.service-hero::after { content: ''; position: absolute; bottom: -40%; left: -15%; width: 350px; height: 350px; background: radial-gradient(circle, rgba(255,255,255,0.08), transparent); border-radius: 50%; animation: float 8s ease-in-out infinite reverse; }
.service-hero h1 { font-size: clamp(32px, 6vw, 52px); font-weight: 900; margin-bottom: 16px; letter-spacing: -0.02em; position: relative; z-index: 2; animation: fadeInUp 0.8s ease-out; }
.service-hero p { font-size: clamp(16px, 3vw, 20px); font-weight: 500; max-width: 700px; margin: 0 auto; line-height: 1.6; position: relative; z-index: 2; animation: fadeInUp 0.8s ease-out 0.2s backwards; }
    
.service-content { max-width: 1100px; margin: 0 auto; padding: 80px 40px; animation: fadeInUp 1s ease-out; }
.service-content h2 { font-size: 42px; font-weight: 900; color: var(--text-dark); margin-bottom: 32px; margin-top: 0; letter-spacing: -0.01em; background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; position: relative; padding-bottom: 20px; }
.service-content > h2:first-child::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 4px; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); border-radius: 2px; animation: slideInRight 0.8s ease-out; }
    
.service-content h3 { font-size: 28px; font-weight: 800; color: var(--text-dark); margin-top: 60px; margin-bottom: 28px; position: relative; padding-left: 20px; animation: slideInLeft 0.6s ease-out; }
.service-content h3::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 24px; background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%); border-radius: 2px; animation: scaleIn 0.6s ease-out; }
    
.service-content p { font-size: 16px; line-height: 1.85; color: var(--text-muted); margin-bottom: 22px; transition: all 0.4s ease; }
.service-content p strong { color: var(--text-dark); font-weight: 700; }
    
/* NUMBERED LIST WITH CREATIVE STYLING */
.service-content ol { margin-left: 24px; margin-bottom: 32px; line-height: 2; counter-reset: item; }
.service-content ol li { margin-bottom: 20px; color: var(--text-muted); font-size: 15px; list-style: none; counter-increment: item; padding-left: 40px; position: relative; transition: all 0.3s ease; animation: fadeInUp 0.6s ease-out backwards; }
.service-content ol li:nth-child(1) { animation-delay: 0.1s; }
.service-content ol li:nth-child(2) { animation-delay: 0.15s; }
.service-content ol li:nth-child(3) { animation-delay: 0.2s; }
.service-content ol li:nth-child(n+4) { animation-delay: calc(0.1s * (var(--n) - 3)); }
.service-content ol li::before { content: counter(item); position: absolute; left: 0; top: 0; font-weight: 800; color: white; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 14px; box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25); }
.service-content ol li:hover { color: var(--primary); transform: translateX(8px); }
.service-content ol li:hover::before { animation: glow 1s ease-in-out; }
.service-content ol li strong { color: var(--primary); font-weight: 800; display: block; margin-bottom: 6px; }
    
/* BULLET LIST WITH CREATIVE STYLING */
.service-content ul { margin-left: 24px; margin-bottom: 32px; line-height: 1.95; list-style: none; }
.service-content ul li { margin-bottom: 14px; color: var(--text-muted); font-size: 15px; padding-left: 32px; position: relative; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); animation: fadeInUp 0.6s ease-out backwards; }
.service-content ul li:nth-child(1) { animation-delay: 0.05s; }
.service-content ul li:nth-child(2) { animation-delay: 0.1s; }
.service-content ul li:nth-child(3) { animation-delay: 0.15s; }
.service-content ul li:nth-child(n+4) { animation-delay: calc(0.05s * (var(--n) - 3)); }
.service-content ul li::before { content: '✓'; position: absolute; left: 0; color: white; background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%); font-weight: 900; font-size: 16px; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 6px; box-shadow: 0 2px 8px rgba(14, 165, 163, 0.2); transition: all 0.3s ease; }
.service-content ul li:hover { color: var(--primary); transform: translateX(6px); }
.service-content ul li:hover::before { transform: scale(1.2) rotate(15deg); box-shadow: 0 4px 16px rgba(14, 165, 163, 0.4); }
    
.back-link { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); color: white; text-decoration: none; border-radius: 10px; font-weight: 600; font-size: 14px; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); margin-bottom: 40px; box-shadow: 0 4px 12px rgba(2,132,199,0.2); position: relative; overflow: hidden; animation: slideInLeft 0.8s ease-out; }
.back-link::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transform: translateX(-100%); animation: shimmer 2s infinite; }
.back-link:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(2,132,199,0.4); }
.back-link i { font-size: 14px; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.back-link:hover i { transform: translateX(-6px); }
    
/* HIGHLIGHT BOXES WITH CREATIVE STYLING */
.highlight-box { background: linear-gradient(135deg, rgba(2,132,199,0.12) 0%, rgba(14,165,163,0.06) 100%); border-left: 4px solid var(--primary); padding: 24px; border-radius: 12px; margin: 32px 0; position: relative; overflow: hidden; animation: slideInRight 0.8s ease-out; }
.highlight-box::before { content: ''; position: absolute; top: 0; right: -50px; width: 150px; height: 150px; background: radial-gradient(circle, rgba(2,132,199,0.08), transparent); border-radius: 50%; animation: float 6s ease-in-out infinite; }
.highlight-box p { margin-bottom: 0; font-weight: 500; color: var(--text-dark); position: relative; z-index: 2; }
    
@media (max-width: 1024px) {
  .service-content { padding: 60px 32px; }
  .service-content h2 { font-size: 36px; }
  .service-content h3 { font-size: 24px; margin-top: 48px; }
}
    
@media (max-width: 768px) {
  .service-hero { padding: 60px 24px; }
  .service-hero h1 { font-size: 28px; }
  .service-hero p { font-size: 14px; }
  
  .service-content { padding: 48px 24px; max-width: 100%; }
  .service-content h2 { font-size: 28px; margin-bottom: 24px; }
  .service-content h3 { font-size: 20px; margin-top: 36px; margin-bottom: 20px; }
  .service-content p { font-size: 15px; line-height: 1.75; }
  
  .service-content ol { margin-left: 20px; line-height: 1.9; }
  .service-content ol li { font-size: 14px; margin-bottom: 16px; padding-left: 36px; }
  .service-content ol li::before { width: 28px; height: 28px; font-size: 12px; }
  
  .service-content ul { margin-left: 20px; }
  .service-content ul li { font-size: 14px; margin-bottom: 12px; padding-left: 28px; }
  .service-content ul li::before { width: 20px; height: 20px; font-size: 12px; }
  
  .back-link { padding: 10px 20px; font-size: 13px; }
  
  .highlight-box { padding: 20px; margin: 24px 0; }
}
    
@media (max-width: 480px) {
  .service-hero { padding: 48px 16px; }
  .service-hero h1 { font-size: 24px; margin-bottom: 12px; }
  .service-hero p { font-size: 13px; }
  
  .service-content { padding: 36px 16px; }
  .service-content h2 { font-size: 22px; }
  .service-content h3 { font-size: 18px; margin-top: 32px; }
  .service-content p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
  
  .service-content ol li { font-size: 13px; margin-bottom: 12px; }
  .service-content ul li { font-size: 13px; margin-bottom: 10px; }
}
    
/* HERO SLIDER */
.hero-section { display: flex; align-items: center; justify-content: center; padding: 40px 20px; background: linear-gradient(135deg, rgba(2, 132, 199, 0.04) 0%, rgba(14, 165, 163, 0.04) 100%); }
.hero-slider-wrapper { width: 100%; max-width: 900px; }
.hero-slider-container { position: relative; background: var(--bg-white); border-radius: 20px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); overflow: hidden; }
.hero-slides-track { display: flex; position: relative; height: 500px; }
.hero-slide { position: absolute; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 60px 40px; text-align: center; opacity: 0; transition: opacity 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.hero-slide { position: absolute; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 60px 40px; text-align: center; opacity: 0; transition: opacity 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94); background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-slide.active { opacity: 1; }

/* Ken Burns background: use --bg-image variable on each slide */
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center;
  z-index: 0;
  will-change: transform;
  animation: kenburns 20s ease-in-out infinite alternate;
}

/* stronger overlay to fade background images for better text contrast */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,8,15,0.88) 0%, rgba(3,8,15,0.72) 60%), linear-gradient(135deg, rgba(2,132,199,0.03) 0%, rgba(14,165,163,0.01) 100%);
  z-index: 1;
}

.hero-slide-content { position: relative; z-index: 2; }

/* text styling + staggered reveal */
.hero-slide-label, .hero-slide-title, .hero-slide-description { opacity: 0; transform: translateY(12px); }
.hero-slide-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px; }
.hero-slide-title { font-size: clamp(24px, 5vw, 40px); font-weight: 800; line-height: 1.2; color: #ffffff; margin-bottom: 20px; letter-spacing: -0.02em; text-shadow: 0 6px 22px rgba(3,8,15,0.6); }
.hero-slide-description { font-size: clamp(14px, 2.5vw, 18px); line-height: 1.7; color: rgba(255,255,255,0.88); margin: 0 auto 32px; max-width: 680px; }

.hero-slide.active .hero-slide-label { animation: fadeUp .6s cubic-bezier(.2,.8,.2,1) .12s both; }
.hero-slide.active .hero-slide-title { animation: fadeUp .7s cubic-bezier(.2,.8,.2,1) .28s both; }
.hero-slide.active .hero-slide-description { animation: fadeUp .6s cubic-bezier(.2,.8,.2,1) .5s both; }

@keyframes kenburns {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.08) translateY(-4%); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero-slide-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn { padding: 12px 28px; border-radius: 10px; border: 0; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 250ms ease; text-decoration: none; display: inline-block; }
.btn-primary { background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); color: white; box-shadow: 0 4px 16px rgba(2, 132, 199, 0.25); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(2, 132, 199, 0.35); }
.btn-secondary {     background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff; box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2); }
.btn-secondary:hover { background: var(--primary); color: white; }
.hero-slider-controls { position: absolute; bottom: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; padding: 20px 30px; background: linear-gradient(180deg, transparent 0%, rgba(7, 3, 3, 0.95) 60%); z-index: 10; }
.nav-buttons { display: flex; gap: 12px; }
.nav-btn { width: 44px; height: 44px; border-radius: 50%; background: white; border: 2px solid var(--primary); color: var(--primary); font-size: 20px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 250ms ease; }
.nav-btn:hover { background: var(--primary); color: white; transform: scale(1.08); }
.hero-slide-indicators { display: flex; gap: 8px; }
.indicator { width: 10px; height: 10px; border-radius: 50%; background: rgba(11, 18, 32, 0.2); border: 0; cursor: pointer; transition: all 300ms ease; }
.indicator.active { background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); width: 28px; border-radius: 5px; }
.indicator:hover { background: rgba(2, 132, 199, 0.4); }
    
/* SERVICES SECTION */
.services-section { padding: 80px 20px; background: var(--bg-white); }
.services-container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.6; }
.section-header h2 { font-size: clamp(28px, 5vw, 48px); font-weight: 800; color: var(--text-dark); margin-bottom: 12px; letter-spacing: -0.02em; }
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}
    
/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; margin-bottom: 60px; margin-top: 10px;; }
.service-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: 16px; padding: 32px; text-align: center; transition: all 300ms ease; position: relative; overflow: hidden; opacity: 1; transform: scale(1); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1); }
.service-icon-box { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 40px; color: white; }
.service-icon-box i { font-size: 36px; }
.service-card h3 { font-size: 18px; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; line-height: 1.4; }
.service-card p { font-size: 14px; line-height: 1.7; color: var(--text-muted); }
    
.services-tabs { display: flex; gap: 12px; margin-bottom: 40px; justify-content: center; flex-wrap: wrap; }
.tab-btn { padding: 10px 20px; background: var(--bg-light); border: 2px solid transparent; border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all 250ms ease; }
.tab-btn:hover { color: var(--primary); background: var(--bg-white); border-color: var(--primary); }
.tab-btn.active { background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); color: white; border-color: var(--primary); }
    
.services-grid-wrapper { max-width: 100%; overflow-x: auto; }
@supports (scroll-behavior: smooth) {
      .services-grid-wrapper { scroll-behavior: smooth; }
    }

/* WHY CHOOSE US SECTION */
.why-choose-section { padding: 100px 20px; background: linear-gradient(180deg, rgba(2, 132, 199, 0.02) 0%, rgba(14, 165, 163, 0.02) 100%); position: relative; overflow: hidden; }
.why-choose-section::before { content: ''; position: absolute; top: -40%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.why-choose-section::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(14, 165, 163, 0.08) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.why-choose-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.why-choose-header { text-align: center; margin-bottom: 60px; }
.why-choose-header h2 { font-size: clamp(32px, 6vw, 48px); font-weight: 800; color: var(--text-dark); margin-bottom: 16px; letter-spacing: -0.02em; position: relative; display: inline-block; width: 100%; }
.why-choose-header h2::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); border-radius: 2px; }
.why-choose-subheading { font-size: clamp(16px, 3vw, 20px); font-weight: 700; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0; margin-top: 24px; }

/* LAYOUT GRID */
.why-choose-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.why-choose-intro { font-size: 15px; line-height: 1.8; color: var(--text-muted); text-align: justify; }
.why-choose-intro p { margin-bottom: 16px; transition: color 300ms ease; text-align: justify; }
.why-choose-intro p:last-child { margin-bottom: 0; }

/* ACCORDION STYLES - ENHANCED */
.accordion-container { display: flex; flex-direction: column; gap: 16px; }
.accordion-item { background: var(--bg-white); border: 2px solid var(--border-light); border-radius: 16px; overflow: hidden; transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); position: relative; }
.accordion-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); transform: scaleX(0); transform-origin: left; transition: transform 400ms ease; z-index: 10; }
.accordion-item:hover { border-color: rgba(2, 132, 199, 0.2); box-shadow: 0 8px 24px rgba(2, 132, 199, 0.1); }
.accordion-item.active::before { transform: scaleX(1); }
.accordion-item.active { border-color: var(--primary); box-shadow: 0 12px 32px rgba(2, 132, 199, 0.2); }
.accordion-header { padding: 24px; background: var(--bg-white); border: none; width: 100%; text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; transition: all 300ms ease; font-size: 16px; font-weight: 700; color: var(--text-dark); position: relative; }
.accordion-header::before { content: attr(data-icon); position: absolute; left: 24px; font-size: 24px; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; transition: all 300ms ease; font-family: 'Font Awesome 6 Free'; font-weight: 600; }
.accordion-header[data-icon="star"]::before { content: "\f005"; }
.accordion-header[data-icon="check"]::before { content: "\f00c"; }
.accordion-header[data-icon="bolt"]::before { content: "\f0e7"; }
.accordion-header[data-icon="chart"]::before { content: "\f080"; }
.accordion-header[data-icon="users"]::before { content: "\f0c0"; }
.accordion-header[data-icon="handshake"]::before { content: "\f2b5"; }
.accordion-header span:first-child { margin-left: 48px; transition: all 300ms ease; }
.accordion-item.active .accordion-header { background: linear-gradient(90deg, rgba(2, 132, 199, 0.08) 0%, rgba(14, 165, 163, 0.08) 100%); color: var(--primary); }
.accordion-header:hover { background: linear-gradient(90deg, rgba(2, 132, 199, 0.04) 0%, rgba(14, 165, 163, 0.04) 100%); }
.accordion-header:hover span:first-child { transform: translateX(8px); }
.accordion-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; margin-left: 12px; flex-shrink: 0; font-size: 18px; transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); color: var(--primary); }
.accordion-item.active .accordion-icon { transform: rotate(180deg) scale(1.1); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 300ms ease; background: linear-gradient(135deg, rgba(2, 132, 199, 0.03) 0%, rgba(14, 165, 163, 0.03) 100%); }
.accordion-item.active .accordion-content { max-height: 400px; padding: 24px 24px 24px 72px; }
.accordion-content p { font-size: 15px; line-height: 1.85; color: var(--text-muted); margin: 0; letter-spacing: 0.3px; }
    
/* ONLINE CONTACT SUPPORT STYLES */
.online-support-section { padding: 100px 20px; background: linear-gradient(135deg, #0284c7 0%, #0ea5a3 100%); position: relative; overflow: hidden; }
.online-support-section::before { content: ''; position: absolute; top: -50%; right: -5%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.online-support-section::after { content: ''; position: absolute; bottom: -40%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.online-support-container { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; background: rgba(255, 255, 255, 0.95); border-radius: 24px; padding: 60px 40px; box-shadow: 0 20px 60px rgba(2, 132, 199, 0.25); backdrop-filter: blur(10px); }
.online-support-header { text-align: center; margin-bottom: 40px; }

.online-support-header h2 { font-size: clamp(32px, 6vw, 44px); margin-bottom: 12px; font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; }
.online-support-content { margin-bottom: 40px; }
.online-support-content p { color: var(--text-muted); line-height: 1.9; margin-bottom: 18px; text-align: center; font-size: 15px; }
.online-support-content p:first-child { font-weight: 600; color: var(--text-dark); }
.support-cta-box { text-align: center; }
.support-cta-box .btn-primary { min-width: 160px; padding: 12px 32px; font-size: 15px; box-shadow: 0 8px 24px rgba(2, 132, 199, 0.3); transition: all 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.support-cta-box .btn-primary:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 40px rgba(2, 132, 199, 0.4); }

/* TRUSTED PARTNERS & CERTIFICATIONS SECTION */
.trusted-partners-section { padding: 120px 20px; background: linear-gradient(135deg, rgba(2, 132, 199, 0.02) 0%, rgba(14, 165, 163, 0.02) 100%); position: relative; overflow: hidden; }
.trusted-partners-section::before { content: ''; position: absolute; top: -40%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(2, 132, 199, 0.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.trusted-partners-section::after { content: ''; position: absolute; bottom: -30%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(14, 165, 163, 0.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.trusted-partners-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.trusted-partners-header { text-align: center; margin-bottom: 80px; display: flex; flex-direction: column; align-items: center; }
.trusted-partners-header h2 { font-size: clamp(32px, 6vw, 48px); font-weight: 800; color: var(--text-dark); margin-bottom: 12px; letter-spacing: -0.02em; position: relative; display: block; }
.trusted-partners-header h2::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); border-radius: 2px; }
.trusted-partners-header p { font-size: 18px; color: var(--text-muted); line-height: 1.6; max-width: 600px; margin-top: 24px; text-align: center; }

/* PARTNERS GRID */
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; align-items: center; justify-items: center; width: 100%; }
.partner-logo { position: relative; padding: 28px; height: 150px; display: flex; align-items: center; justify-content: center; border-radius: 20px; background: var(--bg-white); transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); border: 2px solid transparent; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06); overflow: hidden; }
.partner-logo::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(2, 132, 199, 0.1) 0%, rgba(14, 165, 163, 0.1) 100%); opacity: 0; transition: opacity 400ms ease; border-radius: 20px; }
.partner-logo::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%); opacity: 0; transition: opacity 400ms ease; border-radius: 20px; }
.partner-logo:hover { transform: translateY(-12px) scale(1.08); box-shadow: 0 24px 48px rgba(2, 132, 199, 0.2); border-color: rgba(2, 132, 199, 0.2); }
.partner-logo:hover::before { opacity: 1; }
.partner-logo:hover::after { opacity: 1; }
.partner-logo img { max-width: 85%; max-height: 85%; width: auto; height: auto; object-fit: contain; filter: grayscale(100%) brightness(0.95); opacity: 0.8; transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); position: relative; z-index: 1; }
.partner-logo:hover img { filter: grayscale(0%) brightness(1); opacity: 1; }

/* FOOTER STYLES */
footer { background: linear-gradient(135deg, #0b1220 0%, #1a2847 100%); color: var(--bg-white); padding: 80px 20px 40px; position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; top: -40%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
footer::after { content: ''; position: absolute; bottom: -30%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(14, 165, 163, 0.08) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.footer-content { max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-section { min-width: 0; }
.footer-section h3 { font-size: 16px; font-weight: 800; color: var(--bg-white); margin-bottom: 16px; letter-spacing: -0.01em; display: flex; align-items: center; gap: 8px; }
.footer-section h3::before { content: ''; width: 4px; height: 24px; background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%); border-radius: 2px; }
.footer-section p { font-size: 15px; line-height: 1.8; color: rgba(255, 255, 255, 0.75); margin-bottom: 16px; }
.footer-section ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-section ul li { margin-bottom: 0; }
.footer-section ul li a { color: rgba(255, 255, 255, 0.75); text-decoration: none; font-size: 14px; transition: all 300ms ease; display: flex; align-items: center; gap: 8px; }
.footer-section ul li a::before { content: '→'; opacity: 0; transition: opacity 300ms ease; }
.footer-section ul li a:hover { color: var(--primary); transform: translateX(4px); }
.footer-section ul li a:hover::before { opacity: 1; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 18px; align-items: flex-start; }
.footer-contact-item .icon { font-size: 18px; min-width: 20px; }
.footer-contact-item .icon i { font-size: 22px; color: var(--primary); }
.footer-contact-item .info { font-size: 13px; color: rgba(255, 255, 255, 0.75); line-height: 1.5; }
.footer-contact-item .info strong { color: var(--bg-white); display: block; font-weight: 600; margin-bottom: 2px; font-size: 14px; }
.footer-social { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; }
.social-link { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(2, 132, 199, 0.15); color: var(--bg-white); text-decoration: none; font-size: 18px; transition: all 300ms ease; border: 1px solid transparent; }
.social-link:hover { background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); transform: translateY(-6px); border-color: rgba(255, 255, 255, 0.2); }
.social-link i { font-size: 20px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 40px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom-text { font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.footer-bottom-text strong { color: var(--primary); font-weight: 600; }

@media (max-width: 768px) {
  footer { padding: 60px 16px 30px; }
  .footer-content { flex-direction: column; gap: 30px; margin-bottom: 30px; }
  .footer-section { min-width: 100%; }
  .footer-section h3 { font-size: 16px; }
  .footer-section p { font-size: 14px; }
  .footer-social { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .online-support-section { padding: 60px 16px; }
  .online-support-container { padding: 40px 24px; }
  .online-support-header::before { font-size: 40px; margin-bottom: 12px; }
  .online-support-header h2 { font-size: 28px; }
  .online-support-content p { font-size: 14px; }
  .trusted-partners-section { padding: 60px 16px; }
  .trusted-partners-header { margin-bottom: 50px; }
  .trusted-partners-header h2 { font-size: 28px; }
  .trusted-partners-header p { font-size: 15px; }
  .partners-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 24px; }
  .partner-logo { padding: 16px; height: 120px; }
}

@media (max-width: 768px) {
  .hero-section { padding: 30px 16px; }
  .hero-slide { padding: 40px 24px; }
  .hero-slides-track { height: 600px; }
  .hero-slider-controls { flex-direction: column-reverse; gap: 16px; padding: 16px 20px; }
  .nav-buttons { width: 100%; justify-content: center; }
  .services-section { padding: 60px 16px; }
  .section-header { margin-bottom: 40px; }
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
  .services-tabs { gap: 8px; }
  .tab-btn { padding: 8px 16px; font-size: 12px; }
  .why-choose-section { padding: 60px 16px; }
  .why-choose-header { margin-bottom: 40px; }
  .why-choose-header h2 { font-size: 28px; }
  .why-choose-content { grid-template-columns: 1fr; gap: 40px; }
  .why-choose-intro { text-align: justify;}
  .why-choose-intro p { text-align: justify;}
  .accordion-header { padding: 18px; padding-left: 55px; font-size: 14px; }
  .accordion-header::before { left: 18px; font-size: 20px; }
  .accordion-header span:first-child { margin-left: 0; }
  .accordion-content p { font-size: 13px; }
  .accordion-item.active .accordion-content { padding: 18px 18px 18px 63px; }
}

/* NEW MULTI-SECTION LAYOUT STYLES */
.service-section { padding: 80px 20px; background: var(--bg-white); position: relative; }
.service-section h1 { font-size: clamp(36px, 8vw, 56px); font-weight: 900; color: var(--text-dark); margin-bottom: 16px; letter-spacing: -0.02em; animation: fadeInUp 0.8s ease-out; }
.service-section > p { font-size: 18px; color: var(--text-muted); max-width: 800px; line-height: 1.7; animation: fadeInUp 0.8s ease-out 0.2s backwards; }

.section-container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(32px, 6vw, 48px); font-weight: 800; color: var(--text-dark); margin: 0 0 20px 0; letter-spacing: -0.02em; position: relative; display: inline-block; width: 100%; }
.section-header h2::after { content: ''; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); border-radius: 2px; animation: slideInRight 0.8s ease-out; }
.section-header p { font-size: 16px; color: var(--text-muted); max-width: 700px; margin: 0 auto; line-height: 1.6; margin-top: 40px; }

/* SERVICES GRID LAYOUT */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-top: 20px; }
.service-grid-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: 16px; padding: 32px 28px; text-align: center; transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); position: relative; overflow: hidden; cursor: pointer; animation: fadeInUp 0.6s ease-out backwards; }
.service-grid-card:nth-child(1) { animation-delay: 0.05s; }
.service-grid-card:nth-child(2) { animation-delay: 0.1s; }
.service-grid-card:nth-child(3) { animation-delay: 0.15s; }
.service-grid-card:nth-child(n+4) { animation-delay: calc(0.05s * (var(--n, 1) - 3)); }
.service-grid-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); transform: scaleX(0); transform-origin: left; transition: transform 400ms ease; }
.service-grid-card:hover::before { transform: scaleX(1); }
.service-grid-card:hover { transform: translateY(-12px); box-shadow: 0 20px 50px rgba(2, 132, 199, 0.15); border-color: rgba(2, 132, 199, 0.1); }
.service-card-icon { width: 70px; height: 70px; margin: 0 auto 24px; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: white; transition: all 400ms ease; }
.service-grid-card:hover .service-card-icon { transform: scale(1.15) rotate(8deg); }
.service-grid-card h3 { font-size: 18px; font-weight: 800; color: var(--text-dark); margin: 0 0 12px 0; line-height: 1.4; }
.service-grid-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* WHY CHOOSE SECTION ENHANCED */
.why-choose-intro { font-size: 15px; line-height: 1.85; color: var(--text-muted); margin-bottom: 32px; }
.why-choose-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 32px; }
.benefit-item { padding: 20px; background: linear-gradient(135deg, rgba(2, 132, 199, 0.08) 0%, rgba(14, 165, 163, 0.04) 100%); border-radius: 12px; border-left: 4px solid var(--primary); transition: all 300ms ease; animation: fadeInUp 0.6s ease-out backwards; }
.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.15s; }
.benefit-item:nth-child(3) { animation-delay: 0.2s; }
.benefit-item:nth-child(4) { animation-delay: 0.25s; }
.benefit-item:hover { transform: translateY(-6px); box-shadow: 0 12px 24px rgba(2, 132, 199, 0.12); }
.benefit-item strong { display: block; font-size: 15px; color: var(--primary); margin-bottom: 8px; font-weight: 700; }
.benefit-item p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; margin-top: 40px; }
.stat-card { background: var(--bg-white); padding: 32px 24px; border-radius: 16px; border: 1px solid var(--border-light); text-align: center; transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); position: relative; overflow: hidden; animation: fadeInUp 0.6s ease-out backwards; }
.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.15s; }
.stat-card:nth-child(3) { animation-delay: 0.2s; }
.stat-card:nth-child(4) { animation-delay: 0.25s; }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); }
.stat-card:hover { transform: translateY(-8px); box-shadow: 0 12px 28px rgba(2, 132, 199, 0.10); }
.stat-number { font-size: clamp(32px, 5vw, 48px); font-weight: 900; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; display: block; }
.stat-label { font-size: 14px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* CTA SECTION ENHANCED */
.cta-section { padding: 100px 20px; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); color: white; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -40%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.08), transparent); border-radius: 50%; animation: float 8s ease-in-out infinite; }
.cta-section::after { content: ''; position: absolute; bottom: -30%; left: -15%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,0.06), transparent); border-radius: 50%; animation: float 10s ease-in-out infinite reverse; }
.cta-section h2 { font-size: clamp(32px, 6vw, 48px); font-weight: 900; margin-bottom: 16px; letter-spacing: -0.02em; position: relative; z-index: 2; animation: fadeInUp 0.8s ease-out; }
.cta-section p { font-size: 18px; max-width: 700px; margin: 0 auto 40px; line-height: 1.6; position: relative; z-index: 2; animation: fadeInUp 0.8s ease-out 0.2s backwards; opacity: 0.95; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; animation: fadeInUp 0.8s ease-out 0.4s backwards; }
.cta-btn { padding: 14px 32px; border-radius: 10px; border: 2px solid white; font-size: 15px; font-weight: 700; cursor: pointer; transition: transform 220ms ease, box-shadow 220ms ease; text-decoration: none; display: inline-block; }
.cta-btn.primary { background: white; color: var(--primary); }
.cta-btn.primary:hover, .cta-btn.primary:focus { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.cta-btn.secondary { background: transparent; color: white; }
.cta-btn.secondary:hover, .cta-btn.secondary:focus { background: white; color: var(--primary); transform: translateY(-3px); }

/* Ensure .btn inside CTA uses the same animation as .cta-btn */
.service-section.cta-section .cta-buttons .btn { transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease; }
.service-section.cta-section .cta-buttons .btn:hover, .service-section.cta-section .cta-buttons .btn:focus { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.service-section.cta-section .cta-buttons .btn-primary { background: white; color: var(--primary); box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3); }
.service-section.cta-section .cta-buttons .btn-primary:hover { background: white; box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4); }
.service-section.cta-section .cta-buttons .btn-secondary { background: transparent; color: white; border: 2px solid white; box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2); }
.service-section.cta-section .cta-buttons .btn-secondary:hover { background: white; color: var(--primary); box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4); }

/* INTRO SECTION (Creative layout) */
.intro-section { padding: 60px 20px; background: linear-gradient(180deg, rgba(2, 132, 199, 0.04) 0%, rgba(14, 165, 163, 0.02) 100%); }
.intro-grid { display: grid; grid-template-columns: 1fr 480px; gap: 40px; align-items: center; max-width: 1200px; margin: 0 auto; }
.intro-content { padding: 8px 12px; }
.intro-content h2 { font-size: clamp(26px, 4.5vw, 40px); font-weight: 900; color: var(--text-dark); margin: 0 0 12px; animation: fadeInUp .6s both; }
.intro-highlight { font-size: 18px; color: var(--text-dark); line-height: 1.7; margin-bottom: 16px; font-weight: 600; }
.intro-copy { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }

.intro-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; margin-top: 10px; }
.intro-bullet { display:flex; gap:12px; align-items:flex-start; background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.98)); border-radius: 12px; padding: 12px; box-shadow: 0 8px 20px rgba(10,20,40,0.04); }
.intro-bullet .icon { width:44px; height:44px; border-radius:10px; display:flex; align-items:center; justify-content:center; color:#fff; background: linear-gradient(135deg, var(--primary), var(--accent)); font-size:18px; flex-shrink:0; }
.intro-bullet .text { font-size:14px; color:var(--text-dark); font-weight:700; line-height:1.4; }

.intro-cta { margin-top: 20px; display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.intro-cta .btn { padding: 12px 22px; border-radius: 10px; font-weight:700; }
/* Make secondary button visible on light intro background */
.intro-cta .btn.btn-secondary { background: transparent; color: var(--primary); border: 2px solid var(--primary); box-shadow: none; }
.intro-cta .btn.btn-secondary:hover, .intro-cta .btn.btn-secondary:focus { background: var(--primary); color: white; transform: translateY(-3px); }

.intro-visual { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 18px 40px rgba(2,12,30,0.06); }
.intro-visual img { width: 100%; height: auto; display:block; transform-origin: center; transition: transform 600ms cubic-bezier(.2,.8,.2,1); }
.intro-visual:hover img { transform: scale(1.03) translateY(-6px); }

.stat-badges { position: absolute; left: 16px; top: 16px; display:flex; gap:10px; z-index: 5; }
.stat-badge { background: #fff; color: var(--primary); padding: 8px 12px; border-radius: 12px; font-weight:800; box-shadow: 0 10px 24px rgba(2,12,30,0.08); font-size:13px; }

/* accent decorative circle */
.intro-deco { position:absolute; right:-40px; bottom:-40px; width:160px; height:160px; background: radial-gradient(circle at 30% 30%, rgba(2,132,199,0.12), transparent 50%); border-radius:50%; pointer-events:none; }

/* stacked paragraph styling for better rhythm */
.intro-content p + p { margin-top: 12px; }

/* Responsive layout */
@media (max-width: 980px) {
      .intro-grid { grid-template-columns: 1fr 360px; gap: 28px; }
    }
    @media (max-width: 760px) {
      .intro-grid { grid-template-columns: 1fr; padding: 0 8px; }
      .intro-bullets { grid-template-columns: 1fr; }
      .intro-visual { order: -1; margin-bottom: 18px; }
      .intro-visual img { transform: none; }
    }

/* PERFORMANCE & ACCESSIBILITY TWEAKS */
:root { --card-shadow: 0 12px 28px rgba(2,132,199,0.08); }
.service-grid-card, .stat-card, .partner-logo { will-change: transform; -webkit-font-smoothing: antialiased; }
.service-card-icon { backface-visibility: hidden; transform-origin: center; }
.service-grid-card:focus-within { outline: 3px solid rgba(2,132,199,0.12); outline-offset: 4px; }
.service-grid-card:focus-within .service-card-icon { transform: scale(1.06) rotate(4deg); }
.service-grid-card:focus { outline: 3px solid rgba(2,132,199,0.18); outline-offset: 6px; box-shadow: 0 8px 24px rgba(2,132,199,0.06); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .service-grid-card:hover, .stat-card:hover, .benefit-item:hover { transform: none !important; box-shadow: none !important; }
}

/* TOUCH & POINTER ADAPTATIONS */
@media (hover: none) and (pointer: coarse) {
  .service-grid-card { touch-action: manipulation; }
  .service-grid-card::before { transform: scaleX(1); }
  .service-grid-card, .stat-card { box-shadow: none; }
}

/* RESPONSIVE - TABLET */
@media (max-width: 768px) {
  .service-section { padding: 60px 16px; }
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
  .service-grid-card { padding: 22px 18px; }
  .why-choose-benefits { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stat-card { padding: 22px 14px; }
  .stat-number { font-size: 34px; }
  .cta-section { padding: 80px 16px; }
  .cta-buttons { gap: 12px; }
  .cta-btn { padding: 12px 24px; font-size: 14px; }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 480px) {
  .service-section { padding: 48px 14px; }
  .section-header h2 { font-size: 26px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-grid-card { padding: 16px 12px; }
  .service-grid-card h3 { font-size: 16px; }
  .service-grid-card p { font-size: 13px; }
  .why-choose-benefits { grid-template-columns: 1fr; gap: 10px; }
  .benefit-item { padding: 12px; border-left-width: 3px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-number { font-size: 24px; }
  .stat-label { font-size: 12px; }
  .cta-section { padding: 56px 12px; }
  .cta-section h2 { font-size: 24px; }
  .cta-section p { font-size: 14px; margin-bottom: 16px; }
  .cta-buttons { flex-direction: column; gap: 10px; }
  .cta-btn { width: 100%; padding: 10px 16px; font-size: 13px; }
}

/* WHY-CHOOSE Creative overrides and components */
.why-choose-section { padding: 100px 20px; background: linear-gradient(180deg, rgba(2,132,199,0.02) 0%, rgba(255,255,255,0.0) 100%); }
.why-choose-wrap { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 40px; align-items: start; }
.why-left { padding-right: 8px; }
.why-header { margin-bottom: 18px; }
.why-header h2 { font-size: clamp(28px,5vw,40px); font-weight: 900; margin: 0 0 8px; }
.why-sub { font-size: 16px; color: var(--text-muted); margin-bottom: 18px; }

.why-features { display: grid; gap: 12px; margin-top: 12px; }
.feature-card { display:flex; gap:14px; align-items:flex-start; background: var(--bg-white); padding: 14px; border-radius: 12px; border: 1px solid var(--border-light); box-shadow: 0 8px 24px rgba(2,12,30,0.04); transition: transform 300ms ease, box-shadow 300ms ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(2,12,30,0.06); }
.feature-icon { width:48px; height:48px; border-radius:10px; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:800; background: linear-gradient(135deg, var(--primary), var(--accent)); flex-shrink:0; }
.feature-body { font-size:14px; color:var(--text-dark); font-weight:700; }
.feature-sub { font-size:13px; color:var(--text-muted); font-weight:500; margin-top:6px; }

.why-right { position: relative; }
.stack-cards { display:flex; flex-direction:column; gap:14px; }
.stack-card { background: linear-gradient(180deg, #fff, #fafafa); border-radius: 14px; padding: 18px; border: 1px solid var(--border-light); box-shadow: 0 12px 30px rgba(2,12,30,0.06); transition: transform 360ms cubic-bezier(.2,.8,.2,1); }
.stack-card:hover { transform: translateY(-8px) scale(1.01); }
.stack-card h4 { margin:0 0 8px; font-size:16px; color:var(--text-dark); }
.stack-card p { margin:0; color:var(--text-muted); font-size:14px; line-height:1.6; }

.why-stats { display:flex; gap:12px; margin-top:14px; flex-wrap:wrap; }
.why-stat { background: linear-gradient(90deg, rgba(2,132,199,0.06), rgba(14,165,163,0.03)); padding: 10px 14px; border-radius: 12px; font-weight:800; color:var(--primary); box-shadow: 0 8px 20px rgba(2,12,30,0.03); }

.why-quote { margin-top: 18px; background: linear-gradient(180deg, rgba(2,132,199,0.02), rgba(14,165,163,0.01)); border-left: 4px solid var(--primary); padding: 14px 16px; border-radius: 10px; font-style: italic; color: var(--text-dark); }

@media (max-width: 980px) { .why-choose-wrap { grid-template-columns: 1fr 360px; gap: 28px; } }
@media (max-width: 760px) {
      .why-choose-wrap { grid-template-columns: 1fr; }
      .why-right { order: -1; }
    }

/* Stats badge styling for why-choose sections */
.why-stats { margin: 24px 0; }
.stat-badge-group { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 16px; }
.stat-badge-item { background: linear-gradient(135deg, rgba(2,132,199,0.08) 0%, rgba(14,165,163,0.08) 100%); border: 1px solid var(--border-light); border-radius: 12px; padding: 16px; text-align: center; transition: all 300ms ease; }
.stat-badge-item:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(2,132,199,0.15); border-color: var(--primary); }
.stat-badge-number { font-size: 24px; font-weight: 900; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 6px; }
.stat-badge-label { font-size: 13px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.02em; }

@media (prefers-reduced-motion: reduce) {
  .feature-card, .stack-card { transition: none !important; transform: none !important; }
}

