/* ===========================
   COLOR PALETTE & VARIABLES
   =========================== */
:root {
  --primary-teal: #1db89c;
  --primary-navy: #001f3d;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 2px 8px rgba(0, 31, 61, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 31, 61, 0.15);
}

/* ===========================
   GLOBAL STYLES
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

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

/* ===========================
   TYPOGRAPHY
   =========================== */
h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-navy);
  margin-bottom: 20px;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 30px;
  text-align: center;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 15px;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

p {
  color: var(--text-light);
  margin-bottom: 15px;
}

a {
  color: var(--primary-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-navy);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-teal);
  color: white;
}

.btn-primary:hover {
  background-color: #16a085;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-teal);
  border: 2px solid var(--primary-teal);
}

.btn-secondary:hover {
  background-color: var(--primary-teal);
  color: white;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  background-color: var(--bg-light);
  /* padding: 15px 0; */
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: none;
  box-shadow: var(--shadow);
}

.navbar.scrolled {
  background-color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(0, 31, 61, 0.08);
  backdrop-filter: blur(10px);
  /* padding: 10px 0; */
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 15px 0; */
}

.logo {
  height: 130px;
  margin: -20px 0 -25px;
}

.logo img {
  height: 100%;
  width: auto;
  transition: filter 0.3s ease;
}

.navbar.scrolled .logo img {
  filter: brightness(1);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  color: var(--primary-navy);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.navbar.scrolled .nav-link {
  /* color: var(--primary-navy); */
  text-shadow: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-teal);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-teal);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-teal);
}

.nav-link.active::after {
  width: 100%;
}

.nav-link:focus {
  /* outline: 2px solid var(--primary-teal); */
  outline-offset: 4px;
  border-radius: 2px;
}

.navbar.scrolled .nav-link:focus {
  /* outline: 2px solid var(--primary-teal); */
  outline-offset: 4px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 0;
  width: 30px;
  height: 24px;
  z-index: 1001;
  position: relative;
}

.menu-toggle:focus {
  outline: 2px solid var(--primary-teal);
  outline-offset: 2px;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  display: block;
}

.navbar.scrolled .menu-toggle span {
  background-color: var(--primary-navy);
  box-shadow: none;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  padding: 120px 0;
  padding-top: 200px;
  text-align: center;
  min-height: 700px;
  display: flex;
  align-items: center;
  /* margin-top: 70px; */
}

.carousel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-prev,
.carousel-next {
  display: none;
}

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: white;
  width: 30px;
  border-radius: 6px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(29, 184, 156, 0.45) 0%, rgba(0, 31, 61, 0.55) 100%);
  z-index: 2;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}

.hero-overlay.reduce-opacity {
  background: linear-gradient(135deg, rgba(29, 184, 156, 0.25) 0%, rgba(0, 31, 61, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
}

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

.hero-content h1 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 31, 61, 0.5);
  animation: fadeInDown 0.8s ease-out;
}

