:root {
  --bg: #f7faff;
  --bg-elevated: #ffffff;
  --text: #0b1f3a;
  --muted: #6b7a90;
  --border: #dbe6f5;
  --accent: #2f6bff;
  --accent-dark: #1e4fff;
  --accent-soft: #eaf1ff;
  --container: 1180px;
  --shadow: 0 10px 28px rgba(20, 54, 112, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 6.5rem 0;
}

.section-sm {
  padding: 3.75rem 0;
}

.eyebrow {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 14ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.8rem 1.25rem;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.25);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-secondary,
.btn-nav {
  border-color: var(--border);
  background: #ffffff;
  color: var(--text);
}

.btn-secondary:hover,
.btn-nav:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-nav {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn-nav:hover {
  background: var(--accent-dark);
  color: #ffffff;
  border-color: var(--accent-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(20, 54, 112, 0.06);
}

.navbar {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;

}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  width: 1.45rem;
  height: 2px;
  background: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: url("assets/images/hero-bg.jpg") no-repeat center center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 40%,
    rgba(255, 255, 255, 0.6) 70%,
    rgba(255, 255, 255, 0.3) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: fadeUp 0.8s ease forwards;
}

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

.hero-title {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: #1f2937;
  letter-spacing: -0.02em;
}

.hero-subtext {
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
  margin-top: 16px;
  margin-bottom: 0;
  max-width: 520px;
  line-height: 1.6;
}

.hero-button {
  display: inline-block;
  margin-top: 24px;
  background: #2563eb;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero-button:hover {
  background: #1d4ed8;
  color: #ffffff;
}

.tech-cta {
  background: #f8fafc;
  padding: 70px 20px;
  display: flex;
  justify-content: center;
}

.tech-cta-inner {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tech-cta-inner h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.tech-cta-inner p {
  max-width: 600px;
  margin: 0 auto 25px;
  color: #475569;
  line-height: 1.75;
}

.tech-cta-inner .btn {
  background: #b6ff2b;
  color: #000;
  border-radius: 30px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.tech-cta-inner .btn:hover {
  background: #a4e62a;
}

.marquee-section {
  border-block: 1px solid var(--border);
  background: var(--accent-soft);
  overflow: hidden;
  white-space: nowrap;
  padding: 1rem 0;
}

.marquee-track {
  display: inline-flex;
  min-width: 100%;
  animation: marquee 25s linear infinite;
  color: var(--accent-dark);
  font-weight: 700;
}

.marquee-track span {
  padding-right: 2rem;
  font-size: 0.92rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.trust-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.stars {
  color: #ffd166;
  letter-spacing: 0.15rem;
}

.service-cards {
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.feature-row,
.highlight-card,
.stat-item,
.final-cta-inner {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.95rem;
  box-shadow: var(--shadow);
}

.service-card {
  padding: 1.6rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 107, 255, 0.45);
}

.service-card p,
.feature-row p,
.highlight-card p,
.strategy-content p {
  color: var(--muted);
}

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.strategy-media {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.feature-row {
  padding: 1.5rem 1.6rem;
  margin-bottom: 1.15rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.highlight-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.highlight-card {
  padding: 1.6rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat-item {
  padding: 1.5rem 1.1rem;
  text-align: center;
}

.stat-item h3 {
  margin: 0;
  color: var(--accent);
  font-size: 1.8rem;
}

.stat-item p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-weight: 500;
}

.final-cta-inner {
  text-align: center;
  padding: 2.4rem;
  background: linear-gradient(140deg, #ffffff, #f1f6ff);
}

.final-cta-inner h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #0b1f3a;
  padding-top: 3.2rem;
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.3fr 1fr 0.8fr;
}

.footer-col h3,
.footer-col h4 {
  margin-top: 0;
  color: #ffffff;
}

.footer-col p {
  color: #c7d4ea;
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
}

.newsletter-form input {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 0.75rem 0.85rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.newsletter-form input::placeholder {
  color: #d5e0f2;
}

.site-footer .social-icons {
  display: flex;
  gap: 12px;
}

.site-footer .social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1e293b;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.site-footer .social-icon i {
  font-size: 1rem;
  line-height: 1;
}

.site-footer .social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.site-footer .social-icon.linkedin:hover {
  background: #0077b5;
}

.site-footer .social-icon.facebook:hover {
  background: #1877f2;
}

.site-footer .social-icon.twitter:hover {
  background: #1da1f2;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  text-align: center;
  color: #aec0da;
  font-size: 0.9rem;
}

.services,
.detailed-services,
.stats,
.final-cta {
  background: #ffffff;
}

.trust,
.strategy,
.why-choose {
  background: var(--accent-soft);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .hero-title,
  .section-heading h2 {
    max-width: 100%;
  }

  .hero {
    padding: 90px 0;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .logo-img {
    height: 48px;
    object-fit: contain;
    transform: scale(1.5);
  }

  .hero {
    padding: 80px 0;
  }

  .hero-title {
    line-height: 1.2;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.8rem 1rem 1rem;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.2s ease;
    opacity: 0;
    pointer-events: none;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    width: 100%;
    padding: 0.75rem 0.15rem;
  }

  .nav-menu.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .service-cards,
  .highlight-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }
}


/* =========================
   TECHNOLOGY GRID
========================= */

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  
  .tech-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    height: 160px;
    overflow: hidden;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  
    transition: 0.3s ease;
  }
  
  .tech-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* LOGO inside cards */
  .tech-card img {
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
  
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s ease;
  }
  
  .tech-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
  }

  .tech-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
  }

  .tech-python::after {
    background-image: url("assets/images/python.png");
  }

  .tech-aws::after {
    background-image: url("assets/images/aws.png");
  }

  .tech-snowflake::after {
    background-image: url("assets/images/snowflake.png");
  }


/* =========================
   TECH GRID RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .tech-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .tech-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .tech-grid {
      grid-template-columns: 1fr;
    }
  }

/* =========================
   PAGE INTRO (shared layout / typography)
========================= */

.page-intro {
  padding: 90px 20px 70px;
  background: #f8fafc;
}

.page-intro-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.page-label {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2563eb;
  margin: 0 0 18px;
}

.page-title {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  color: #0f172a;
  margin: 0;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 40px;
  }

  .page-intro {
    padding: 70px 20px 50px;
  }
}

/* =========================
   SERVICES PAGE ENHANCEMENTS
========================= */

.services-page .service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(8, 22, 48, 0.25);
}

.services-page .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.38);
}

/* Bottom-weighted dark overlay for readability; image stays visible above */
.services-page .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 14, 36, 0.94) 0%,
    rgba(6, 14, 36, 0.72) 28%,
    rgba(10, 28, 58, 0.35) 55%,
    transparent 78%
  );
  z-index: 1;
  pointer-events: none;
}

