/* =============================== Modern Full-Width Layout =============================== */

/* Page Intro Section - Modern Full-Width */
.page-intro {
  background: #ffffff;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  width: 100%;
  opacity: 1;
}


.page-intro .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-intro h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInServicesTitle 0.8s ease-out 0.2s forwards;
}

.page-intro .section-subline {
  font-size: 1.3rem;
  color: #64748b;
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInServicesTitle 0.8s ease-out 0.2s forwards;
}

@keyframes fadeInServicesTitle {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================== Page Intro (Services) =============================== */
.page-intro {
  background: #f7f9fc;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-intro .container {
  position: relative;
  z-index: 2;
}
.page-intro h1 {
  font-size: 2.2rem;
  color: #000000;
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: none;
}
/* Urgency Note */
.urgency-note {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin: 1rem auto;
  text-align: center;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  animation: pulse 2s infinite;
}
.urgency-note i {
  color: #d97706;
  font-size: 1.1rem;
}
.urgency-note span {
  color: #92400e;
  font-weight: 600;
  font-size: 0.95rem;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* Hero Image Section */
.hero-image-section {
  background: #fff;
  padding: 3rem 1rem;
  position: relative;
}
.hero-image-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}
.hero-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.hero-image-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.hero-image-item:hover {
  transform: translateY(-5px);
}
.hero-img {
  width: 100%;
  max-height: 200px;
  height: auto;
  object-fit: scale-down;
  object-position: center;
  display: block;
}
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 1.5rem 1rem 1rem;
  text-align: center;
}
.image-overlay h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: white;
}
.image-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}



/* =============================== Badges Row =============================== */
.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  justify-content: center;
  align-items: center;
  margin: 0 0 2rem 0;
  padding: 1rem 0;
}
.service-badges .badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: #0b2045;
  padding: 0.7rem 1.2rem;
  border-radius: 25px;
  border: 2px solid #e1eaf5;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-badges .badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(10,102,194,0.1), transparent);
  transition: left 0.5s ease;
}
.service-badges .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-color: #0a66c2;
}
.service-badges .badge:hover::before {
  left: 100%;
}
.service-badges .badge i { 
  color: #0a66c2; 
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.service-badges .badge:hover i {
  transform: scale(1.1);
}

/* =============================== Managed IT (packages2 hero) =============================== */
.packages2 {
  position: relative;
  background: none;
  padding: 2.5rem 1rem;
}
section.packages2 { margin: 0; padding: 0; }

.packages-bg {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/packages-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 4rem 0;
  text-align: center;
  width: 100%;
}

.packages-bg .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.packages-bg h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.packages-bg .section-subline {
  color: #e2e8f0;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.packages2 .package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.package-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid #e6eaf0;
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0a66c2, #0073e6);
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: #0a66c2;
}
.package-card i { 
  font-size: 2rem; 
  color: #0a66c2; 
  margin-bottom: 1rem;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #eef4fb 0%, #dbeafe 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}
.package-card:hover i {
  transform: scale(1.1);
  background: linear-gradient(135deg, #0a66c2 0%, #0073e6 100%);
  color: white;
}
.package-card h3 { 
  margin: 0 0 1rem 0; 
  color: #002855; 
  font-size: 1.4rem;
  text-align: center;
  font-weight: 600;
}
.packages2 .price { 
  color: #0a66c2; 
  font-weight: 700; 
  margin: 0 0 1rem 0; 
  font-size: 1.2rem;
  text-align: center;
  background: linear-gradient(135deg, #eef4fb 0%, #dbeafe 100%);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
  width: 100%;
  text-align: center;
}
.package-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.5rem 0;
  flex: 1 1 auto;
}
.package-card ul li { 
  padding: 0.5rem 0; 
  border-bottom: 1px solid #eef2f6; 
  position: relative;
  padding-left: 1.5rem;
}
.package-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0a66c2;
  font-weight: bold;
}
.package-card ul li:last-child { border-bottom: none; }
.package-card .context {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 2px solid #eef2f6;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  margin: 1rem -2rem -2rem -2rem;
  padding: 1rem 2rem;
  border-radius: 0 0 16px 16px;
  flex-shrink: 0;
}
/* optional: hide CTAs on services cards
.package-card .btn { display: none; }
*/

/* =============================== On-Demand & Consulting =============================== */
.on-demand {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  text-align: center;
  padding: 3rem 1rem;
  position: relative;
}

.consulting {
  background: #ffffff;
  text-align: center;
  padding: 3rem 1rem;
  position: relative;
}

.on-demand::before,
.consulting::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

/* On-Demand section specific overrides */
.on-demand .section-divider {
  margin: 0.8rem auto 0.2rem auto;
}

.on-demand .consulting-card { 
  text-align: left; 
  display: flex;
  flex-direction: column;
  height: 100%;
}
.on-demand .consulting-card h3 { 
  color: #002855; 
  margin-bottom: 1rem; 
  font-size: 1.3rem;
  font-weight: 600;
}
.on-demand .consulting-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.on-demand .consulting-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  flex: 1;
}
.on-demand .consulting-card ul li { 
  padding: 0.4rem 0; 
  position: relative;
  padding-left: 1.5rem;
  color: #333;
}
.on-demand .consulting-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #0a66c2;
  font-weight: bold;
}

