* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

/* Fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

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

/* Top Brand Bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #123499 0%, #1f47b3 100%);
  height: 8px;
  z-index: 1001;
}

/* Header */
header {
  position: fixed;
  top: 8px;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: #123499;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover {
  color: #00B8A9;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #123499;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  background-color: #123499;
  background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  width: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 52, 153, 0.8), rgba(18, 52, 153, 0.9));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

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

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.03em;
}

.cta-primary {
  background: linear-gradient(135deg, #ffc300 0%, #ffdb4d 100%);
  color: #123499;
  box-shadow: 0 4px 15px rgba(255, 195, 0, 0.3);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 195, 0, 0.5);
  filter: brightness(1.05);
}

.cta-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Sections */
section {
  padding: 80px 20px;
  position: relative;
}

/* Section dividers */
section:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00B8A9 0%, #123499 50%, #ffc300 100%);
  border-radius: 2px;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #123499;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(18, 52, 153, 0.1);
  line-height: 1.3;
}

/* Services Overview Section */
.services-overview {
  background-color: white;
}

.section-description {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.overview-card {
  background: #ffffff;
  background-image: linear-gradient(135deg, rgba(0, 184, 169, 0.02) 0%, rgba(18, 52, 153, 0.03) 100%);
  padding: 0;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.overview-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}

.overview-card h3,
.overview-card p {
  padding: 0 2rem;
}

.overview-card h3 {
  color: #123499;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem 0;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(18, 52, 153, 0.08);
}

.overview-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0.5rem 0;
  padding-bottom: 2rem;
}

.overview-card:hover {
  border-color: #00B8A9;
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 184, 169, 0.2);
  background-image: linear-gradient(135deg, rgba(0, 184, 169, 0.08) 0%, rgba(18, 52, 153, 0.06) 100%);
}

.overview-card:hover .overview-card-image {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.overview-card .industry-tag {
  color: #00B8A9;
  font-weight: 600;
  font-size: 0.85rem;
  font-style: italic;
  margin: 0.5rem 0 0.75rem 0;
}

.overview-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Services Section */
.services {
  background-color: #f8f8f8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #ffffff;
  background-image: linear-gradient(135deg, rgba(18, 52, 153, 0.02) 0%, rgba(0, 184, 169, 0.03) 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  border-color: #00B8A9;
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 184, 169, 0.25);
  background-image: linear-gradient(135deg, rgba(0, 184, 169, 0.10) 0%, rgba(255, 195, 0, 0.08) 100%);
}

.service-card h3 {
  color: #123499;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(18, 52, 153, 0.08);
}

.service-card p {
  color: #555;
  line-height: 1.8;
}

/* Results Section */
.results {
  background-color: white;
}

.results-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.results-content > p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #555;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #00B8A9;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 184, 169, 0.3);
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 1.1rem;
  color: #555;
}

/* About Section */
.about {
  background-color: #f8f8f8;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.8;
}

/* Contact Section */
.contact {
  background-color: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: #123499;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00B8A9;
  box-shadow: 0 0 0 3px rgba(0, 184, 169, 0.1);
  background-color: white;
}

.form-group textarea {
  resize: none;
}

.submit-button {
  background: linear-gradient(135deg, #00B8A9 0%, #00d4c0 100%);
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 184, 169, 0.3);
  letter-spacing: 0.03em;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 184, 169, 0.4);
  filter: brightness(1.08);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.schedule-text {
  font-size: 1.1rem;
  color: #555;
}

.calendly-link {
  color: #00B8A9;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.calendly-link:hover {
  color: #009688;
}

.location {
  font-size: 1.2rem;
  color: #123499;
  font-weight: 500;
}

/* Services Detail Hero */
.services-detail-hero {
  position: relative;
  background-color: #123499;
  background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  width: 100%;
}

.services-detail-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 52, 153, 0.8), rgba(18, 52, 153, 0.9));
}

.services-detail-hero .hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.services-detail-hero h1 {
  font-size: 3rem;
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}

/* Case Studies Page Styles */
.case-studies-hero {
  position: relative;
  background: linear-gradient(rgba(18, 52, 153, 0.85), rgba(18, 52, 153, 0.85)),
    url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=1920&q=80') center/cover;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 140px 20px 60px;
}

.case-studies-hero .hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.case-studies-hero h1 {
  font-size: 3rem;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  font-weight: 700;
  color: white;
}

