/* ====================
   BASE STYLES & VARIABLES
   ==================== */
:root {
  /* Color Palette */
  --primary-color: #0c84c0;
  --primary-dark: #0c5e7a;
  --primary-light: #e1f0f7;
  --secondary-color: #10b981;
  --secondary-dark: #0d9c6e;
  --accent-color: #f59e0b;
  --dark-color: #0f172a;
  --darker-color: #0f172a;
  --light-color: #f8fafc;
  --lighter-color: #ffffff;
  --gray-color: #64748b;
  --light-gray: #e2e8f0;
  --border-color: #cbd5e1;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  --mobile-breakpoint: 576px;
  --tablet-breakpoint: 768px;
  --desktop-breakpoint: 992px;
  
  /* Typography */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  /* Effects */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--lighter-color);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-md);
  color: var(--gray-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-subtitle {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: var(--text-base);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--lighter-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  border-radius: 18px;
  background-color: white;
  border: 1px solid #0c85c1;
  padding: 10px 0px 0 0;
  font-size: 16px;
  height: 45px;
  width: 150px;
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}


.btn-icon {
  margin-right: var(--space-xs);
}

@media (max-width: 768px) {
  .btn-primary2 {
    top: auto;
    right: 16px;
    bottom: 90px;

    transform: none;
    width: auto;
    max-width: calc(100vw - 32px);
    padding: 12px 18px;

    border-radius: 999px;
    white-space: nowrap;
    font-size: 0.95rem;
  }
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  padding: 150px 0;
  background: linear-gradient(135deg, #d9f5ff, #62cff4);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero h1 span {
  color: var(--primary-color);
  display: inline-block;
}

.hero .subtitle {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xl);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);

}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 500;
}

.feature-item i {
  color: white;
  font-size: var(--text-lg);
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.hero-image {
  flex: 1;
  position: relative;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ====================
   SERVICES SECTION
   ==================== */
.services-section {
  padding: var(--space-3xl) 0;
  background-color: var(--light-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.service-card {
  background: var(--lighter-color);
  border-radius: var(--rounded-md);
  padding: var(--space-xl);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);  
  position: relative;
  border: 1px solid var(--border-color);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.service-card.highlighted {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

.service-icon {
  font-size: var(--text-3xl);
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.service-icon i {
  transition: var(--transition);
}

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

.service-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  color: var(--darker-color);
}

.service-description {
  color: var(--gray-color);
  margin-bottom: var(--space-lg);
  font-size: var(--text-base);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition-fast);
}

.service-link i {
  transition: var(--transition-fast);
}

.service-link:hover {
  color: var(--primary-dark);
}

.service-link:hover i {
  transform: translateX(3px);
}



.section-cta {
  text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
  }
  
  .service-card {
    padding: var(--space-lg);
  }
  

}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ERP Comparison Section */
.erp-section {
  padding: var(--space-3xl) 0;
  background-color: var(--light-color);
}

.erp-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: var(--space-md);
}

.erp-tab {
  padding: var(--space-sm) var(--space-lg);
  background-color: transparent;
  border: none;
  border-radius: var(--rounded);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gray-color);
}

.erp-tab i {
  font-size: var(--text-lg);
}

.erp-tab:hover {
  color: var(--primary-color);
  background-color: var(--primary-light);
}

.erp-tab.active {
  color: var(--primary-color);
  background-color: var(--primary-light);
  position: relative;
}

.erp-tab.active::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--primary-light);
}

.erp-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.erp-content.active {
  display: block;
}

.erp-details {
  display: flex;
  gap: var(--space-2xl);
  background-color: var(--lighter-color);
  border-radius: var(--rounded-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow);
}

.erp-logo {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  border: 1px solid var(--border-color);
  border-radius: var(--rounded-md);
  background-color: var(--lighter-color);
}

.erp-info {
  flex: 1;
}

.erp-info h3 {
  font-size: var(--text-2xl);
  color: var(--darker-color);
  margin-bottom: var(--space-md);
}

