/* ===============================
   Global Styles
=============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", Roboto, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===============================
   Navbar
=============================== */
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e6e6e6;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo a {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0057d8;
  letter-spacing: 0.5px;
}

.logo a span {
  color: #0099ff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0057d8;
}

/* ===============================
   Main Content
=============================== */
main {
  padding: 3rem 0;
}

/* ===============================
   Footer
=============================== */
.footer {
  background: linear-gradient(135deg, #0057d8, #007bff);
  color: #ffffff;
  padding: 3rem 0 1rem;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-left h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.footer-left span {
  color: #ffffff;
  font-weight: 700;
}

.footer-left p {
  color: #eaeaea;
  max-width: 300px;
}

.footer-right {
  text-align: right;
}

.footer-links {
  list-style: none;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.8;
}

.socials a {
  display: inline-block;
  margin: 0 8px;
  transition: transform 0.3s;
}

.socials a:hover {
  transform: translateY(-3px);
}

.socials img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  font-size: 0.9rem;
  color: #e6e6e6;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}

.socials a:hover img {
  filter: brightness(0) invert(0.7);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* ICON STYLE */
.icon-circle {
  background: linear-gradient(145deg, #e6f0ff, #ffffff);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* HIGHLIGHT ICONS */
.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* HERO refined */
.hero {
  background: radial-gradient(circle at 20% 20%, #0a58ca, #003e91);
  color: white;
  text-align: center;
  padding: 120px 20px 100px;
}
.hero .headline {
  font-size: 2.8rem;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.3;
}
.hero .subheadline {
  font-size: 1.15rem;
  max-width: 750px;
  margin: 0 auto 35px;
  color: #eaf3ff;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-hero {
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-primary.btn-hero {
  background: #ffffff;
  color: #0057d8;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.btn-primary.btn-hero:hover {
  background: #f8fbff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Section headers */
section h2 {
  font-weight: 700;
  color: #0a58ca;
  margin-bottom: 40px;
  font-size: 2.1rem;
}

/* Highlight intro */
.highlight-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

/* Slight animation on hover */
.service-card:hover,
.highlight-card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

/* Cards soft hover glow */
.service-card:hover .icon-circle svg {
  stroke: #007bff;
  transition: 0.3s;
}

/* ABOUT PAGE STYLING */
.about-hero {
  background: linear-gradient(135deg, #0a58ca, #003e91);
  color: #fff;
  text-align: center;
  padding: 120px 20px 100px;
}
.about-headline {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}
.about-subheadline {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto;
  color: #eaf3ff;
  line-height: 1.7;
}

.about-section {
  padding: 90px 20px;
  text-align: center;
}
.about-section h2 {
  color: #0a58ca;
  margin-bottom: 25px;
  font-size: 2rem;
  font-weight: 700;
}
.about-section p {
  max-width: 850px;
  margin: 0 auto 20px;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
}


/* VALUES GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  margin-top: 50px;
}
.value-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.value-card h3 {
  color: #0a58ca;
  margin-bottom: 10px;
}


/* ===============================
   Home Page - What We Are Section
=============================== */
.what-we-are {
  background: linear-gradient(135deg, #f0f7ff, #ffffff);
  padding: 70px 20px;
  text-align: center;
}
.what-we-are h2 {
  color: #0a58ca;
  font-size: 2.2rem;
  margin-bottom: 25px;
}
.section-intro {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}

/* ===============================
   Services Grid Enhancement
=============================== */
.services {
  padding: 80px 20px;
  background: #ffffff;
}
.services h2 {
  text-align: center;
  margin-bottom: 60px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.service-card h3 {
  color: #0a58ca;
  font-size: 1.4rem;
  margin: 20px 0 15px;
}
.service-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: left;
}
.service-example {
  background: #f7fbff;
  border-left: 4px solid #0057d8;
  padding: 20px;
  margin-top: 25px;
  border-radius: 8px;
  text-align: left;
}
.service-example h4 {
  color: #0057d8;
  font-size: 0.95rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-example p {
  margin: 0;
  font-size: 0.95rem;
}
.service-cta {
  margin-top: 25px;
  text-align: center;
}
.btn-inline {
  color: #0057d8;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-inline:hover {
  color: #003e91;
  transform: translateX(5px);
}

/* ===============================
   Highlights Section
=============================== */
.highlights {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f7fbff, #ffffff);
  text-align: center;
}
.highlights h2 {
  margin-bottom: 20px;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}
.highlight-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.highlight-card h3 {
  color: #0a58ca;
  margin: 15px 0;
}
.highlight-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.btn-outline {
  display: inline-block;
  background: transparent;
  border: 2px solid #0057d8;
  color: #0057d8;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: #0057d8;
  color: #ffffff;
}

/* ===============================
   Projects Page Enhancements
=============================== */
.tech-intro {
  background: linear-gradient(135deg, #f7fbff, #ffffff);
  border-radius: 16px;
  padding: 40px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
}
.tech-intro h3 {
  color: #0a58ca;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}
.tech-intro > p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.tech-stack {
  margin: 35px 0;
}
.tech-stack h4 {
  color: #0057d8;
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: center;
}
.tech-categories {
  display: grid;
  gap: 20px;
}
.tech-category {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #0057d8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.tech-category strong {
  color: #0a58ca;
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #eef6ff, #ffffff);
  border: 1px solid rgba(0, 87, 216, 0.15);
  border-radius: 999px;
  color: #0a58ca;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 87, 216, 0.08);
  transition: all 0.25s ease;
}
.tech-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 87, 216, 0.15);
  border-color: rgba(0, 87, 216, 0.25);
}
.tech-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 87, 216, 0.12);
  font-size: 1rem;
  line-height: 1;
}
.tech-note {
  text-align: center;
  color: #666;
  font-style: italic;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #e6e6e6;
}

.section-heading {
  color: #0a58ca;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
}
.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

/* ===============================
   Project Metrics Section
=============================== */
.project-metrics-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
  padding: 90px 20px;
}
.project-metrics-section .section-heading {
  margin-bottom: 15px;
}
.project-metrics-section .section-subtitle {
  margin-bottom: 50px;
}

/* Metrics Card */
.metrics-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 12px 40px rgba(0, 87, 216, 0.08);
  border: 2px solid rgba(0, 87, 216, 0.06);
  transition: all 0.3s ease;
}
.metrics-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 87, 216, 0.12);
  border-color: rgba(0, 87, 216, 0.12);
}
.metrics-card:last-child {
  margin-bottom: 0;
}

/* Metrics Header */
.metrics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 2px solid rgba(0, 87, 216, 0.1);
  flex-wrap: wrap;
  gap: 15px;
}
.metrics-header h3 {
  color: #0057d8;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}
.status-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}
.status-live::before {
  content: "●";
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* Metric Item */
.metric-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #f8fbff, #ffffff);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(0, 87, 216, 0.08);
  transition: all 0.3s ease;
}
.metric-item:hover {
  background: linear-gradient(135deg, #eef6ff, #f8fbff);
  border-color: rgba(0, 87, 216, 0.15);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 87, 216, 0.08);
}

.metric-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef6ff, #d1e3ff);
  border-radius: 12px;
}

.metric-content {
  flex: 1;
  min-width: 0;
}

.metric-label {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 4px;
  font-weight: 500;
  text-transform: capitalize;
}

.metric-value {
  font-size: 1.2rem;
  color: #0057d8;
  font-weight: 700;
  line-height: 1.2;
}

/* Responsive Metrics */
@media (max-width: 768px) {
  .metrics-card {
    padding: 30px 20px;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .metrics-header h3 {
    font-size: 1.5rem;
  }
  .metric-value {
    font-size: 1.1rem;
  }
}

/* ===============================
   Upcoming Projects Section
=============================== */
.upcoming-projects {
  background: linear-gradient(135deg, #f0f7ff, #ffffff);
  padding: 80px 20px;
}
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}
.upcoming-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 28px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}
.upcoming-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.upcoming-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.upcoming-card h3 {
  color: #0a58ca;
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.upcoming-card p {
  color: #555;
  line-height: 1.7;
  text-align: left;
  margin-bottom: 20px;
}
.status-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0057d8, #007bff);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.upcoming-more {
  background: linear-gradient(135deg, #f7fbff, #eef6ff);
  border: 2px dashed #0057d8;
}

/* ===============================
   How We Work Section
=============================== */
.how-we-work {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  padding: 90px 20px;
}
.how-we-work h2 {
  text-align: center;
  color: #0a58ca;
  margin-bottom: 20px;
}
.how-we-work .section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 8px 25px rgba(0, 87, 216, 0.08);
  border: 2px solid rgba(0, 87, 216, 0.08);
  transition: all 0.3s ease;
}
.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 87, 216, 0.15);
  border-color: rgba(0, 87, 216, 0.2);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 87, 216, 0.08);
  line-height: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #eef6ff, #d1e3ff);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #0057d8;
  transition: all 0.3s ease;
}
.process-step:hover .step-icon {
  background: linear-gradient(135deg, #0057d8, #007bff);
  color: #ffffff;
  transform: scale(1.05);
}

.process-step h3 {
  color: #0a58ca;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.process-step p {
  color: #555;
  line-height: 1.7;
  margin: 0;
  font-size: 0.98rem;
}

/* ===============================
   Why Choose Us Section
=============================== */
.why-choose-us {
  padding: 90px 20px;
  background: #ffffff;
}
.why-choose-us h2 {
  text-align: center;
  color: #0a58ca;
  margin-bottom: 60px;
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-prop {
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 87, 216, 0.06);
  border: 1px solid rgba(0, 87, 216, 0.08);
  transition: all 0.3s ease;
}
.value-prop:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 87, 216, 0.12);
  border-color: rgba(0, 87, 216, 0.15);
}