.case-studies-hero .hero-intro {
  font-size: 1.3rem;
  margin: 0;
  opacity: 0.95;
  line-height: 1.7;
  color: white;
}

.case-study-section {
  padding: 100px 20px 80px;
  background-color: white;
}

.case-study-section:first-of-type {
  padding-top: 100px;
}

.case-study-results-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 2rem auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.case-study-section.alt-bg {
  background-color: #f8f8f8;
}

.case-study-header {
  text-align: center;
  margin-bottom: 3rem;
}

.case-study-title {
  font-size: 2.2rem;
  color: #123499;
  font-weight: 700;
  margin-bottom: 1rem;
}

.case-study-tag {
  display: inline-block;
  background: linear-gradient(135deg, #00B8A9 0%, #00d4c0 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 184, 169, 0.3);
  letter-spacing: 0.03em;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.case-study-card {
  background: #ffffff;
  background-image: linear-gradient(135deg, rgba(18, 52, 153, 0.02) 0%, rgba(0, 184, 169, 0.02) 100%);
  padding: 0;
  border-radius: 12px;
  border-left: 4px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.case-study-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}

.case-study-card h3,
.case-study-card p,
.case-study-card ul {
  padding: 0 2.5rem;
}

.case-study-card h3 {
  color: #123499;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 2px rgba(18, 52, 153, 0.08);
}

.case-study-card p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  padding-bottom: 2.5rem;
}

.case-study-section.alt-bg .case-study-card {
  background: #ffffff;
  background-image: linear-gradient(135deg, rgba(0, 184, 169, 0.02) 0%, rgba(18, 52, 153, 0.02) 100%);
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.case-study-card:hover .case-study-card-image {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.case-study-card.challenge {
  border-left-color: #123499;
}

.case-study-card.solution {
  border-left-color: #00B8A9;
}

.case-study-card.results {
  border-left-color: #ffc300;
}

.case-study-card ul {
  list-style: none;
  padding: 0 2.5rem 2.5rem 2.5rem;
  margin: 0;
}

.case-study-card ul li {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 0.8rem;
}

.case-study-card ul li strong {
  color: #123499;
  font-size: 1.3rem;
  font-weight: 700;
}

/* Testimonials Section */
.testimonials-section {
  background-color: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
}

.testimonials-heading {
  font-size: 2.5rem;
  color: #123499;
  font-weight: 700;
  margin: 0 0 3rem 0;
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  min-height: 280px;
}

.testimonial-slide {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.quote-mark {
  font-size: 6rem;
  color: #00B8A9;
  font-family: Georgia, serif;
  line-height: 0.5;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1.6rem;
  color: #123499;
  font-weight: 500;
  line-height: 1.7;
  margin: 0 0 2rem 0;
  font-style: italic;
}

.testimonial-author {
  font-size: 1.1rem;
  color: #555;
  font-weight: 600;
  margin: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot:hover {
  background-color: #00B8A9;
  transform: scale(1.2);
}

.dot.active {
  background-color: #00B8A9;
  transform: scale(1.3);
}

.testimonials-cta {
  margin-top: 2rem;
}

/* About Page Styles */
.about-hero {
  position: relative;
  background: linear-gradient(rgba(18, 52, 153, 0.85), rgba(18, 52, 153, 0.85)),
    url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1920&q=80') center/cover;
  padding: 140px 20px 80px;
  text-align: center;
  color: white;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero .hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 2rem 0;
  line-height: 1.2;
  color: white;
}

.about-intro {
  font-size: 1.3rem;
  line-height: 1.8;
  margin: 0;
  opacity: 0.95;
  color: white;
}

.about-team-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 3rem auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-mission {
  background-color: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
}

.about-mission h2 {
  font-size: 2.5rem;
  color: #123499;
  font-weight: 700;
  margin: 0 0 2rem 0;
}

.about-mission p {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.about-approach {
  background-color: white;
  padding: 80px 20px;
}

.about-approach h2 {
  font-size: 2.5rem;
  color: #123499;
  font-weight: 700;
  text-align: center;
  margin: 0 0 3rem 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.approach-card {
  text-align: center;
  background: #ffffff;
  background-image: linear-gradient(135deg, rgba(18, 52, 153, 0.02) 0%, rgba(0, 184, 169, 0.03) 100%);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.approach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 184, 169, 0.2);
  border-color: #00B8A9;
  background-image: linear-gradient(135deg, rgba(0, 184, 169, 0.10) 0%, rgba(18, 52, 153, 0.08) 100%);
}

.approach-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00B8A9 0%, #00d4c0 100%);
  border-radius: 50%;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 184, 169, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.approach-card:hover .approach-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 184, 169, 0.4);
}

.approach-card h3 {
  font-size: 1.4rem;
  color: #123499;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.approach-card p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.about-leadership-expertise {
  background-color: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
}

.about-leadership-expertise h2 {
  font-size: 2.5rem;
  color: #123499;
  font-weight: 700;
  margin: 0 0 3rem 0;
}

.leadership-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto 4rem;
  background: #ffffff;
  background-image: linear-gradient(135deg, rgba(18, 52, 153, 0.02) 0%, rgba(0, 184, 169, 0.02) 100%);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.leadership-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 184, 169, 0.2);
  border-color: #00B8A9;
  background-image: linear-gradient(135deg, rgba(0, 184, 169, 0.08) 0%, rgba(18, 52, 153, 0.06) 100%);
}

.leader-image-container {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.leader-image-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00B8A9 0%, #123499 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 4px solid #00B8A9;
  box-shadow: 0 4px 12px rgba(0, 184, 169, 0.3);
}

.leader-image-container:hover .leader-image-avatar {
  transform: scale(1.05);
}

.avatar-initials {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.leader-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 184, 169, 0.9) 0%, rgba(18, 52, 153, 0.9) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader-image-container:hover .leader-image-overlay {
  opacity: 1;
}

.leader-social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.leadership-info {
  flex: 1;
}

.leadership-info h3 {
  font-size: 1.8rem;
  color: #123499;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.leadership-content:hover .leadership-info h3 {
  color: #00B8A9;
}

.leader-title {
  font-size: 1.2rem;
  color: #00B8A9;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.leader-bio {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.team-expertise-section {
  margin-bottom: 3rem;
}

.expertise-subtitle {
  font-size: 2rem;
  color: #123499;
  font-weight: 700;
  margin: 0 0 2rem 0;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.expertise-tag {
  background: linear-gradient(135deg, #00B8A9 0%, #00d4c0 100%);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 184, 169, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
}

.expertise-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 184, 169, 0.4);
  filter: brightness(1.08);
}

.about-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Responsive adjustments for About page */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2rem;
  }

  .about-intro {
    font-size: 1.1rem;
  }

  .about-mission h2,
  .about-approach h2,
  .about-leadership h2,
  .about-expertise h2 {
    font-size: 2rem;
  }

  .about-mission p {
    font-size: 1.1rem;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .leadership-content {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .leadership-info {
    text-align: center;
  }

  .leadership-info h3 {
    font-size: 1.5rem;
  }

  .about-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .about-cta-buttons .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

.case-studies-cta-section {
  background-color: #123499;
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.case-studies-cta-heading {
  font-size: 2.5rem;
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.case-studies-cta-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

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

/* Responsive adjustments for case studies */
@media (max-width: 768px) {
  .case-studies-hero .hero-intro {
    font-size: 1.1rem;
  }

  .case-study-title {
    font-size: 1.8rem;
  }

  .case-study-grid {
    grid-template-columns: 1fr;
  }

  .case-studies-cta-heading {
    font-size: 2rem;
  }

  .case-studies-cta-text {
    font-size: 1.1rem;
  }

  .case-studies-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .case-studies-cta-buttons .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

/* Services CTA Section */
.services-cta-section {
  background-color: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
}

.services-cta-heading {
  font-size: 2.5rem;
  color: #123499;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.services-cta-text {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

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

.cta-button.cta-yellow {
  background: linear-gradient(135deg, #ffc300 0%, #ffdb4d 100%);
  color: #123499;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255, 195, 0, 0.3);
}

.cta-button.cta-yellow:hover {
  box-shadow: 0 8px 25px rgba(255, 195, 0, 0.5);
  filter: brightness(1.05);
}

.cta-button.cta-teal-outline {
  background-color: transparent;
  color: #00B8A9;
  border: 2px solid #00B8A9;
  box-shadow: 0 4px 15px rgba(0, 184, 169, 0.15);
}

.cta-button.cta-teal-outline:hover {
  background: linear-gradient(135deg, #00B8A9 0%, #00d4c0 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 184, 169, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-cta-heading {
    font-size: 2rem;
  }

  .services-cta-text {
    font-size: 1.1rem;
  }

  .services-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .services-cta-buttons .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

/* Services Page Specific Styles */
.services-hero {
  min-height: 50vh;
  padding: 120px 20px 80px;
}

.service-section {
  padding: 80px 20px;
  background-color: white;
}

.service-section.alt-bg {
  background-color: #f8f8f8;
}

.service-section-title {
  font-size: 2.5rem;
  color: #123499;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.service-section-description {
  font-size: 1.4rem;
  color: #555;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 500;
  line-height: 1.6;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-feature-card {
  background: #ffffff;
  background-image: linear-gradient(135deg, rgba(18, 52, 153, 0.02) 0%, rgba(0, 184, 169, 0.02) 100%);
  padding: 0;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}

.service-feature-card h3,
.service-feature-card p {
  padding: 0 2rem;
}

.service-feature-card h3 {
  color: #123499;
  font-size: 1.3rem;
  font-weight: 600;
  padding-top: 1.5rem;
  margin: 0 0 0.75rem 0;
}

.service-feature-card p {
  padding-bottom: 2rem;
  flex-grow: 1;
  margin: 0;
}

.service-section.alt-bg .service-feature-card {
  background: #ffffff;
  background-image: linear-gradient(135deg, rgba(0, 184, 169, 0.02) 0%, rgba(18, 52, 153, 0.02) 100%);
}

.service-feature-card:hover {
  border-color: #00B8A9;
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 184, 169, 0.25);
  background-image: linear-gradient(135deg, rgba(0, 184, 169, 0.10) 0%, rgba(255, 195, 0, 0.08) 100%);
}

.service-feature-card:hover .service-card-image {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.service-detail {
  padding: 80px 20px;
  background-color: white;
}

.service-detail.alt-bg {
  background-color: #f8f8f8;
}

.service-detail-title {
  font-size: 2.5rem;
  color: #123499;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.service-industry-tag {
  text-align: center;
  color: #00B8A9;
  font-weight: 600;
  font-size: 1rem;
  font-style: italic;
  margin: 0 0 1rem 0;
}

.service-tagline {
  font-size: 1.5rem;
  color: #555;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 500;
  line-height: 1.6;
}

.service-content {
  max-width: 900px;
  margin: 0 auto;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.service-features li {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.service-features li::before {
  content: "•";
  color: #00B8A9;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -2px;
}

.service-features li strong {
  color: #123499;
  font-weight: 600;
}

.service-cta-text {
  font-size: 1.2rem;
  color: #123499;
  text-align: center;
  margin: 2rem 0 1.5rem 0;
  font-weight: 600;
}

.service-section .cta-button.cta-primary {
  display: block;
  text-align: center;
  max-width: 350px;
  margin: 0 auto;
}

.service-detail .cta-button {
  display: inline-block;
  margin: 0 auto;
}

.service-detail .cta-primary {
  display: block;
  text-align: center;
  max-width: 350px;
  margin: 0 auto;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #00B8A9 0%, #00d4c0 100%);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 184, 169, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  max-width: 400px;
  font-size: 1rem;
  line-height: 1.5;
  pointer-events: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Image hover effects */
.img-hover-effect {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-hover-effect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-hover-effect:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.img-hover-effect:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* Service section images */
.service-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-image-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(18, 52, 153, 0.1), rgba(0, 184, 169, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-image-container:hover::after {
  opacity: 1;
}

.service-image-container:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: #123499;
  color: white;
  text-align: center;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.footer-link-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link-social svg {
  flex-shrink: 0;
}

/* Contact Page Styles */
.contact-hero {
  position: relative;
  background: linear-gradient(rgba(18, 52, 153, 0.85), rgba(18, 52, 153, 0.85)),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover;
  padding: 140px 20px 80px;
  text-align: center;
  color: white;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero .hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 2rem 0;
  line-height: 1.2;
  color: white;
}

.contact-hero-subtext {
  font-size: 1.3rem;
  line-height: 1.8;
  margin: 0;
  opacity: 0.95;
  color: white;
}

.contact-section {
  background-color: white;
  padding: 80px 20px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-wrapper {
  position: relative;
}

.contact-form-wrapper form {
  background-color: #f8f8f8;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-wrapper label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #123499;
  font-size: 1rem;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #fafafa;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
  border-color: #00B8A9;
  box-shadow: 0 0 0 3px rgba(0, 184, 169, 0.1);
  background-color: white;
}

.contact-form-wrapper textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-wrapper .cta-button.primary {
  width: 100%;
  background: linear-gradient(135deg, #00B8A9 0%, #00d4c0 100%);
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(0, 184, 169, 0.3);
}

.contact-form-wrapper .cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 184, 169, 0.4);
  filter: brightness(1.08);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box {
  background-color: #f8f8f8;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-info-box h3 {
  font-size: 2rem;
  color: #123499;
  margin: 0 0 1.5rem 0;
  font-weight: 700;
}

.contact-details {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin: 0 0 2rem 0;
}

.contact-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-cta-buttons .cta-button {
  text-align: center;
  width: 100%;
}

.cta-button.primary-yellow {
  background: linear-gradient(135deg, #ffc300 0%, #ffdb4d 100%);
  color: #123499;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 195, 0, 0.3);
}

.cta-button.primary-yellow:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 195, 0, 0.5);
  filter: brightness(1.05);
}

.cta-button.outline {
  background-color: transparent;
  color: #123499;
  border: 2px solid #123499;
  box-shadow: 0 4px 15px rgba(18, 52, 153, 0.1);
}

.cta-button.outline:hover {
  background: linear-gradient(135deg, #123499 0%, #1f47b3 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(18, 52, 153, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo img {
    height: 55px;
  }

  nav {
    position: fixed;
    top: 8px;
    right: -100%;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: white;
    flex-direction: column;
    padding: 80px 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  nav.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }

  .overview-cta .cta-button {
    width: 90%;
    max-width: none;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-hero-subtext {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Feature Images - Interactive Sections */
.section-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.section-with-image .section-content {
  width: 100%;
}

.section-image-wrapper {
  width: 100%;
  max-width: 100%;
  display: block;
  position: relative;
}

.feature-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: block;
  object-fit: cover;
}

.interactive-image {
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.interactive-image:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  filter: brightness(1.1);
}

.interactive-image:active {
  transform: scale(1.02) translateY(-2px);
}

/* Results section with image on left */
#results .section-with-image {
  grid-template-columns: 45% 55%;
}

#results .section-image-wrapper {
  order: -1;
}

/* About section - balanced columns */
#about .section-with-image {
  grid-template-columns: 55% 45%;
}

/* Contact section with image on left */
#contact .section-with-image {
  grid-template-columns: 45% 55%;
}

#contact .section-image-wrapper {
  order: -1;
}

.contact-info-wrapper .feature-image {
  margin-bottom: 2rem;
  max-width: 100%;
}

/* Service sections on services.html - no longer using full-width images */

/* Testimonials section */
.testimonials-section .section-with-image {
  gap: 3rem;
  align-items: flex-start;
  grid-template-columns: 40% 60%;
}

.testimonials-section .section-image-wrapper {
  order: -1;
}

/* About page approach section */
.about-approach .section-with-image {
  grid-template-columns: 60% 40%;
}

/* Responsive adjustments for tablets and mobile */
@media (max-width: 768px) {
  .container {
    max-width: 100% !important;
    width: 100%;
    padding: 0 20px;
    overflow-x: hidden;
  }

  .section-with-image,
  #services-overview .section-with-image,
  #results .section-with-image,
  #about .section-with-image,
  #contact .section-with-image,
  .service-section .section-with-image,
  .service-section.alt-bg .section-with-image,
  .testimonials-section .section-with-image,
  .about-approach .section-with-image {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
  }

  .section-content {
    width: 100% !important;
    max-width: 100% !important;
  }

  .section-image-wrapper,
  #services-overview .section-image-wrapper,
  #results .section-image-wrapper,
  #contact .section-image-wrapper,
  .service-section.alt-bg .section-image-wrapper,
  .testimonials-section .section-image-wrapper {
    order: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .feature-image {
    width: 100% !important;
    max-width: 100% !important;
  }

  .interactive-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 480px) {
  .section-with-image {
    gap: 1.5rem;
  }

  .feature-image {
    border-radius: 8px;
  }

  .interactive-image:hover {
    transform: scale(1.01);
  }
}