.erp-description {
  color: var(--gray-color);
  margin-bottom: var(--space-lg);
  font-size: var(--text-lg);
}

.erp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.feature i {
  color: var(--secondary-color);
  font-size: var(--text-lg);
  margin-top: 3px;
}

.feature span {
  color: var(--dark-color);
}

.erp-cta {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.erp-price {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: var(--text-sm);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .erp-details {
    flex-direction: column;
    gap: var(--space-xl);
  }
  
  .erp-logo {
    flex: 0 0 auto;
    max-width: 180px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .erp-tabs {
    gap: var(--space-xs);
  }
  
  .erp-tab {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-sm);
  }
  
  .erp-features {
    grid-template-columns: 1fr;
  }
  
  .erp-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
}

@media (max-width: 576px) {
  .erp-details {
    padding: var(--space-lg);
  }
  
  .erp-tab i {
    display: none;
  }
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* AI Solutions Section */
.ai-section {
  padding: var(--space-3xl) 0;
  background-color: var(--lighter-color);
  position: relative;
  overflow: hidden;
}

.ai-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.ai-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  padding: 32px;

  display: flex;
  flex-direction: column;
  position: relative;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-card.highlighted {
  border-color: #4caf50;
}

.ai-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.ai-card.highlighted:hover {
  transform: translateY(-5px);
}
.ai-card-header {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.ai-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 50%;
  padding: var(--space-sm);
}

.ai-card h3 {
  font-size: var(--text-xl);
  color: var(--darker-color);
  margin-bottom: var(--space-sm);
}
.ai-card-description {
  color: var(--gray-color);
  margin-bottom: var(--space-lg);
}

.ai-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 64px; /* 🔥 PERMANENT reserved space */
}

.ai-benefits li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.ai-benefits i {
  color: var(--secondary-color);
  font-size: var(--text-lg);
  margin-top: 3px;
}

.ai-card-footer {
  position: absolute;
  left: 32px;
  right: 32px;

  bottom: 56px; /* 🔥 WAS 32px — creates space */

  opacity: 1;
  transform: translateY(12px);
  pointer-events: none;

  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Show button on hover */

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}
.highlight-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 36px;
  width: 100%;
  background: linear-gradient(135deg, #62cff4, #4caf50);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 0 0 8px 8px;
}

/* Stats Section */
.ai-stats-container {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: var(--rounded-lg);
  padding: var(--space-2xl);
  margin-bottom: var(--space-3xl);
  color: white;
}

.ai-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  color: white;

}

.stat-item {
  text-align: center;
  padding: var(--space-md);
  color: white;

}

.stat-number {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: white;
}

.stat-label {
  font-size: var(--text-sm);
  color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .ai-solutions-grid {
    gap: var(--space-lg);
  }
  
  .ai-card {
    padding: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .ai-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    padding: var(--space-md) 0;
  }
}

@media (max-width: 576px) {
  .ai-solutions-grid {
    grid-template-columns: 1fr;
  }
}

/* Animation for Stats Counter */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.stat-number.animated {
  animation: countUp 0.5s ease forwards;
}

