:root {
  --primary-dark: #1a1a1a;
  --secondary-text: #4a4a4a;
  --tertiary-text: #7a7a7a;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --border-light: #e8e8e8;
  --accent-blue: #3b82f6;
  --dark-blue: #1e3a8a;
  --success-green: #10b981;
}

* {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", sans-serif;
  color: var(--primary-dark);
  background: var(--white);
  line-height: 1.6;
}

.btn-primary-h {
  background: var(--accent-blue);
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-primary-h:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.btn-secondary-h {
  background: transparent;
  border: 2px solid var(--accent-blue);
  color: var(--accent-blue);
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-secondary-h:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #2563eb;
  color: #2563eb;
}

section {
  padding: 70px 0;
}
@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

section:nth-of-type(even) {
  background: var(--light-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
}
.section-header p {
  color: var(--secondary-text);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero {
  padding: 80px 0 90px;
  background: white;
  text-align: center;
}
@media (min-width: 900px) {
  .hero {
    padding: 110px 0 120px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 50px 0 60px;
  }
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.75rem;
  }
}

.hl-accent {
  color: var(--accent-blue);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--secondary-text);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 2.25rem;
}
@media (max-width: 576px) {
  .hero-sub {
    font-size: 0.97rem;
  }
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.empowerment-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .empowerment-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.empowerment-img-wrap {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.empowerment-img-wrap img {
  width: 60%;
  height: auto;
  display: block;
}

.empowerment-content h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  color: var(--primary-dark);
}
.empowerment-content p {
  color: var(--secondary-text);
  font-size: 0.96rem;
  line-height: 1.85;
  margin: 0;
}

.empowerment-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-blue);
  display: block;
  margin-bottom: 0.65rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.service-card {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  padding: 32px;
  transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.service-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.12);
  transform: translateY(-5px);
}
.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(59, 130, 246, 0.09);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition:
    background 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.35s ease;
  flex-shrink: 0;
}
.service-card:hover .service-icon {
  background: var(--accent-blue);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.28);
}
.service-card:hover .service-icon svg {
  stroke: white !important;
}

.service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.85rem;
  transition: color 0.25s;
}
.service-card:hover h4 {
  color: var(--accent-blue);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--secondary-text);
  line-height: 1.7;
  margin: 0;
}

.why-choose-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  .why-choose-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.image-container {
  position: -webkit-sticky; 
  position: sticky;
  top: 100px;
  z-index: 10;
  display: inline-block; 
}

.image-container img {
  display: block;
  max-width: 100%;
  height: auto;
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px); 
  }
  100% {
    transform: translateY(0px);
  }
}

.your-element-class {
  position: relative;
}

@media (min-width: 768px) {
  .your-element-class {
    position: relative !important;
    top: 100px;
  }
}

.why-choose-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.why-item:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.09);
  transform: translateX(4px);
}

.why-icon {
  width: 44px;
  height: 44px;
  background: rgba(59, 130, 246, 0.09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.why-item:hover .why-icon {
  background: var(--accent-blue);
}
.why-item:hover .why-icon svg {
  stroke: white !important;
}

.why-content h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
  transition: color 0.25s;
}
.why-item:hover .why-content h4 {
  color: var(--accent-blue);
}
.why-content p {
  font-size: 0.86rem;
  color: var(--secondary-text);
  line-height: 1.6;
  margin: 0;
}

.cta-section {
  background: linear-gradient(135deg, #1e5a96 0%, #2a7bb4 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 40px 30px;
  }
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-light {
  background: white;
  color: #1e5a96;
  font-weight: 600;
  padding: 12px 36px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-cta-light:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0 40px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
}