.services-page .core-services-section {
  margin-top: 0;
  padding: 80px 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    #0f1f3d 0%,
    #1b3a6b 40%,
    #2a4f85 70%,
    #3a6cb0 100%
  );
  position: relative;
  overflow: hidden;
}

.services-page .core-services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.08),
    transparent 50%
  );
  pointer-events: none;
}

.services-page .core-services-section .section-heading {
  position: relative;
  z-index: 1;
}

.services-page .core-services-section .section-heading h2,
.services-page .core-services-section .section-heading p {
  color: #ffffff;
}

.services-page .core-services-section h2,
.services-page .core-services-section h3 {
  color: #ffffff;
}

.services-page .core-services-section .section-heading {
  max-width: 100%;
}

.services-page .core-services-section .services-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.5px;
  white-space: nowrap;
  max-width: 100%;
  margin: 0;
}

@media (max-width: 1024px) {
  .services-page .core-services-section .services-title {
    white-space: normal;
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .services-page .core-services-section .services-title {
    font-size: 28px;
  }
}

.services-page .core-services-section p {
  color: rgba(255, 255, 255, 0.85);
}

.services-page .service-card.cloud {
  background: url("assets/images/cloud.jpg") center/cover no-repeat;
}

.services-page .service-card.security {
  background: url("assets/images/security.jpg") center/cover no-repeat;
}

.services-page .service-card.ai {
  background: url("assets/images/ai.jpg") center/cover no-repeat;
}

.services-page .service-card.cyber {
  background: url("assets/images/security.jpg") center/cover no-repeat;
}

.services-page .service-card.sap {
  background: url("assets/images/sap.jpg") center/cover no-repeat;
}

.services-page .service-card.data {
  background: url("assets/images/data.jpg") center/cover no-repeat;
}

.services-page .service-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 22px 24px 24px;
  color: #ffffff;
}