.hero-tagline {
  font-size: 24px;
  color: #f0f9f8;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 18px;
  color: #e8f5f3;
  margin-bottom: 40px;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   TRUSTED PARTNER SECTION
   =========================== */
.trusted-partner {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.trusted-partner h2 {
  margin-bottom: 20px;
}

.trusted-partner > div > p {
  text-align: center;
  margin-bottom: 60px;
  font-size: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.trusted-partner p {
  font-size: 18px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: var(--text-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 0;
  background-color: transparent;
  border-top: 2px solid var(--primary-teal);
  padding-top: 25px;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
}

.stat-card {
  background-color: var(--bg-white);
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-light);
}

/* ===========================
   WHAT WE DELIVER SECTION
   =========================== */
.what-we-deliver {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.what-we-deliver h2 {
  text-align: center;
  margin-bottom: 20px;
}

.what-we-deliver .section-intro {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

.services-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-showcase-item {
  background-color: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-showcase-item:hover {
  box-shadow: 0 12px 28px rgba(0, 31, 61, 0.08);
  transform: translateY(-4px);
}

.service-showcase-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  filter: blur(1);

}

.service-showcase-item h3 {
  font-size: 18px;
  margin: 0;
  padding: 25px 25px 15px;
  color: var(--primary-navy);
}

.service-showcase-item .service-list {
  padding: 0 25px 25px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

.service-showcase-item .service-list li {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  padding-left: 18px;
}

.service-showcase-item .service-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-teal);
  font-weight: 600;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-teal);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  margin-bottom: 15px;
  padding: 25px 40px 0;
}

.service-card p {
  color: var(--text-light);
  margin: 0;
  padding: 0 40px 40px;
}

/* ===========================
   DELIVERY APPROACH SECTION
   =========================== */
.delivery-approach {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.delivery-approach h2 {
  margin-bottom: 70px;
}

.timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.timeline-stage {
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.stage-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 15px;
}

.timeline-stage h4 {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}

.timeline-stage p {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

.timeline-connector {
  flex: 0 0 15%;
  min-width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-teal) 0%, var(--primary-teal) 50%, transparent 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.feature {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.feature:hover {
  box-shadow: var(--shadow-lg);
}

.feature h4 {
  color: var(--primary-teal);
  margin-bottom: 12px;
}

.feature p {
  margin: 0;
  font-size: 15px;
}

/* ===========================
   INDUSTRIES SECTION
   =========================== */
.industries {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.industries h2 {
  margin-bottom: 20px;
}

.industries .section-intro {
  text-align: center;
  margin-bottom: 60px;
  font-size: 16px;
  color: var(--text-light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.industry-item {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--bg-light);
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.industry-item:hover {
  transform: translateY(-8px);
  background-color: var(--primary-teal);
  color: white;
  border-color: var(--primary-teal);
  box-shadow: 0 12px 28px rgba(29, 184, 156, 0.2);
}

.industry-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.industry-item h3 {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}

.industry-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  text-align: center;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.industry-item:hover p {
  color: white;
}

.industry-card {
  background: linear-gradient(135deg, var(--primary-teal) 0%, #16a085 100%);
  color: white;
  padding: 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.industry-card h3 {
  color: white;
  margin-bottom: 15px;
}

.industry-card p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.about h2 {
  margin-bottom: 40px;
}

.about-intro {
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 60px;
  color: var(--text-light);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-card {
  background-color: transparent;
  padding: 0;
  text-align: center;
}

.about-card h3 {
  margin-bottom: 20px;
  color: var(--primary-navy);
  font-size: 18px;
}

.about-card p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
  font-size: 14px;
}

/* ===========================
   FINAL CTA SECTION
   =========================== */
.final-cta {
  padding: 80px 0;
  background-color: var(--primary-navy);
  color: white;
}

.cta-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.cta-content {
  text-align: left;
}

.cta-content h2  {
  color: white;
  text-align: left;
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background-color: var(--primary-teal);
  color: var(--primary-navy);
}

.cta-buttons .btn-primary:hover {
  background-color: #16a085;
  box-shadow: 0 8px 20px rgba(29, 184, 156, 0.3);
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(29, 184, 156, 0.2);
}

.contact-detail h2 {
  color: white !important;
  text-align: left;
  /*font-size: 42px;*/
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-detail h4 {
  color: var(--primary-teal);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact-detail p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 15px;
}

.contact-detail a {
  color: white;
  font-weight: 600;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background-color: var(--primary-navy);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: white;
  margin-bottom: 20px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
  color: var(--primary-teal);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* ===========================
   MENU OVERLAY
   =========================== */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 99;
  pointer-events: none;
}

.menu-overlay.active {
  display: block;
  pointer-events: auto;
}

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

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero-tagline {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-ctas {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  h3 {
    font-size: 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 400px;
    padding: 60px 0;
  }

  .services-showcase {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-content {
    text-align: center;
  }

  .cta-content h2 {
    text-align: center;
    font-size: 32px;
  }

  .contact-info-column {
    padding: 30px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-showcase-item img {
    height: 200px;
  }

  .timeline {
    flex-direction: column;
    gap: 30px;
  }

  .timeline-connector {
    width: 2px;
    height: 40px;
    min-width: unset;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .cta-content h2 {
    font-size: 36px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .contact-info-bar {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary-navy) 0%, rgba(0, 31, 61, 0.95) 100%);
    padding: 80px 0 40px 0;
    gap: 0;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
  }

  .navbar.scrolled .nav-link {
    color: #e8f0f7;
    /* text-shadow: none; */
  }

  @keyframes slideInRight {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(0);
    }
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: #e8f0f7;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: none;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: left;
    font-size: 15px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background-color: rgba(29, 184, 156, 0.25);
    color: #1db89c;
    padding-left: 28px;
  }

  .nav-link.active {
    background-color: rgba(29, 184, 156, 0.35);
    color: #1db89c;
    border-left: 4px solid var(--primary-teal);
    padding-left: 20px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    padding-bottom: 1rem;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-grid,
  .services-showcase,
  .features-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }

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

  .trusted-partner,
  .services,
  .why-choose,
  .industries,
  .about,
  .contact {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  /* .logo img {
    height: 50px;
  } */

  /* .nav-links {
    top: 60px;
  } */

  .hero-tagline {
    font-size: 18px;
  }

  .hero-description {
    font-size: 16px;
  }

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

  .stat-number {
    font-size: 32px;
  }

  .service-card,
  .feature,
  .about-card {
    padding: 25px;
  }

  .hero {
    padding: 40px 0;
  }

  .trusted-partner,
  .services,
  .why-choose,
  .industries,
  .about,
  .contact {
    padding: 40px 0;
  }
}

/* ===========================
   ACADEMY PAGE STYLES
   =========================== */
.academy-hero {
  position: relative;
  padding: 120px 0;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-navy) 0%, #0d1929 100%);
  overflow: hidden;
}

.academy-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(29, 184, 156, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(29, 184, 156, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.academy-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.academy-hero h1 {
  color: white;
  font-size: 54px;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease-out;
}

.academy-tagline {
  font-size: 28px;
  color: var(--primary-teal);
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.academy-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Academy Tabs */
.academy-tabs-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.tabs-container {
  max-width: 1100px;
  margin: 0 auto;
}

.tabs-nav {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  border-bottom: 3px solid transparent;
  margin-bottom: -23px;
}

.tab-btn:hover {
  color: var(--primary-teal);
}

.tab-btn.active {
  color: var(--primary-teal);
  border-bottom-color: var(--primary-teal);
}

.tab-icon {
  font-size: 20px;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.tab-pane.active {
  display: block;
}

.tab-intro {
  text-align: center;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.curriculum-card {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 40px 30px;
  border-left: 4px solid var(--primary-teal);
  transition: all 0.3s ease;
}

.curriculum-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 31, 61, 0.1);
  background-color: var(--bg-white);
}

.curriculum-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.curriculum-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.curriculum-level {
  color: var(--primary-teal);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.curriculum-list {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.curriculum-list li {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.curriculum-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary-teal);
  font-weight: 600;
}

.curriculum-duration {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.certification-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.certification-info h3 {
  margin-bottom: 30px;
}

.cert-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.cert-item {
  background-color: var(--bg-light);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-teal);
  transition: all 0.3s ease;
}

.cert-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 31, 61, 0.08);
}

.cert-badge {
  display: inline-block;
  background-color: var(--primary-teal);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cert-item h4 {
  margin: 10px 0 10px 0;
}

.cert-item p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.enrollment-box {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #0d1929 100%);
  color: white;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 31, 61, 0.15);
}

.enrollment-box h3 {
  color: white;
  margin-bottom: 30px;
}

.enrollment-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.step h4 {
  color: white;
  font-size: 16px;
  margin: 0 0 8px 0;
}

.step p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.enrollment-cta {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(29, 184, 156, 0.3);
}

.enrollment-cta .btn {
  margin-bottom: 15px;
}

.enrollment-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.enrollment-note a {
  color: var(--primary-teal);
  font-weight: 600;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.team-section h2 {
  margin-bottom: 20px;
}

.team-intro {
  text-align: center;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 70px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.team-tier {
  margin-bottom: 70px;
}

.team-tier-title {
  font-size: 24px;
  color: var(--primary-navy);
  margin-bottom: 40px;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
}

.team-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-teal);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 31, 61, 0.12);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary-teal), #0d9d7d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  box-shadow: 0 8px 20px rgba(29, 184, 156, 0.15);
}

.team-avatar.founder {
  background: linear-gradient(135deg, #1db89c, #0d9d7d);
}

.team-avatar.cofounder {
  background: linear-gradient(135deg, #1a7d6f, #0d4a42);
}

.team-avatar.engineer1,
.team-avatar.engineer2,
.team-avatar.engineer3 {
  background: linear-gradient(135deg, #1db89c, #0a5f52);
}

.team-avatar.data {
  background: linear-gradient(135deg, #1db89c, #0d9d7d);
}

.team-avatar.creative {
  background: linear-gradient(135deg, #1a7d6f, #0d4a42);
}

.team-card h4 {
  margin-bottom: 8px;
}

.team-role {
  color: var(--primary-teal);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.team-bio {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ===========================
   PORTFOLIO PAGE STYLES
   =========================== */
.portfolio-hero {
  position: relative;
  padding: 120px 0;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d1929 0%, var(--primary-navy) 100%);
  overflow: hidden;
}

.portfolio-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(29, 184, 156, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(29, 184, 156, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.portfolio-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.portfolio-hero h1 {
  color: white;
  font-size: 54px;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease-out;
}

.portfolio-tagline {
  font-size: 28px;
  color: var(--primary-teal);
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.portfolio-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Partners Section */
.partners-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.partners-section h2 {
  margin-bottom: 20px;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  position: relative;
}

.carousel-btn {
  background-color: var(--primary-navy);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: var(--primary-teal);
  transform: scale(1.1);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.partners-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  flex: 1;
  /* Hide scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.partners-carousel::-webkit-scrollbar {
  display: none;
}

.partner-logo {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  min-width: 160px;
  flex-shrink: 0;
}

.partner-logo:hover {
  transform: translateY(-8px);
  border-color: var(--primary-teal);
  box-shadow: 0 12px 32px rgba(29, 184, 156, 0.1);
}

.partner-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partner-logo:hover .partner-img {
  filter: grayscale(0%);
}

.logo-placeholder {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-teal), #0d9d7d);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.partner-logo p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
  font-weight: 500;
}

/* Portfolio Projects */
.portfolio-projects {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.portfolio-projects h2 {
  margin-bottom: 20px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.project-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-teal);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 31, 61, 0.12);
}

.project-image {
  width: 100%;
  height: 240px;
  background-color: var(--bg-light);
  overflow: hidden;
  position: relative;
}

.project-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-navy) 0%, #0d1929 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.project-icon {
  font-size: 64px;
}

.project-content {
  padding: 30px;
}

.project-tag {
  display: inline-block;
  background-color: var(--primary-teal);
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.project-content h3 {
  margin: 15px 0;
  color: var(--primary-navy);
}

.project-description {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-details {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: grid;
  gap: 12px;
}

.detail-item {
  font-size: 13px;
  color: var(--text-dark);
}

.detail-item strong {
  color: var(--primary-navy);
}

.project-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tech-tag {
  background-color: rgba(29, 184, 156, 0.15);
  color: var(--primary-teal);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.project-impact {
  border-top: 2px solid var(--border-color);
  padding-top: 20px;
}

.project-impact h4 {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--primary-navy);
}

.project-impact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-impact li {
  font-size: 13px;
  color: var(--text-light);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.5;
}

.project-impact li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-teal);
  font-weight: 700;
}

/* Project Metrics */
.project-metrics {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.project-metrics h2 {
  margin-bottom: 60px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.metric-card {
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(135deg, var(--primary-navy), #0d1929);
  color: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 31, 61, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-teal);
}

.metric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(29, 184, 156, 0.15);
}

.metric-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 10px;
}

.metric-label {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.metric-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* Portfolio CTA */
.portfolio-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-navy) 0%, #0d1929 100%);
  color: white;
  text-align: center;
}

.portfolio-cta h2 {
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

.portfolio-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.portfolio-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(29, 184, 156, 0.1);
}

.social-links a:hover {
  color: var(--primary-teal);
  background-color: rgba(29, 184, 156, 0.25);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* ===========================
   RESPONSIVE - ACADEMY & PORTFOLIO
   =========================== */
@media (max-width: 768px) {
  .academy-hero,
  .portfolio-hero {
    padding: 80px 0;
    min-height: auto;
  }

  .academy-hero h1,
  .portfolio-hero h1 {
    font-size: 36px;
  }

  .academy-tagline,
  .portfolio-tagline {
    font-size: 20px;
  }

  .academy-description,
  .portfolio-description {
    font-size: 16px;
  }

  .tabs-nav {
    gap: 15px;
    padding-bottom: 15px;
  }

  .tab-btn {
    padding: 10px 16px;
    font-size: 14px;
    margin-bottom: -18px;
  }

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

  .certification-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-members {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .carousel-wrapper {
    gap: 10px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .partners-carousel {
    gap: 20px;
  }

  .partner-logo {
    min-width: 140px;
    padding: 30px 20px;
    min-height: 160px;
  }

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

  .enrollment-box {
    padding: 40px 30px;
  }

  .portfolio-cta .cta-buttons {
    flex-direction: column;
  }

  .portfolio-cta .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .academy-hero,
  .portfolio-hero {
    padding: 60px 0;
  }

  .academy-hero h1,
  .portfolio-hero h1 {
    font-size: 28px;
  }

  .academy-tagline,
  .portfolio-tagline {
    font-size: 18px;
  }

  .tabs-nav {
    gap: 10px;
    flex-direction: column;
  }

  .tab-btn {
    width: 100%;
    justify-content: center;
    border-bottom: 3px solid transparent;
    margin-bottom: 0;
    padding: 12px 0;
    border-left: 4px solid transparent;
  }

  .tab-btn.active {
    border-bottom: none;
    border-left: 4px solid var(--primary-teal);
  }

  .team-members {
    grid-template-columns: 1fr;
  }

  .partners-carousel {
    grid-template-columns: 1fr;
  }

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

  .enrollment-steps {
    gap: 20px;
  }

  .curriculum-card,
  .cert-item,
  .team-card {
    padding: 25px 20px;
  }

  .project-image {
    height: 200px;
  }

  .enrollment-box {
    padding: 30px 20px;
  }

  .portfolio-cta p {
    font-size: 16px;
  }
}