.prop-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.value-prop h3 {
  color: #0a58ca;
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.value-prop p {
  color: #555;
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

/* ===============================
   By The Numbers Section
=============================== */
.by-the-numbers {
  padding: 90px 20px;
  background: linear-gradient(135deg, #0a58ca, #0057d8);
  color: #ffffff;
  text-align: center;
}
.by-the-numbers h2 {
  color: #ffffff;
  margin-bottom: 18px;
}
.by-the-numbers .section-intro {
  color: rgba(255, 255, 255, 0.85);
  max-width: 780px;
  margin: 0 auto 55px;
  font-size: 1.1rem;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}
.number-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
.number-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
.number-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.number-label {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* ===============================
   Trust Pillars Section
=============================== */
.trust-pillars {
  padding: 80px 20px;
  background: #ffffff;
}
.pillars-card {
  background: linear-gradient(135deg, #f8fbff, #ffffff);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 12px 35px rgba(0, 87, 216, 0.12);
  border: 1px solid rgba(0, 87, 216, 0.08);
  max-width: 960px;
  margin: 0 auto;
}
.pillars-card h2 {
  color: #0a58ca;
  margin-bottom: 24px;
  text-align: left;
}
.pillars-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.pillars-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #334155;
  line-height: 1.6;
}
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.35);
}

/* ===============================
   Testimonial Section
=============================== */
.testimonial {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.testimonial-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 18px 45px rgba(0, 87, 216, 0.12);
  border: 1px solid rgba(0, 87, 216, 0.1);
}
.quote-icon {
  position: absolute;
  top: -22px;
  left: 35px;
  font-size: 4.5rem;
  color: rgba(0, 87, 216, 0.15);
  font-family: "Georgia", serif;
}
.testimonial-text {
  font-size: 1.2rem;
  color: #1f2937;
  line-height: 1.8;
  margin-bottom: 30px;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.author-name {
  font-weight: 700;
  color: #0a58ca;
}
.author-role {
  color: #64748b;
  font-size: 0.95rem;
}
.author-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #059669;
}
.author-badge::before {
  content: "✔";
  font-size: 0.9rem;
}

.alert-modern {
  padding: 16px 20px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(0, 87, 216, 0.12);
}
.alert-success {
  background: rgba(34, 197, 94, 0.15);
  color: #047857;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.alert-error {
  background: rgba(248, 113, 113, 0.15);
  color: #b91c1c;
  border: 1px solid rgba(248, 113, 113, 0.3);
}
.author-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #059669;
}
.author-badge::before {
  content: "✔";
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .value-props-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .upcoming-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .value-props-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .upcoming-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   Button Enhancements
=============================== */
.btn-primary {
  background: linear-gradient(135deg, #0057d8, #007bff);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 87, 216, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 87, 216, 0.4);
}

/* ===============================
   Contact Page Styling
=============================== */

/* Modern Contact Form Card */
.contact-form-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 87, 216, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 87, 216, 0.06);
  transition: all 0.3s ease;
}
.contact-form-card:hover {
  box-shadow: 0 24px 70px rgba(0, 87, 216, 0.12), 0 6px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* Form Header */
.form-header {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(0, 87, 216, 0.1);
}
.form-title {
  color: #0057d8;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.form-subtitle {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Modern Form Groups */
.form-group-modern {
  margin-bottom: 28px;
  position: relative;
}

/* Modern Labels with Icons */
.form-label-modern {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.form-label-modern svg {
  color: #0057d8;
  flex-shrink: 0;
}

/* Modern Form Controls */
.form-control-modern {
  width: 100%;
  padding: 16px 20px;
  font-size: 1rem;
  line-height: 1.5;
  color: #2c3e50;
  background-color: #ffffff;
  border: 2px solid #e1e8f0;
  border-radius: 14px;
  transition: all 0.3s ease;
  font-family: inherit;
}
.form-control-modern:focus {
  outline: none;
  border-color: #0057d8;
  background-color: #f8fbff;
  box-shadow: 0 0 0 4px rgba(0, 87, 216, 0.08), 0 4px 12px rgba(0, 87, 216, 0.04);
  transform: translateY(-1px);
}
.form-control-modern::placeholder {
  color: #9ca3af;
}
textarea.form-control-modern {
  resize: vertical;
  min-height: 140px;
  max-height: 300px;
}
.form-control-modern.has-error {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}
.field-error {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: #dc2626;
  font-weight: 600;
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Form Helper Text */
.form-text-helper {
  display: block;
  margin-top: 8px;
  font-size: 0.875rem;
  color: #6c757d;
  font-style: italic;
}

/* Modern Submit Button */
.btn-submit-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #0057d8 0%, #007bff 100%);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 87, 216, 0.25);
  margin-top: 12px;
}
.btn-submit-modern:hover {
  background: linear-gradient(135deg, #004bb5 0%, #0066cc 100%);
  box-shadow: 0 12px 28px rgba(0, 87, 216, 0.35);
  transform: translateY(-2px);
}
.btn-submit-modern:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 87, 216, 0.3);
}
.btn-submit-modern svg {
  transition: transform 0.3s ease;
}
.btn-submit-modern:hover svg {
  transform: translateX(3px);
}

/* Contact Form Enhancements */
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.bg-light {
  background-color: #f8f9fa !important;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0,0,0,.125);
  border-radius: 0.25rem;
}
.border-0 {
  border: 0 !important;
}
.shadow-sm {
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}
.rounded-4 {
  border-radius: 1rem !important;
}
.display-6 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.fw-bold {
  font-weight: 700 !important;
}
.fw-semibold {
  font-weight: 600 !important;
}
.text-primary {
  color: #0057d8 !important;
}
.text-muted {
  color: #6c757d !important;
}
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}
.justify-content-center {
  justify-content: center !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.g-5 {
  gap: 3rem;
}
.col-lg-10, .col-md-7, .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.text-center {
  text-align: center !important;
}

/* Form Styles */
.form-label {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #333;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #d1e3ff;
  appearance: none;
  border-radius: 12px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #007bff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}
.form-control-lg {
  min-height: calc(1.5em + 1.5rem + 2px);
  padding: 0.75rem 1.25rem;
  font-size: 1.1rem;
}
textarea.form-control {
  min-height: auto;
}

/* Button Styles */
.btn {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 50rem;
  transition: all 0.2s ease-in-out;
}
.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1.1rem;
}
.btn-primary {
  background: linear-gradient(135deg, #0057d8, #007bff);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 87, 216, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
  background: linear-gradient(135deg, #004bb5, #0066cc);
}
.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.rounded-pill {
  border-radius: 50rem !important;
}

/* Contact Info Items */
.contact-info-item {
  transition: transform 0.2s ease;
}
.contact-info-item:hover {
  transform: translateX(4px);
}
.d-flex {
  display: flex !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.me-3 {
  margin-right: 1rem !important;
}
.fs-4 {
  font-size: 1.5rem !important;
}

/* Social Links Grid */
.social-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 15px;
}
.social-link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #f7fbff, #eef6ff);
  border-radius: 12px;
  border: 2px solid #d1e3ff;
  text-decoration: none;
  color: #0a58ca;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.social-link-card:hover {
  background: linear-gradient(135deg, #0057d8, #007bff);
  color: white;
  border-color: #0057d8;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 87, 216, 0.3);
}
.social-link-card svg {
  flex-shrink: 0;
}
.small {
  font-size: 0.875em;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.ps-md-4 {
  padding-left: 1.5rem;
}

/* Bootstrap Icons Support */
.bi {
  display: inline-block;
  vertical-align: -0.125em;
  fill: currentColor;
}
.bi-envelope-fill:before,
.bi-geo-alt-fill:before,
.bi-clock-fill:before,
.bi-share-fill:before {
  content: "●";
  font-size: 1.2em;
}

/* ===============================
   Responsive Design
=============================== */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }
  
  /* Contact Page Mobile Adjustments */
  .col-md-7, .col-md-4 {
    width: 100%;
    max-width: 100%;
  }
  
  .social-links-grid {
    grid-template-columns: 1fr;
  }
  
  .display-6 {
    font-size: 1.8rem;
  }
  
  .lead {
    font-size: 1.1rem;
  }
}