/* Consulting grid */
.consulting .consulting-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  margin-top: 1rem;
}
.consulting .consulting-card { 
  text-align: left; 
  display: flex;
  flex-direction: column;
  height: 100%;
}
.consulting .consulting-card h3 {
  color: #002855;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}
.consulting .consulting-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.consulting .consulting-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  flex: 1;
}
.consulting .consulting-card ul li { 
  padding: 0.4rem 0; 
  position: relative;
  padding-left: 1.5rem;
  color: #333;
}
.consulting .consulting-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0a66c2;
  font-weight: bold;
}

/* =============================== Add-ons =============================== */
.addons {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  text-align: center;
  padding: 3rem 1rem;
  position: relative;
}
.addons::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}
.addons .addon-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 1rem;
}
.addons .addon-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  height: auto;
  background: white;
  border: 1px solid #e6eaf0;
  padding: 2rem;
}
.addons .addon-card h3 { 
  color: #002855; 
  margin-bottom: 0.8rem; 
  font-size: 1.3rem;
  font-weight: 600;
}
.addons .addon-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.addons .addon-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  flex: none;
}
.addons .addon-card ul li { 
  padding: 0.4rem 0; 
  position: relative;
  padding-left: 1.5rem;
  color: #333;
}
.addons .addon-card i {
  font-size: 2rem;
  color: #0a66c2;
  background: linear-gradient(135deg, #eef4fb 0%, #dbeafe 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}
.addons .addon-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #0a66c2;
  font-weight: bold;
  font-size: 1.2rem;
}

@media (min-width: 1100px) {
  .addons .addon-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================== Stats (single, consistent) =============================== */
.stat-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e6eaf0;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0a66c2, #0073e6);
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.stat-card i {
  font-size: 2.5rem;
  color: #0a66c2;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #eef4fb 0%, #dbeafe 100%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}
.stat-card:hover i {
  transform: scale(1.1);
  background: linear-gradient(135deg, #0a66c2 0%, #0073e6 100%);
  color: white;
}
.stat-card h3 {
  font-size: 2.5rem;
  color: #002855;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.stat-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* =============================== Why IT Matters / Compliance note =============================== */
.why-it-matters { 
  padding: 2rem 1rem; 
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}
.why-it-matters::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}
.why-it-matters .section-title {
  color: #002855;
}
.why-it-matters .section-subline {
  color: #555;
}
.why-it-matters .stat-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e6eaf0;
}
.why-it-matters .stat-card h3 {
  color: #002855;
}
.why-it-matters .stat-card p {
  color: #555;
}
.compliance-note {
  max-width: 900px;
  margin: 2rem auto 0 auto;
  text-align: center;
  color: #0b2045;
  background: linear-gradient(135deg, #eef4fb 0%, #dbeafe 100%);
  border: 2px solid #d9e6f8;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.compliance-note:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.compliance-note i { 
  color: #0a66c2; 
  margin-right: 8px;
  font-size: 1.1rem;
}

/* =============================== Copy/typography utility =============================== */
.packages2 .package-card p.context,
.consulting .consulting-card p,
.on-demand .consulting-card p,
.addons .addon-card p {
  color: #333;
  line-height: 1.6;
}

/* =============================== Section Buttons =============================== */
.button-wrapper { 
  text-align: center; 
  margin-top: 3rem; 
  position: relative;
}
.button-wrapper::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #0a66c2, #0073e6);
  border-radius: 1px;
}

/* ===== On-Demand IT Support ===== */
.on-demand {
  background: #fff; /* section title/subline stay white */
  padding: 2rem 0 0;
}



.on-demand-bg {
  position: relative;
  background: #fff;
  padding: 0.5rem 0 4rem 0;
  overflow: hidden;
}

/* Bring container content above overlay */
.on-demand-bg .container {
  position: relative;
  z-index: 1;
}



.on-demand .section-title,
.on-demand .section-subline {
  color: #000; /* black titles on white */
  text-align: center;
}

.on-demand .consulting-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.on-demand .consulting-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

.on-demand .consulting-card:hover {
  transform: translateY(-5px);
}

/* =============================== Additional Visual Enhancements =============================== */

/* Section separators between all sections */
.section-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, #0a66c2, #e2e8f0, transparent);
  margin: 0;
  border: none;
  position: relative;
}
.section-separator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #0a66c2;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px #0a66c2;
}

/* Enhanced divider for consulting to additional services */
.enhanced-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, #e2e8f0, #0a66c2, #60a5fa, #0a66c2, #e2e8f0, transparent);
  margin: 2rem 0;
}
.enhanced-divider::before {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #0a66c2, #60a5fa);
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px #0a66c2, 0 0 20px rgba(10, 102, 194, 0.3);
}