.services-page .service-card h3 {
  font-size: clamp(18px, 1.9vw, 20px);
  font-weight: 600;
  margin: 0 0 8px;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.services-page .service-card p {
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.92;
  color: rgba(255, 255, 255, 0.92);
}

.services-page .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .services-page .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .services-page .service-card {
    height: 260px;
  }
}

/* =========================
   ABOUT PAGE
========================= */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.about-page .about-hero {
  background: #0f172a;
  padding: 100px 20px;
}

.about-page .about-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-page .about-label {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: #3b82f6;
  margin: 0 0 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.about-page .about-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.75rem, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  max-width: 22ch;
  margin-inline: auto;
  background: linear-gradient(to right, #ffffff, #c7d2fe);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-page .image-scroll {
  overflow: hidden;
  padding: 40px 0;
  background: #ffffff;
  border-block: 1px solid var(--border);
}

.about-page .scroll-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
  animation: about-scroll 20s linear infinite;
}

.about-page .scroll-track img {
  width: 280px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

@keyframes about-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page .scroll-track {
    animation: none;
  }
}

.about-page .empower {
  padding: 120px 20px;
  background: #f8fafc;
}

.about-page .empower-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-page .empower-title {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 38px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 70px;
  line-height: 1.25;
}

.about-page .empower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-page .empower-list .item {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
  transition: transform 0.3s ease;
}

.about-page .empower-list .item + .item {
  margin-top: 30px;
}

.about-page .empower-list .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-page .empower-list .item:nth-child(1) {
  animation-delay: 0.1s;
}

.about-page .empower-list .item:nth-child(2) {
  animation-delay: 0.2s;
}

.about-page .empower-list .item:nth-child(3) {
  animation-delay: 0.3s;
}

.about-page .empower-list .item:nth-child(4) {
  animation-delay: 0.4s;
}

.about-page .empower-list .item:hover {
  transform: translate(8px, 0);
}

.about-page .empower-list .icon {
  font-size: 22px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(37, 99, 235, 0.12);
  line-height: 1;
  flex-shrink: 0;
}

.about-page .empower-list h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.about-page .empower-list p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.55;
}

.about-page .empower-image {
  position: relative;
}

.about-page .empower-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

@media (prefers-reduced-motion: reduce) {
  .about-page .empower-list .item {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .about-page .empower-list .item:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .about-page .about-hero {
    padding: 80px 20px;
  }

  .about-page .scroll-track img {
    width: 220px;
    height: 132px;
  }
}

@media (max-width: 768px) {
  .about-page .empower {
    padding: 80px 20px;
  }

  .about-page .empower-title {
    margin-bottom: 48px;
  }

  .about-page .empower-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-page .empower-image {
    order: -1;
  }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-page .contact-section {
  position: relative;
  background-color: #f7faff;
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.78)
    ),
    url("assets/images/contact-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-page .contact-section-inner {
  padding: 80px 0;
}

.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  width: min(100% - 2rem, 1100px);
}

.contact-page .contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

.contact-page .contact-info h1 {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 16px;
  max-width: 22ch;
}

.contact-page .contact-lead {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 42ch;
}

.contact-page .contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-page .contact-details li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-page .contact-details-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-page .contact-details a,
.contact-page .contact-details-value {
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.45;
}

.contact-page .contact-details a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 500;
}

.contact-page .contact-details a:hover {
  text-decoration: underline;
}

.contact-page .contact-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 12px 40px rgba(15, 40, 90, 0.1);
  border: 1px solid var(--border);
}

.contact-page .contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-page .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-page .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-page .form-group-full {
  grid-column: 1 / -1;
}

.contact-page .contact-form label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s ease;
}

.contact-page .contact-form input::placeholder,
.contact-page .contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.contact-page .btn-contact-submit {
  width: 100%;
  margin-top: 6px;
  padding: 14px 24px;
  border: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  background: #84cc16;
  color: #0f172a;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-page .btn-contact-submit:hover {
  background: #73b814;
}

.contact-page .btn-contact-submit:active {
  transform: translateY(1px);
}

@media (max-width: 900px) {
  .contact-page .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-page .form-row {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-info h1 {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .contact-page .contact-section-inner {
    padding: 64px 0;
  }

  .contact-page .contact-form-card {
    padding: 24px;
  }
}