/* Consolidated Service Page Styles */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ===== BANNER STYLES ===== */
/* Banner area styling */
.page-banner-area {
  position: relative;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay styling with subtitle */
.page-banner-area .overlay.dark-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Header subtitle styling */
.overlay.dark-overlay .header-subtitle {
  color: white;
  font-size: 1.5rem;
  font-weight: 400;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.6;
}

/* Breadcrumb styling */
.breadcrumb {
  background-color: transparent;
  color: white;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #186aff;
}

.breadcrumb span {
  color: #186aff;
}

/* Stars animation container */
.bg-about-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* ===== MAIN CONTAINER STYLES ===== */
/* Main container styles */
.services-container {
  background: transparent;
  backdrop-filter: none;
  color: var(--kt-text-primary);
  flex-direction: column;
  border-radius: 0;
  margin: 0;
  min-height: auto;
  border: none;
  box-shadow: none;
}

.our-service-sass {
  padding: 60px 0;
  color: var(--kt-text-primary);
  background: transparent;
  contain: content;
}



/* Optimized main title for better LCP */
.our-service-sass .main-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  color: white;
  margin: 0 auto 40px;
  max-width: 800px;
  min-height: 2.4em;
  line-height: 1.2;
  margin-top: 40px;
}

/* ===== SERVICE CARDS GRID LAYOUT ===== */
/* Services grid layout */

/* ===== MODERN SERVICE BLOCK STYLING ===== */
/* Modern service block styling with glassmorphism */
.service-block {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  padding: 2rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-block:hover {
  transform: translateY(-6px); /* Lift on hover */
  /* Enhanced shadow on hover */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 
              0 8px 16px rgba(0, 0, 0, 0.05), 
              0 12px 24px rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.8); /* Slightly more opaque on hover */
}

/* Feature icon styling */
.service-block .feature-icon {
  margin-bottom: 1.5rem;
  background: #eef2ff; /* Light blue background */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.service-block:hover .feature-icon {
  transform: scale(1.1); /* Slightly enlarge icon on hover */
}

.service-block .feature-icon svg {
  width: 30px;
  height: 30px;
  stroke: #4f46e5; /* Indigo color to match blog cards */
}

/* Service content styling */
.service-block .service-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-block .service-content h5.title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--kt-text-primary); /* Match credential item h3 color */
  margin-bottom: 1rem;
  line-height: 1.4;
}

.service-block .service-content p {
  font-size: 0.95rem;
  color: var(--kt-text-secondary); /* Match credential item p color */
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Add metrics to service blocks like in blog cards */
.service-block .service-metrics {
  margin-top: auto; /* Push metrics to bottom */
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-block .service-metric {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1.25rem;
  background: #f0f2ff;
  border-radius: 50px;
  color: #4f46e5;
  font-weight: 500;
  font-size: 0.9rem;
}

/* ===== PARTNERS SECTION WITH ROLLING STRIP ===== */
.section-partners {
  padding: 30px 0;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #f7f9fc, #ffffff);
  overflow: hidden;
}

.marquee {
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
  gap: 2rem;
}

.marquee--hover-pause:hover .marquee__content {
  animation-play-state: paused;
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  gap: 1rem;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 2.5rem));
  }
}

.marquee__content li {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
}

.marquee__content li {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  background: #eef2ff;
  width: 100px;
  height: 100px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
  margin: 0 15px;
}

.marquee__content li:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 8px 16px rgba(24, 106, 255, 0.15);
}

.marquee__content img {
  max-width: 70px;
  max-height: 70px;
  transition: transform 0.3s ease;
  object-fit: contain;
}

/* ===== ENHANCED CTA SECTION ===== */
/* Container for the CTA section */
.cta-section-container {
  padding: 60px 40px;
  margin: 80px 6rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glass card styling */
.cta-glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  width: 100%;
  max-width: 900px;
  position: relative;
  overflow: hidden;
}

/* Add subtle top border with gradient */
.cta-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #186aff, #1254cc);
  z-index: 2;
}

/* Content container */
.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Icon styling */
.cta-icon {
  background: #eef2ff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.cta-icon svg {
  width: 35px;
  height: 35px;
  stroke: #4f46e5;
}