/* Diagonal Separator */
.diagonal-separator {
  position: relative;
  height: 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  overflow: hidden;
}
.diagonal-separator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 0%, 
    transparent 30%, 
    rgba(10, 102, 194, 0.1) 40%, 
    rgba(10, 102, 194, 0.2) 50%, 
    rgba(10, 102, 194, 0.1) 60%, 
    transparent 70%, 
    transparent 100%);
  transform: skewY(-2deg);
}
.diagonal-separator::after {
  content: '⚡';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0a66c2, #0073e6);
  border-radius: 50%;
  box-shadow: 0 0 0 8px #fff, 0 0 0 12px rgba(10, 102, 194, 0.2), 0 0 30px rgba(10, 102, 194, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

/* Section dividers with more visual impact */
.section-long-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #e2e8f0, #0a66c2, #e2e8f0, transparent);
  margin: 0;
  border: none;
}

/* =============================== Visual Enhancement Suggestions =============================== */

/* Add subtle background patterns to sections */
.packages2 {
  position: relative;
}
.packages2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(10,102,194,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

/* Add visual elements to reduce white space */
.on-demand {
  position: relative;
}
.on-demand::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(10,102,194,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.4;
  pointer-events: none;
}


/* Add visual elements to cards */
.package-card::after {
  content: '';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #eef4fb 0%, #dbeafe 100%);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}

/* Quick stats for on-demand section */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 12px;
  border: 1px solid #e6eaf0;
}
.quick-stats .stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quick-stats .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a66c2;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.quick-stats .stat-label {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

/* Visual Break Section */
.visual-break {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 3rem 1rem;
  position: relative;
}
.visual-break::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}
.break-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.break-image-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.break-image-item:hover {
  transform: translateY(-5px);
}
.break-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.break-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
}
.break-overlay h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}
.break-overlay p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Technology Showcase Section */
.tech-showcase {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 3rem 1rem;
  position: relative;
}
.tech-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}
.tech-showcase h2 {
  color: #ffffff !important;
  font-size: 2.5rem;
  font-weight: 700;
}
.tech-showcase p {
  color: #ffffff !important;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}
.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.showcase-text h2 {
  color: #002855;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.showcase-text p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.tech-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.tech-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.tech-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  background: rgba(255, 255, 255, 0.15);
}
.tech-feature i {
  color: #60a5fa;
  font-size: 1.2rem;
}
.tech-feature span {
  color: #ffffff !important;
  font-weight: 500;
}

/* Alternative: Vendor Badge Style */
.tech-feature.vendor-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 1.2rem;
  flex-direction: column;
  text-align: center;
  gap: 0.8rem;
}
.tech-feature.vendor-badge i {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.8rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.tech-feature.vendor-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.showcase-image {
  text-align: center;
}
.showcase-img {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3), 0 4px 15px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}
.showcase-img:hover {
  transform: scale(1.02);
}