.why-choose-us {
  padding: 80px 0;
  background-color: #f8fafc;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.section-description {
  color: #6b7280;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.advantage-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  padding: 32px;

  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.advantage-card.highlighted {
  border-color: #3699da;

}

.advantage-card.highlighted:hover {
  transform: translateY(-15px);
}

.advantage-icon {
  text-align: center;
  margin-bottom: 24px;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e0f2fe;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.3s ease;
}

.advantage-card:hover .icon-wrapper {
  background: #2563eb;
  color: #ffffff;
  transform: scale(1.1);
}

.advantage-content {
  flex-grow: 1;
  text-align: center;
}

.advantage-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.advantage-content p {
  color: #6b7280;
}


.featured-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 32px;
  width: 100%;
  background: linear-gradient(135deg, #62cff4, #2c67f2);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 12px 12px;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition-fast);
}

.btn-text:hover {
  color: var(--primary-dark);
  gap: var(--space-sm);
}

.btn-text i {
  transition: var(--transition-fast);
}

.btn-text:hover i {
  transform: translateX(3px);
}
/* Responsive Styles */
@media (max-width: 992px) {
  .advantages-grid {
    gap: var(--space-md);
  }
  
  .advantage-card {
    padding: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-badge {
    padding: var(--space-xs) var(--space-lg);
    width: 100%;
  }
}

@media (max-width: 576px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-badge {
    width: 100%;
    font-size: 10px;
  }
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
  background-size: cover;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.cta-content p{
  color: white;
}
.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-lg);
}

.btn-primary {
  background-color: #4CAF50;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 20px;
}

.btn-primary:hover {
  background-color: #3e8e41;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary i {
  margin-right: 8px;
}
.btn-secondary1 {
  width: 100%;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 20px;
  color: white;

}

.btn-secondary1:hover {

  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Cards */
.card {
  background-color: var(--lighter-color);
  border-radius: 0.5rem;
  padding: var(--space-xl);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.card.highlighted {
  border: 2px solid var(--primary-color);
  position: relative;
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(12, 132, 192, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--primary-color);
  font-size: var(--text-2xl);
}

.card-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--primary-color);
  font-weight: 500;
  margin-top: var(--space-lg);
}

.card-link i {
  transition: var(--transition-fast);
}

.card-link:hover i {
  transform: translateX(3px);
}



/* Grid Layouts */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.tab {
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--lighter-color);
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.tab:hover {
  background-color: var(--light-gray);
}

.tab.active {
  background-color: var(--primary-color);
  color: var(--lighter-color);
  border-color: var(--primary-color);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin: var(--space-2xl) 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

.stat-label {
  color: var(--gray-color);
  font-size: var(--text-sm);
  max-width: 150px;
  margin: 0 auto;
}

/* Testimonials */
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial.active {
  display: block;
}

.testimonial-content {
  background-color: var(--lighter-color);
  border-radius: 0.5rem;
  padding: var(--space-xl);
  box-shadow: var(--shadow);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  color: var(--light-gray);
  font-size: var(--text-4xl);
  z-index: 0;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--dark-color);
  margin-bottom: var(--space-lg);
}

.client-info {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

.client-name {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.client-title {
  color: var(--gray-color);
  font-size: var(--text-sm);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--light-gray);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background-color: var(--primary-color);
}

/* Forms */


.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--dark-color);
}

.form-control {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  font-family: inherit;
  font-size: var(--text-base);
  transition: var(--transition);
  background-color: var(--lighter-color);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(12, 132, 192, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* FOOTER BASE */
.footer {
  background: linear-gradient(180deg, #0b1628 0%, #0a1222 100%);
  color: #cfd6e4;
  padding: 70px 0 25px;
  font-size: 14px;
}

/* CONTAINER */
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 50px;
}

/* LOGO + ABOUT */
.footer-about {
  margin-top: 18px;
  line-height: 1.6;
  color: #aeb7c6;
}

/* HEADINGS */
.footer h3 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* LISTS */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #8fa3c8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer ul li a:hover {
  color: #4da3ff;
}

/* NEWSLETTER */
.newsletter {
  margin-top: 25px;
}

.newsletter-form {
  display: flex;
  margin-top: 10px;
  margin-right: 10px;
}
.footer-email {
  flex: 1;
  padding: 8px 10px;
  border-radius:0;
  border: none;
  outline: none;
  font-size: 15px;
  height: 30px;
}

.footer-button {
  background: #ffffff;
  border: none;
  padding: 0 12px;
  cursor: pointer;
  border-radius: 0;
  height: 30px;
}

.footer-button i {
  color: #0b1628;
}
.footer img{
  border-radius: 15px;
}
/* SOCIAL ICONS */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  width: 34px;
  height: 34px;
  background: #007bff;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: white;
}

/* DIVIDER */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #8fa3c8;
}

/* BOTTOM LINKS */
.footer-links a {
  color: #8fa3c8;
  margin-left: 15px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-links a {
    margin-left: 0;
    margin-right: 10px;
  }
}
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--lighter-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ====================
   SPECIAL COMPONENTS
   ==================== */