/* Heading styling */
.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--kt-text-primary);
  margin-bottom: 1rem;
}

/* Paragraph styling */
.cta-content p {
  color: var(--kt-text-secondary);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Metrics styling */
.cta-metrics {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-metric {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background: #eef2ff;
  border-radius: 50px;
  color: #4f46e5;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Button styling */
.cta-button {
  background: linear-gradient(to right, #186aff, #1254cc);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(24, 106, 255, 0.2);
  display: inline-block;
  text-decoration: none;
}

/* Button hover effect */
.cta-button:hover {
  background: linear-gradient(to right, #1254cc, #0a4bbd);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(24, 106, 255, 0.3);
}

/* Button active effect */
.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(24, 106, 255, 0.2);
}

/* Background decoration */
.cta-glass-card::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(24, 106, 255, 0.05) 0%, rgba(24, 106, 255, 0) 70%);
  border-radius: 50%;
  bottom: -150px;
  right: -100px;
  z-index: 1;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1024px) {
  .services-container {
    padding: 4rem 3rem;
    margin: 0 3rem;
  }
  
  .our-service-sass .main-title {
    font-size: 2.2rem;
  }
  
  .section-partners {
    padding: 25px 0;
    margin: 15px 0;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .service-block {
    min-height: 250px;
  }
  
  .overlay.dark-overlay .header-subtitle {
    font-size: 1.2rem;
  }
  
  .page-banner-area {
    height: 250px;
  }
  
  .services-container {
    padding: 3rem 1rem;
    margin: 0 1rem;
    border-radius: 2rem;
    min-height: auto;
  }
  
  .cta-section-container {
    padding: 40px 20px;
    margin: 60px 1rem 0;
  }
  
  .section-partners {
    padding: 20px 0;
    margin: 10px 0;
  }
  
  .marquee__content li {
    width: 90px;
    height: 90px;
    margin: 0 10px;
  }
  
  .marquee__content img {
    max-width: 60px;
    max-height: 60px;
  }
  
  .cta-glass-card {
    padding: 2rem;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-metrics {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cta-button {
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .overlay.dark-overlay .header-subtitle {
    font-size: 1rem;
  }
  
  .page-banner-area {
    height: 200px;
  }
  
  .services-container {
    padding: 2rem 0.75rem;
    margin: 0 0.5rem;
  }
  
  .our-service-sass .main-title {
    font-size: 1.5rem;
  }
  
  .cta-section-container {
    padding: 30px 15px;
    margin: 40px 0.5rem 0;
  }
  
  .section-partners {
    padding: 15px 0;
    margin: 10px 0;
  }
  
  .marquee__content li {
    width: 80px;
    height: 80px;
    margin: 0 8px;
  }
  
  .marquee__content img {
    max-width: 50px;
    max-height: 50px;
  }
  
  .marquee__content {
    gap: 1.5rem;
  }
  
  .cta-glass-card {
    padding: 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 1.5rem;
  }
  
  .cta-icon {
    width: 60px;
    height: 60px;
  }
  
  .cta-icon svg {
    width: 30px;
    height: 30px;
  }
}
/* service-responsive.css - Mobile and tablet optimizations for service page */

/* Base responsive settings */
:root {
  --primary-color: #186aff;
  --secondary-color: #4f46e5;
  --background-color: #f7f9fc;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-600: #6b7280;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --transition-speed: 0.3s;
}



/* Header and Banner responsiveness */
@media (max-width: 992px) {
  .page-banner-area {
    height: 300px;
  }
  
  .header-subtitle {
    padding: 0 20px;
    font-size: 1.1rem;
  }
  
  .breadcrumb {
    left: 15px;
    top: 15px;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .page-banner-area {
    height: 250px;
  }
  
  .header-subtitle {
    font-size: 1rem;
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .page-banner-area {
    height: 200px;
  }
  
  .header-subtitle {
    font-size: 0.9rem;
    padding: 0 15px;
  }
}

/* Marquee responsiveness */
@media (max-width: 768px) {
  .marquee__content li {
    margin-right: 20px;
  }
  
  .marquee__content li img {
    height: 30px;
  }
}

@media (max-width: 576px) {
  .marquee__content li {
    margin-right: 15px;
  }
  
  .marquee__content li img {
    height: 25px;
  }
}

/* Section Title responsiveness */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-title::after {
    width: 70px;
    bottom: -8px;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin: 1.5rem auto 3rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-title::after {
    width: 60px;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
    margin: 1.25rem auto 2.5rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-title::after {
    width: 50px;
    height: 2px;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    margin: 1rem auto 2rem;
  }
}

/* Services Grid responsiveness */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 15px;
  }
  
  .service-block {
    padding: 1.75rem;
  }
  
  .feature-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 1.25rem;
  }
  
  .feature-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .service-block .title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 10px;
  }
  
  .service-block {
    padding: 1.5rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .feature-icon svg {
    width: 25px;
    height: 25px;
  }
  
  .service-block .title {
    font-size: 1.2rem;
  }
  
  .service-block p {
    font-size: 0.9rem;
  }
  
  .service-metrics {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .service-metric {
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .service-block {
    padding: 1.25rem;
  }
  
  .feature-icon {
    width: 45px;
    height: 45px;
  }
  
  .feature-icon svg {
    width: 22px;
    height: 22px;
  }
  
  .service-block .title {
    font-size: 1.1rem;
  }
  
  .service-block p {
    font-size: 0.85rem;
  }
}

/* Platform Section responsiveness */
@media (max-width: 992px) {
  .platform-section {
    padding: 4rem 0;
  }
  
  .platform-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 0 15px;
  }
  
  .platform-image {
    padding: 1.75rem;
  }
  
  .platform-heading {
    font-size: 1.5rem;
  }
  
  .platform-content {
    padding: 1.75rem;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 3rem 0;
  }
  
  .platform-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .platform-image {
    padding: 1.5rem;
  }
  
  .platform-heading {
    font-size: 1.4rem;
  }
  
  .platform-content {
    padding: 1.5rem;
  }
  
  .architecture-title, .platform-features-title {
    font-size: 0.95rem;
  }
  
  .architecture-item, .feature-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .platform-section {
    padding: 2.5rem 0;
  }
  
  .platform-image {
    padding: 1.25rem;
  }
  
  .platform-heading {
    font-size: 1.3rem;
  }
  
  .platform-content {
    padding: 1.25rem;
  }
  
  .architecture-title, .platform-features-title {
    font-size: 0.9rem;
  }
  
  .architecture-item, .feature-item {
    font-size: 0.85rem;
  }
}

/* Enterprise Coverage responsiveness */
@media (max-width: 768px) {
  .enterprise-coverage {
    max-width: 450px;
    padding: 1.5rem;
    margin: 3rem auto 0;
  }
  
  .globe-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
  }
  
  .globe-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .enterprise-coverage h3 {
    font-size: 1.3rem;
  }
  
  .enterprise-coverage p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .enterprise-coverage {
    max-width: 100%;
    padding: 1.25rem;
    margin: 2.5rem auto 0;
  }
  
  .globe-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .globe-icon svg {
    width: 25px;
    height: 25px;
  }
  
  .enterprise-coverage h3 {
    font-size: 1.2rem;
  }
  
  .enterprise-coverage p {
    font-size: 0.9rem;
  }
}

/* Additional Services responsiveness */
@media (max-width: 992px) {
  .additional-services {
    padding: 4rem 0;
  }
  
  .services-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .service-card {
    padding: 1.75rem;
  }
  
  .service-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 1.25rem;
  }
  
  .service-icon i {
    font-size: 1.4rem;
  }
  
  .service-card .title {
    font-size: 1.1rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .additional-services {
    padding: 3rem 0;
  }
  
  .services-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .service-icon i {
    font-size: 1.3rem;
  }
  
  .service-card .title {
    font-size: 1rem;
  }
  
  .service-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .additional-services {
    padding: 2.5rem 0;
  }
  
  .services-cards-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .service-card {
    padding: 1.25rem;
  }
  
  .service-icon {
    width: 45px;
    height: 45px;
  }
  
  .service-icon i {
    font-size: 1.2rem;
  }
}

/* CTA Section responsiveness */
@media (max-width: 992px) {
  .cta-section-container {
    padding: 4rem 2rem;
  }
  
  .cta-glass-card {
    max-width: 700px;
    padding: 3rem;
  }
  
  .cta-icon {
    width: 65px;
    height: 65px;
  }
  
  .cta-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-content p {
    font-size: 1.05rem;
  }
  
  .cta-button {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .cta-section-container {
    padding: 3rem 1.5rem;
  }
  
  .cta-glass-card {
    max-width: 600px;
    padding: 2.5rem 2rem;
  }
  
  .cta-icon {
    width: 60px;
    height: 60px;
  }
  
  .cta-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-metrics {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cta-button {
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .cta-section-container {
    padding: 2.5rem 1rem;
  }
  
  .cta-glass-card {
    padding: 2rem 1.5rem;
  }
  
  .cta-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.25rem;
  }
  
  .cta-icon svg {
    width: 25px;
    height: 25px;
  }
  
  .cta-content h2 {
    font-size: 1.5rem;
  }
  
  .cta-content p {
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
  }
}

/* Additional CSS for touch interactions on mobile */
@media (max-width: 992px) {
  .service-block, .platform-card, .service-card, .cta-button, .enterprise-coverage {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .touch-active {
    transform: scale(0.98) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
    opacity: 0.9;
  }
  
  /* Prevent hover effects which can interfere with touch */
  .service-block:hover, .platform-card:hover, .service-card:hover, .enterprise-coverage:hover {
    transform: none;
  }
  
  /* Only apply hover effects on non-touch devices */
  @media (hover: hover) {
    .service-block:hover, .platform-card:hover, .service-card:hover, .enterprise-coverage:hover {
      transform: translateY(-10px);
    }
  }
}

/* Fix for Safari issues */
@supports (-webkit-touch-callout: none) {
  .services-grid, .platform-grid, .services-cards-grid {
    display: flex;
    flex-wrap: wrap;
  }
  
  .service-block, .platform-card, .service-card {
    flex: 1 1 300px;
    margin: 10px;
  }
  
  @media (max-width: 768px) {
    .service-block, .platform-card, .service-card {
      flex: 1 1 220px;
    }
  }
  
  @media (max-width: 576px) {
    .service-block, .platform-card, .service-card {
      flex: 1 1 100%;
    }
  }
}

/* Glassmorphism effect enhancement for CTA section */
.cta-section-container {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.cta-glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
  padding: 3.5rem;
  text-align: center;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-icon {
  width: 70px;
  height: 70px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #4f46e5;
}

.cta-icon svg {
  width: 35px;
  height: 35px;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--kt-text-secondary);
  margin-bottom: 1.5rem;
}

.cta-metrics {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.cta-metric {
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.9rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 30px;
  background: linear-gradient(to right, #186aff, #4f46e5);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
  color: white;
}

/* Service metrics responsive layout */
.service-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.service-metric {
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

@media (max-width: 576px) {
  .service-metrics {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .service-metric {
    font-size: 0.75rem;
  }
}
/* Enhanced Styles for Service Page */
.page-header {
  background: linear-gradient(to right, #186aff, #4f46e5);
  color: white;
  padding: 3rem 0;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: white;
  text-decoration: underline;
}

.breadcrumb span {
  color: white;
}

.header-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.header-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #007bff;
  position: relative;
  padding-top: 40px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #186aff, #4f46e5);
  border-radius: 3px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--kt-text-secondary);
  max-width: 700px;
  margin: 1.5rem auto 3.5rem;
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 350px);
  gap: 25px;
  justify-content: center;
  padding: 20px;
}



.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  color: #4f46e5;
  transition: all 0.3s ease;
}

.service-block:hover .feature-icon {
  background: rgba(79, 70, 229, 0.2);
  transform: rotate(10deg);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}

.service-block:hover .feature-icon svg {
  transform: scale(1.1);
}

.service-content {
  flex: 1;
}

.service-block .title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--kt-text-primary);
}

.service-block p {
  font-size: 0.95rem;
  color: var(--kt-text-secondary);
  line-height: 1.6;
}

/* Platform Section */
.platform-section {
  padding: 5rem 0;
  background: transparent;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.platform-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(79, 70, 229, 0.2);
}

.platform-image {
  padding: 2rem;
  background: linear-gradient(45deg, rgba(79, 70, 229, 0.1), rgba(24, 106, 255, 0.1));
  text-align: center;
}

/* Custom Platform Header Colors */
.platform-card.windows .platform-image {
  background: linear-gradient(45deg, #0078d4, #4a90e2);
}

.platform-card.macos .platform-image {
  background: linear-gradient(45deg, #d3d3d3, #f5f5f5);
}

.platform-card.linux .platform-image {
  background: linear-gradient(45deg, #f09819, #ff5858);
}

.platform-card.windows .platform-heading,
.platform-card.linux .platform-heading {
  color: white;
}

.platform-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--kt-text-primary);
  margin: 0;
}

.platform-content {
  padding: 2rem;
}

.architecture-section, .platform-features {
  margin-bottom: 1.5rem;
}

.architecture-title, .platform-features-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--kt-text-primary);
  margin-bottom: 1rem;
}

.architecture-title svg, .platform-features-title svg {
  width: 18px;
  height: 18px;
  color: #4f46e5;
}

.architecture-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  color: var(--kt-text-secondary);
  font-size: 0.95rem;
}

.architecture-item:last-child {
  border-bottom: none;
}

.check {
  color: #10b981;
  font-weight: 600;
}

.feature-item {
  padding: 0.5rem 0;
  color: var(--kt-text-secondary);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}

.feature-item:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 600;
}

.enterprise-coverage {
  text-align: center;
  max-width: 700px;
  margin: 4rem auto 0;
  padding: 2rem;
  background: linear-gradient(45deg, rgba(114, 57, 234, 0.1), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.enterprise-coverage:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(79, 70, 229, 0.2);
}

.globe-icon {
  width: 70px;
  height: 70px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #4f46e5;
  transition: all 0.3s ease;
}

.enterprise-coverage:hover .globe-icon {
  background: rgba(79, 70, 229, 0.2);
  transform: rotate(10deg);
}

.globe-icon svg {
  width: 35px;
  height: 35px;
  transition: all 0.3s ease;
}

.enterprise-coverage:hover .globe-icon svg {
  transform: scale(1.1);
}

.enterprise-coverage h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.enterprise-coverage p {
  font-size: 1rem;
  color: var(--kt-text-secondary);
  line-height: 1.6;
}

/* Additional Services */
.additional-services {
  padding: 5rem 0;
  background: transparent;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(79, 70, 229, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #4f46e5;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(79, 70, 229, 0.2);
  transform: rotate(10deg);
}

.service-icon i {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
  transform: scale(1.2);
}

.service-card .title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--kt-text-secondary);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(45deg, #eff6ff, #dbeafe);
}

.cta-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--kt-text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 3rem;
  background: linear-gradient(to right, #186aff, #4f46e5);
  color: white;
  font-weight: 500;
  font-size: 1.1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  color: white;
}

/* Partners Section Enhancement */
/* Marquee styles moved to service-page.css */

/* Animations */
.animate-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-element.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .platform-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 992px) {
  .header-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .platform-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 2.5rem 0;
  }
  
  .header-title {
    font-size: 1.75rem;
  }
  
  .header-subtitle {
    font-size: 1rem;
  }
  
  .service-block {
    padding: 1.5rem;
  }
  
  .service-block .title {
    font-size: 1.25rem;
  }
  
  .platform-card {
    padding: 1.5rem;
  }
  
  .platform-heading {
    font-size: 1.5rem;
  }
  
  .enterprise-coverage {
    padding: 1.5rem;
  }
  
  .cta-section h2 {
    font-size: 1.75rem;
  }
  
  .cta-section p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .services-grid, .services-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .header-title {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .service-block, .service-card {
    padding: 1.25rem;
  }
  
  /* Custom padding for stars section on service page */
  
  .feature-icon, .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .feature-icon svg, .service-icon i {
    width: 25px;
    height: 25px;
    font-size: 1.25rem;
  }
  
  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}/* Section Star - Adjusted positioning to remove gap while preventing menu overlap */
.section-star {
  margin-top: 100px;
  position: relative;
  z-index: 1;
}