/* Landing Page Styles */
:root {
  --primary-blue: #34407F;
  --primary-blue-dark: #5B65DD;
  --secondary-blue: #E7F2FF;
  --accent-orange: #E21C2A;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --bg-light: #FAF9F6;
  --bg-white: #ffffff;
  --border-light: #e5e7eb;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cal Sans', sans-serif;
    
}

.edu-blue{
  background-color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
  padding-top: 15px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  margin-bottom: 10px !important;
}

.hero-form .form-control {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hero-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.btn-primary-custom {
  background: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  color: white;
  padding: 12px 32px;

  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: var(--primary-blue-dark);
  border-color: var(--primary-blue-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Gartner Strip */
.gartner-strip {
  background: linear-gradient(90deg, var(--accent-orange) 0%, #ea580c 100%);
  color: white;
  padding: 16px 0;
  text-align: center;
  
  font-size: 18px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.gartner-strip i {
  margin-right: 12px;
  font-size: 20px;
}

/* Client Carousel */
.client-carousel {
  background: #fff;
  padding: 4rem 0;
}

.certificates-section{
  padding: 4rem 0;
}

.client-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  animation: scroll-logos 10s linear infinite;
  flex-wrap: nowrap;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo {
  flex-shrink: 0;
  width: auto;
  height: 150px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  padding: 10px;
}

.client-logo:hover {
  transform: translateY(-4px);
}

.client-logo span {
  font-size: 14px;
  text-align: center;
}

/* Services Cards */
.services-section {
  padding: 4rem 0;
  background: white;
}

.service-card {
  border: none;
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  margin-bottom: 24px;
}

/* Regional Benefits */
.regional-benefits {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(8px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 20px;
  flex-shrink: 0;
}

/* Outcomes Section */
.outcomes-section {
  background: var(--primary-blue);
  color: white;
  padding: 4rem 0;
}

.outcome-stat {
  text-align: center;
  /*padding: 30px;*/
}

.outcome-number {
  font-size: 48px;
  font-weight: bold !important;
  color: #e7f2ff;
  display: block;
  margin-bottom: 12px;
}

.outcome-text {
  font-size: 18px;
  
}

/* Support Section */
.support-section {
  padding: 4rem 0;
  background: white;
}

.support-feature {
  text-align: center;
  /*padding: 30px 20px;*/
}

.support-icon {
  width: 80px;
  height: 80px;
  background: #64607d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  margin: 0 auto 24px;
}

/* CTA Section */
/* .cta-section {
  background: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
} */

.btn-cta {
  background: var(--accent-orange);
  border: 2px solid var(--accent-orange);
  color: white;
  padding: 16px 40px;
  font-size: 18px;
  
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #ea580c;
  border-color: #ea580c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

/* Navigation */
.navbar-custom {
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 16px 0;
}

.navbar-brand {
  font-size: 28px;
  
  color: var(--primary-blue) !important;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
}

/* Footer */
footer {
  background: #1f2937 !important;
}

footer a:hover {
  color: var(--primary-blue) !important;
}

.text-warning {
    --bs-text-opacity: 1;
    color: rgb(231 242 255) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 120px 0 80px;
  }
  
  .client-logos {
    gap: 30px;
  }
  
  /* .client-logo {
    width: 120px;
    height: 60px;
  } */
  
  .client-logo span {
    font-size: 12px;
  }
  
  .service-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .outcome-number {
    font-size: 36px;
  }
  
  .gartner-strip {
    font-size: 16px;
    padding: 12px 0;
  }

  .hero-form{
    margin-top: 50px;
    
  }

  .display-3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  /* .client-logo {
    width: 100px;
    height: 50px;
  } */
  
  .display-3 {
    font-size: 2rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
  animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Custom Utilities */
.text-primary-custom {
  color: var(--primary-blue) !important;
}

.bg-primary-custom {
  background-color: var(--primary-blue) !important;
}

.border-primary-custom {
  border-color: var(--primary-blue) !important;
}

/* Form Styling */
.form-label {
  
  margin-bottom: 8px;
}

/* Social Links */
.social-links a {
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-blue) !important;
}

/* Card hover effects */
.card {
  transition: all 0.3s ease;
}

/* Button hover states */
.btn {
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: white;
  border-color: white;
  color: var(--text-dark);
}

/* Spacing adjustments */
.lead {
  font-size: 1.1rem;
  
}

/* Icon sizing consistency */
.fa-5x {
  font-size: 4rem !important;
}