/* Error States */
.error-message {
  color: #e53e3e;
  font-size: var(--text-sm);
  margin-top: var(--space-xs);
  display: block;
}

.has-error .form-control {
  border-color: #e53e3e;
}

/* Loading States */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--lighter-color);
  animation: spin 1s ease-in-out infinite;
  margin-right: var(--space-xs);
}

.btn.loading {
  position: relative;
  pointer-events: none;
}

.btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--lighter-color);
  animation: spin 1s ease-in-out infinite;
}

/* Success Message */
.success-message {
  color: #0c84c0;
  background-color: #f0fff4;
  padding: var(--space-md);
  border-radius: 0.375rem;
  margin-top: var(--space-md);
  display: none;
  align-items: center;
  gap: var(--space-sm);
}

.success-message i {
  font-size: var(--text-xl);
}

/* ====================
   RESPONSIVE STYLES
   ==================== */

@media (max-width: 1024px) {
  .hero h1 {
    font-size: var(--text-4xl);
  }
  
  .grid-cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {

  .hero-content {
    flex-direction: column;
  }
  

  .hero-cta {
    justify-content: center;
  }
  
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 8rem 0 3rem;
  }
  
  .hero h1 {
    font-size: var(--text-3xl);
  }
  
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: clamp(1.2, 1.1, 1.3);
}
/* ====================
   ANIMATIONS
   ==================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ====================
   UTILITY CLASSES
   ==================== */
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }
.mt-6 { margin-top: var(--space-2xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }
.mb-6 { margin-bottom: var(--space-2xl); }

.p-1 { padding: var(--space-xs); }
.p-2 { padding: var(--space-sm); }
.p-3 { padding: var(--space-md); }
.p-4 { padding: var(--space-lg); }
.p-5 { padding: var(--space-xl); }
.p-6 { padding: var(--space-2xl); }

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-light { background-color: var(--light-color); }
.bg-dark { background-color: var(--dark-color); }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-light { color: var(--light-color); }
.text-dark { color: var(--dark-color); }
.text-white { color: var(--lighter-color); }

.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-none { box-shadow: none; }

/* Add to your CSS */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #0c84c0(76, 175, 80, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

/* Add these accessibility-focused styles */
:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Better mobile navigation */
.nav-links {
  @media (max-width: 768px) {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--lighter-color);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    
    &.active {
      transform: translateX(0);
    }
  }
}

/* School Consultancy Specific Styles */
.school-hero {
  background: linear-gradient(135deg, #007c91 0%, #004d60 100%);
}

.school-consultancy-container {
  padding: 40px 0;
}

.service-tabs {
  display: flex;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.service-tab {
  padding: 12px 20px;
  background: #f0f0f0;
  border: none;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-tab.active {
  background: #007c91;
  color: white;
}

.service-tab-content {
  display: none;
}

.service-tab-content.active {
  display: block;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.ai-tag {
  top: 10px;
  right: 10px;
  background: #4CAF50;
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: bold;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .service-card-grid, .compliance-grid {
    grid-template-columns: 1fr;
  }
}
/* Notifications */
.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 25px;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(61, 50, 50, 0.2);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notification.show {
    opacity: 1;
}

.notification.success {
    background-color: #28a745;
}

.notification.error {
    background-color: #dc3545;
}

.notification.info {
    background-color: #17a2b8;
}

.notification.warning {
    background-color: #ffc107;
    color: #333;
}

.social-icons a {
  margin: 0 10px;
  font-size: 24px;
  color: #333;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #0bbfc4; /* Your teal brand color */
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #1a1a1a;
  color: #fff;
  padding: 15px 20px;
  font-size: 14px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-banner-content {
  max-width: 960px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.cookie-banner-content p {
  margin: 0;
  padding-right: 10px;
  line-height: 1.4;
  flex: 1;
}

.cookie-banner-content a {
  color: #0de1f9;
  text-decoration: underline;
}

.cookie-banner-content button {
  background: #00c48c;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner-content button:hover {
  background: #00a173;
}