/* Trust Badge */
.trust-badge-container {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0;
  gap: 4rem;
}
.trust-badge-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}
.trust-badge-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}
.trust-badge {
  background: linear-gradient(135deg, #0a66c2 0%, #0073e6 100%);
  color: white;
  padding: 2rem 3rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 15px 40px rgba(10, 102, 194, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  max-width: 500px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.trust-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
.trust-badge:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 30px 80px rgba(10, 102, 194, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.trust-badge i {
  font-size: 3rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 1.2rem;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.trust-badge:hover i {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}
.trust-badge .badge-content {
  position: relative;
  z-index: 2;
}
.trust-badge .badge-content h3 {
  margin: 0 0 0.8rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.trust-badge .badge-content p {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.5;
  font-weight: 400;
}

/* Trust Points */
.trust-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1rem;
  flex: 1;
  max-width: 600px;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-size: 1rem;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.trust-point:hover {
  opacity: 1;
  transform: translateX(5px);
}

.trust-point i {
  color: #60a5fa;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.trust-point span {
  font-weight: 500;
}

/* Client Success Stories */
.client-success {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 3rem 1rem;
  position: relative;
}
.client-success::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}
.success-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.success-item {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 12px;
  border: 1px solid #e6eaf0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.success-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0a66c2, #0073e6);
}
.success-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.success-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a66c2;
  margin-bottom: 0.5rem;
}
.success-label {
  display: block;
  color: #555;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Trust Indicators Section */
.trust-indicators {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 3rem 1rem;
  position: relative;
}
.trust-indicators::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.trust-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0a66c2, #0073e6);
}
.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.trust-item i {
  font-size: 2rem;
  color: #0a66c2;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.9);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
  border: 2px solid #0a66c2;
}
.trust-item:hover i {
  transform: scale(1.1);
  background: linear-gradient(135deg, #0a66c2 0%, #0073e6 100%);
  color: white;
}
.trust-item h3 {
  color: #002855;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.trust-item p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Add floating elements to reduce white space */
.on-demand .consulting-card::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #0a66c2, #0073e6);
  border-radius: 50%;
  opacity: 0.2;
  pointer-events: none;
}

.consulting .consulting-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 15px;
  height: 15px;
  background: linear-gradient(135deg, #0a66c2, #0073e6);
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
}

.addons .addon-card::before {
  content: '';
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #0a66c2, #0073e6);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}

/* Optional: Add subtle icons to section backgrounds */
.consulting::before {
  content: '⚙️';
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  opacity: 0.1;
  pointer-events: none;
}

.addons::before {
  content: '🔧';
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 3rem;
  opacity: 0.1;
  pointer-events: none;
}

.why-it-matters::after {
  display: none;
}

/* Responsive improvements */
@media (max-width: 1024px) {
  .packages2 .package-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-intro h1 {
    font-size: 2rem;
  }
  
  /* Package grid mobile - make single column and full width */
  .packages2 .package-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 100%;
    margin: 0;
    padding: 0 1rem;
  }
  
  .package-card {
    padding: 1.5rem;
    margin: 0;
    width: 100%;
  }
  
  .package-card h3 {
    font-size: 1.3rem;
  }
  
  .package-card .price {
    font-size: 1.1rem;
  }
  
  .consulting-card,
  .addon-card,
  .stat-card {
    padding: 1.5rem;
  }
  .service-badges {
    gap: 0.5rem 0.8rem;
  }
  .service-badges .badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .consulting::before,
  .addons::before,
  .why-it-matters::after {
    display: none;
  }
  .diagonal-separator {
    height: 60px;
  }
  .diagonal-separator::after {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .quick-stats {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
  }
  .quick-stats .stat-number {
    font-size: 1.5rem;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .trust-item {
    padding: 1rem;
  }
  .trust-badge-container {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1rem;
  }
  .trust-badge {
    flex-direction: column;
    text-align: center;
    padding: 2rem 2.5rem;
    gap: 1.5rem;
    border-radius: 40px;
    max-width: 100%;
  }
  .trust-badge i {
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    padding: 1rem;
  }
  .trust-badge .badge-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .trust-badge .badge-content p {
    font-size: 1rem;
  }
  .trust-points {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .trust-point {
    font-size: 0.9rem;
  }
  .hero-image-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hero-img {
    height: 150px;
  }
  .break-image-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .break-img {
    height: 200px;
  }
  .showcase-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .tech-features {
    grid-template-columns: 1fr;
  }
  .showcase-img {
    height: 250px;
    object-fit: contain;
  }
}
