/* ============================================================
   ATHENURA main.css
   Base styles, navbar, modal, footer, shared utilities
   ============================================================ */


:root {
  --primary: #0ea5a4;
  --accent: #0ea5a4;
  --dark: #0f172a;
  --gray: #64748b;
  --light: #f1f5f9;
  --white: #ffffff;

  --bg: #f0fafa;
  --surface: #ffffff;
  --border: rgba(14, 165, 164, 0.13);
  --border-hover: rgba(14, 165, 164, 0.35);
  --text-primary: #062a2a;
  --text-secondary: #2d5a5a;
  --text-muted: #5a8888;
  --radius: 20px;
  --radius-sm: 12px;
  --teal-mid: #2a9db0;
  ;
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  min-height: 100vh;
  position: relative;
  margin: 0;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 15%, rgba(14, 165, 164, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 80%, rgba(14, 165, 164, 0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

body.modal-open {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

section {
  padding: 100px 80px;
  position: relative;
  z-index: 1;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--teal-mid);
  border-radius: 99px;
}

/* ═══════════════════════════════════════════
   NAVBAR - ELITE "WHITE FADED" DESIGN
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(14, 165, 164, 0.15);
}

.nav-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 25px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Default: hamburger hidden on desktop */
.hamburger {
  display: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 56px;
  transform: translateY(2px);
  transition: transform 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.03));
}

.logo:hover img {
  transform: translateY(2px) scale(1.04);
}

/* ── Text-Only Minimalist Links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  background: transparent !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0ea5a4;
}

/* Elegant expanding underline */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0ea5a4;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  opacity: 0;
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
  opacity: 1;
}

.apply-btn-mobile {
  display: none;
}

/* ── Premium "Faded" CTA Button ── */
.apply-btn {
  background: rgba(14, 165, 164, 0.08);
  color: #0b9090;
  border: 1px solid rgba(14, 165, 164, 0.2);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: var(--primary, #0ea5a4);
  /* Solid teal on hover */
  color: #ffffff;
  border-color: var(--primary, #0ea5a4);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 164, 0.25);
}

.nav-backdrop {
  display: none;
}

/* ═══════════════════════════════════════════
   MODAL BACKDROP
═══════════════════════════════════════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 42, 42, 0.45);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* ═══════════════════════════════════════════
   MODAL
═══════════════════════════════════════════ */
@keyframes modalSlideIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -42%) scale(0.88) rotateX(8deg);
    filter: blur(6px);
  }

  60% {
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -42%) scale(1) rotateX(0);
    filter: blur(0);
  }
}

@keyframes modalHeaderReveal {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalDescReveal {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moduleItemReveal {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tagsPop {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(8px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes applyBtnReveal {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shimmerLine {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

@keyframes borderGlow {

  0%,
  100% {
    box-shadow: 0 30px 80px rgba(14, 165, 164, 0.16), 0 4px 24px rgba(0, 0, 0, 0.07);
  }

  50% {
    box-shadow: 0 30px 80px rgba(14, 165, 164, 0.32), 0 4px 24px rgba(0, 0, 0, 0.10);
  }
}

@keyframes titleShimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.93);
  width: min(600px, 93vw);
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  border-radius: 28px;
  border: 1.5px solid rgba(14, 165, 164, 0.22);
  box-shadow: 0 30px 80px rgba(14, 165, 164, 0.16), 0 4px 24px rgba(0, 0, 0, 0.07);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  padding: 24px 28px 22px;
  perspective: 1000px;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  animation: modalSlideIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    borderGlow 3s ease-in-out 0.8s infinite;
}

.modal.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: shimmerLine 0.8s ease 0.3s 1 forwards;
  pointer-events: none;
  z-index: 100;
  border-radius: 28px;
}

.modal.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--modal-accent, #0ea5a4), transparent, var(--modal-accent, #0ea5a4));
  border-radius: 28px 28px 0 0;
  animation: applyBtnReveal 0.4s ease 0.5s both;
}

.modal::-webkit-scrollbar {
  width: 4px;
}

.modal::-webkit-scrollbar-thumb {
  background: rgba(14, 165, 164, 0.2);
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(14, 165, 164, 0.3);
  background: #fff;
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 8px rgba(14, 165, 164, 0.1);
  z-index: 10;
}

.modal-close svg {
  width: 14px;
  height: 14px;
}

.modal-close:hover {
  background: var(--accent);
  color: #fff;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 16px rgba(14, 165, 164, 0.35);
}

.modal.active .m-header {
  animation: modalHeaderReveal 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.modal.active .m-desc {
  animation: modalDescReveal 0.4s ease 0.3s both;
}

.modal.active .m-modules {
  animation: modalDescReveal 0.4s ease 0.38s both;
}

.modal.active .m-module-list li:nth-child(1) {
  animation: moduleItemReveal 0.4s ease 0.42s both;
}

.modal.active .m-module-list li:nth-child(2) {
  animation: moduleItemReveal 0.4s ease 0.48s both;
}

.modal.active .m-module-list li:nth-child(3) {
  animation: moduleItemReveal 0.4s ease 0.54s both;
}

.modal.active .m-module-list li:nth-child(4) {
  animation: moduleItemReveal 0.4s ease 0.60s both;
}

.modal.active .m-module-list li:nth-child(5) {
  animation: moduleItemReveal 0.4s ease 0.66s both;
}

.modal.active .m-module-list li:nth-child(6) {
  animation: moduleItemReveal 0.4s ease 0.72s both;
}

.modal.active .m-tags {
  animation: tagsPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.72s both;
}

.modal.active .m-apply {
  animation: applyBtnReveal 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}

.modal.active .m-icon {
  animation: tagsPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

.m-header {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 13px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border);
}

.m-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.m-icon:hover {
  transform: scale(1.1) rotate(-5deg);
}

.m-icon svg {
  width: 22px;
  height: 22px;
}

.m-cat {
  font-family: var(--font-mono);
  font-size: 0.60rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 4px;
}

.m-cat.tech {
  background: rgba(14, 165, 164, 0.1);
  color: #0a7070;
  border: 1px solid rgba(14, 165, 164, 0.2);
}

.m-cat.design {
  background: rgba(192, 132, 252, 0.1);
  color: #7e22ce;
  border: 1px solid rgba(192, 132, 252, 0.22);
}

.m-cat.marketing {
  background: rgba(251, 146, 60, 0.1);
  color: #c2410c;
  border: 1px solid rgba(251, 146, 60, 0.22);
}

.m-cat.business {
  background: rgba(234, 179, 8, 0.1);
  color: #854d0e;
  border: 1px solid rgba(234, 179, 8, 0.22);
}

.m-title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 3px;
  background: linear-gradient(90deg, #062a2a 0%, #062a2a 30%, #0ea5a4 45%, #34d399 55%, #062a2a 70%, #062a2a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 3s linear 0.8s 1 forwards;
}

.m-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}

.m-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 13px;
  padding: 11px 14px;
  background: rgba(14, 165, 164, 0.035);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
}

.m-modules {
  margin-bottom: 0;
}

.m-section-label {
  font-family: var(--font-mono);
  font-size: 0.60rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.m-module-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 13px;
}

.m-module-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  background: rgba(14, 165, 164, 0.04);
  border: 1px solid rgba(14, 165, 164, 0.1);
  border-radius: 9px;
  padding: 8px 12px;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.m-module-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--modal-accent, #0ea5a4);
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.m-module-list li:hover {
  background: rgba(14, 165, 164, 0.09);
  border-color: rgba(14, 165, 164, 0.28);
  transform: translateX(5px);
}

.m-module-list li:hover::before {
  transform: scaleY(1);
}

.m-arrow {
  font-size: 0.65rem;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.m-module-list li:hover .m-arrow {
  transform: translateX(3px);
}

.m-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.m-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  background: rgba(14, 165, 164, 0.06);
  border: 1px solid rgba(14, 165, 164, 0.14);
  padding: 4px 11px;
  border-radius: 6px;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}

.m-tag:hover {
  background: rgba(14, 165, 164, 0.14);
  border-color: rgba(14, 165, 164, 0.35);
  color: var(--accent);
  transform: translateY(-2px) scale(1.05);
}

.m-apply {
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 100px;
  color: #fff;
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(14, 165, 164, 0.3);
}

.m-apply::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 100px;
}

.m-apply:hover {
  opacity: 0.92;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 32px rgba(14, 165, 164, 0.42);
}

.m-apply:hover::before {
  transform: scaleX(1);
}

.m-apply:active {
  transform: translateY(0) scale(0.98);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.athenura-footer {
  background: #0ea5a4;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  padding-top: 60px;
  margin-top: 0;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 60px 80px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr 1.6fr;
  gap: 50px;
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 18px;
  display: block;
}

.branding p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  max-width: 230px;
}

.follow-us-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-links a:nth-child(1) {
  color: #0A66C2;
}

.social-links a:nth-child(2) {
  color: #E1306C;
}

.social-links a:nth-child(3) {
  color: #1DA1F2;
}

.social-links a:nth-child(4) {
  color: black;
}

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

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  display: inline-block;
  transition: all 0.25s;
}

.footer-col ul li a:hover {
  color: #d6f1f3;
  transform: translateX(4px);
  text-decoration: underline;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.white-circle {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}

.white-circle svg {
  width: 15px;
  height: 20px;
  display: block;
}

.email-icon {
  color: #e11d48;
}

.phone-icon {
  color: #22c55e;
}

.info-text {
  line-height: 1.4;
}

.info-text span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

.info-text a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.info-row:hover a {
  text-decoration: underline;
  cursor: pointer;
}

.info-row:hover .white-circle {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-col iframe {
  width: 100%;
  height: 160px;
  border: none;
  border-radius: 10px;
  display: block;
  margin-top: 4px;
}

.address {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}

.address::before {
  content: "📍";
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom-bar {
  padding: 0;
}

.bottom-content {
  max-width: 1400px;
  margin: auto;
  padding: 30px 60px 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.bottom-content p a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.25s;
}

.bottom-content p a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
}

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #1a7a8a 0%, #0f5f6e 50%, #0a4a58 100%);
  padding: 56px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: #fff;
}

.cta-section::before {
  width: 300px;
  height: 300px;
  top: -100px;
  right: 200px;
}

.cta-section::after {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: 100px;
}

.cta-text {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.cta-btn {
  position: relative;
  z-index: 1;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  text-decoration: none;
}

.cta-btn:hover {
  background: #fff;
  color: #1a7a8a;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   FIXED: Mobile Navigation 
 ═══════════════════════════════════════════ */
@media (max-width: 768px) {

  .nav-container {
    padding: 0 20px;
    height: 64px;
  }

  .logo img {
    height: 48px;
  }

  /* ── Styled Solid Drawer ── */
  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    border-left: 4px solid #0ea5a4;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 40px 40px;
    z-index: 3000;
    gap: 30px;
    transition: right 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    overflow: hidden;
    pointer-events: all;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    right: 0;
  }

  /* ── Refined Navigation Links ── */
  .nav-links a {
    font-size: 2.2rem;
    font-weight: 800;
    padding: 10px 0;
    width: 100%;
    text-align: left;
    color: #0f172a;
    background: transparent !important;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    border-bottom: none !important;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #0ea5a4;
  }

  .nav-links a.active::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #0ea5a4;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(14, 165, 164, 0.5);
  }

  .nav-links a::after {
    display: none !important;
  }

  /* ── Styled Apply Button ── */
  .apply-btn-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5a4 0%, #2dd4bf 100%) !important;
    border: none;
    padding: 18px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin-top: 20px;
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(14, 165, 164, 0.3);
    transition: all 0.3s ease !important;
  }

  .apply-btn-mobile:active {
    transform: scale(0.97);
  }

  /* Instant appearance for links (animations removed as per user preference) */
  .nav-links.open a,
  .nav-links.open .apply-btn-mobile {
    opacity: 1;
    transform: none;
  }

  .nav-links a::after {
    display: none !important;
  }

  .nav-links.open a:nth-child(1) {
    animation-delay: 0.15s;
  }

  .nav-links.open a:nth-child(2) {
    animation-delay: 0.22s;
  }

  .nav-links.open a:nth-child(3) {
    animation-delay: 0.29s;
  }

  .nav-links.open a:nth-child(4) {
    animation-delay: 0.36s;
  }

  .nav-links.open a:nth-child(5) {
    animation-delay: 0.43s;
  }

  .nav-links.open .apply-btn-mobile {
    animation-delay: 0.55s;
  }

  @keyframes drawerItemReveal {
    to {
      opacity: 1;
      transform: translate(0, 0);
    }
  }

  /* ── Hamburger Icon Refinement ── */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 3100;
    position: relative;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1e293b;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
  }

  .hamburger span:nth-child(1) {
    transform: translateY(-7px);
  }

  .hamburger span:nth-child(2) {
    transform: translateY(0);
  }

  .hamburger span:nth-child(3) {
    transform: translateY(7px);
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
    background: #0ea5a4;
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scale(0.2);
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
    background: #0ea5a4;
  }

  /* ── UI Backdrop ── */
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 2500;
  }

  .nav-backdrop.visible {
    display: block;
  }

  .apply-btn {
    display: none !important;
  }

  .navbar {
    animation: navFadeDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
  }

  @keyframes navFadeDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Layout preserving */
  section {
    padding: 60px 20px;
  }

  .cta-section {
    padding: 40px 30px;
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 24px 60px;
  }

  .bottom-content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 20px 24px 40px;
  }

  .modal {
    padding: 24px 18px;
  }
}

@media (max-width:1200px) {
  .footer-container {
    grid-template-columns: 1.4fr 1fr 1.2fr 1.1fr 1.4fr;
    gap: 36px;
    padding: 0 40px 70px;
  }

  .bottom-content {
    padding: 18px 40px 44px;
  }
}

@media (max-width:480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px 50px;
  }

  .bottom-content {
    padding: 14px 20px 36px;
  }

  .legal-links {
    gap: 16px;
  }

  .legal-links a {
    font-size: 13px;
  }
}


/* ============================================================
   ATHENURA home.css (page-specific styles)
   ============================================================ */

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  margin-top: 72px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background: #0b1a2e;
  text-align: left;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://fal.media/files/panda/iPmCXuViyAOu3JLEnD-dD_08054fb45f2e417681fc3254360253e8.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: heroBgZoom 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero:hover .hero-bg-img {
  transform: scale(1.07);
  transition: transform 10s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 3;
}

.hero-text {
  position: relative;
  text: var(--accent);
  z-index: 10;
  padding: 90px 44px 90px 72px;
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6ee7e7;
  margin-bottom: 26px;
  width: fit-content;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.hero-title {
  font-size: clamp(2.8rem, 4.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.30s forwards;
  text-align: left;
}

.hero-accent {
  background: linear-gradient(135deg, #0dcfce, #38bdf8) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.hero-desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: #11e7e7;
}

.stat-label {
  font-size: 0.78rem;
  color: #fff;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.16);
  flex-shrink: 0;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

.btn-primary {
  padding: 14px 32px;
  background: #0ea5a4;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 22px rgba(14, 165, 164, 0.48);
}

.btn-primary:hover {
  background: #0b9090;
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.78s forwards;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: #fff;
  font-weight: 500;
}

.trust-item svg {
  width: 14px;
  height: 14px;
  stroke: #0dcfce;
  flex-shrink: 0;
}

.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.hero-right {
  position: relative;
  width: 50%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  flex-shrink: 0;
  overflow: hidden;
}

.hero-img-frame {
  position: relative;
  width: 600px;
  height: 400px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45), 0 0 0 3px rgba(255, 255, 255, 0.12), 0 0 0 5px rgba(14, 165, 164, 0.18);
  z-index: 4;
  opacity: 0;
  animation: heroSlideLeft 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-img-frame:hover .hero-img {
  transform: scale(1.05);
}

.hero-img-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 2s ease 0.6s 1 forwards;
  pointer-events: none;
}

.hero-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 165, 164, 0.08) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 22px;
}

.htag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 100px;
  padding: 11px 20px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
  transition: all 0.3s;
  cursor: default;
  z-index: 6;
  opacity: 0;
}

.htag:hover {
  background: rgba(14, 165, 164, 0.28);
  transform: translateY(-3px) scale(1.05) !important;
}

.htag svg {
  width: 15px;
  height: 15px;
  stroke: #6ee7e7;
  flex-shrink: 0;
}

.htag-1 {
  top: 12%;
  left: 4%;
  animation: heroPopIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.60s forwards, floatY 3.8s ease-in-out 1.2s infinite;
}

.htag-2 {
  bottom: 16%;
  left: 3%;
  animation: heroPopIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.70s forwards, floatY 4.2s ease-in-out 0.8s infinite;
}

.htag-3 {
  top: 10%;
  right: 3%;
  animation: heroPopIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.65s forwards, floatY 3.5s ease-in-out 1.6s infinite;
}

.htag-4 {
  bottom: 22%;
  right: 2%;
  animation: heroPopIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.75s forwards, floatY 4.5s ease-in-out 1.0s infinite;
}

.lang-icon {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
  display: grid;
  place-items: center;
  padding: 8px;
  z-index: 5;
  cursor: default;
  opacity: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.lang-icon:hover {
  transform: translateY(-7px) scale(1.18) !important;
}

.lang-icon svg {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.lang-py {
  top: 28%;
  left: 5%;
  animation: heroPopIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.80s forwards, floatOrbit1 5s ease-in-out 1.5s infinite;
}

.lang-js {
  top: 4%;
  left: 40%;
  animation: heroPopIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.88s forwards, floatOrbit2 4.5s ease-in-out 1.0s infinite;
}

.lang-cpp {
  bottom: 25%;
  left: 8%;
  animation: heroPopIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 0.95s forwards, floatOrbit3 5.5s ease-in-out 0.6s infinite;
}

.lang-react {
  top: 4%;
  right: 12%;
  animation: heroPopIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 1.02s forwards, floatOrbit4 4.8s ease-in-out 1.2s infinite;
}

.lang-node {
  bottom: 10%;
  right: 20%;
  animation: heroPopIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 1.08s forwards, floatOrbit2 5.2s ease-in-out 0.8s infinite;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSlideLeft {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes heroPopIn {
  from {
    opacity: 0;
    transform: scale(0.70) translateY(12px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes heroBgZoom {
  from {
    transform: scale(1.10);
    opacity: 0.6;
  }

  to {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
    opacity: 1;
  }

  100% {
    background-position: -200% 0;
    opacity: 0;
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatOrbit1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(4px, -8px);
  }

  66% {
    transform: translate(-3px, -5px);
  }
}

@keyframes floatOrbit2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(-5px, -7px);
  }

  66% {
    transform: translate(3px, -10px);
  }
}

@keyframes floatOrbit3 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(6px, -6px);
  }

  66% {
    transform: translate(-2px, -9px);
  }
}

@keyframes floatOrbit4 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(-4px, -10px);
  }

  66% {
    transform: translate(5px, -5px);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

/* ═══════════════════════════════════════════
   WHY INTERN WITH US
═══════════════════════════════════════════ */
.why {
  background: linear-gradient(180deg, #eef6f7, #ffffff);
  padding: 90px 80px;
}

.why h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2B2B2B;
  margin-bottom: 14px;
}

.why h2 span {
  background: linear-gradient(90deg, #2F7F83, #8FBFC3);
  -webkit-background-clip: text;
  text-align: left;
  -webkit-text-fill-color: transparent;
}

.why .subtitle {
  color: #6B7280;
  font-size: 18px;
  text-align: left;
  margin-top: 12px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px auto 0;
}

.why-card {
  background: #fff;
  border: 1px solid #E6ECF0;
  border-radius: 10px;
  padding: 30px 50px 50px;
  text-align: left;
  transition: 0.25s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-card:nth-child(1) .icon-box,
.why-card:nth-child(2) .icon-box,
.why-card:nth-child(4) .icon-box,
.why-card:nth-child(5) .icon-box {
  background: rgba(45, 166, 163, 0.15);
  color: #2DA6A3;
}

.why-card:nth-child(3) .icon-box,
.why-card:nth-child(6) .icon-box {
  background: rgba(244, 162, 97, 0.18);
  color: #F4A261;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
  text-align: left;
}

.why-card p {
  color: #6B7280;
  line-height: 1.6;
  font-size: 15px;
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about {
  background: linear-gradient(160deg, #000000 0%, #0a5b5b 50%, #2e73a7 100%);
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 164, 0.12), transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.about::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 164, 0.08), transparent 70%);
  bottom: -80px;
  left: 5%;
  pointer-events: none;
}

.about-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 164, 0.12);
  border: 1px solid rgba(14, 165, 164, 0.28);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5ee6e6;
  margin-bottom: 20px;
  width: fit-content;
}

.about-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
}

.about-left h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.about-left h2 span {
  background: linear-gradient(90deg, #19caca, #5ee6e6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-left>p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  font-size: 1rem;
  max-width: 400px;
  margin-bottom: 36px;
}

.about-stat-row {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  border: 1px solid rgba(14, 165, 164, 0.2);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(14, 165, 164, 0.06);
  width: fit-content;
}

.about-stat-item {
  padding: 18px 28px;
  text-align: center;
  border-right: 1px solid rgba(14, 165, 164, 0.15);
}

.about-stat-item:last-child {
  border-right: none;
}

.about-stat-num {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: #0ea5a4;
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.about-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5ee6e6;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}

.about-cta-link svg {
  width: 16px;
  height: 16px;
  stroke: #5ee6e6;
  transition: transform 0.2s;
}

.about-cta-link:hover {
  gap: 12px;
}

.about-cta-link:hover svg {
  transform: translateX(3px);
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(18, 178, 178, 0.651);
  border-radius: 18px;
  padding: 28px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  cursor: default;
}

.about-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0ea5a4, #5ee6e6);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.3s;
}

.about-box:hover {
  background: rgba(14, 165, 164, 0.08);
  border-color: rgba(14, 165, 164, 0.35);
  transform: translateX(6px);
}

.about-box:hover::before {
  opacity: 1;
}

.about-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.about-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(14, 165, 164, 0.15);
  border: 1px solid rgba(14, 165, 164, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-icon {
  width: 20px;
  height: 20px;
  stroke: #0ea5a4;
  fill: none;
  stroke-width: 1.8;
}

.about-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.about-box p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  font-size: 0.9rem;
}

.about-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-box li {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}

.about-box li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0ea5a4;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(14, 165, 164, 0.5);
}

@media(max-width:768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-stat-row {
    width: 100%;
  }

  .about-stat-item {
    flex: 1;
    padding: 14px 16px;
  }
}

/* ═══════════════════════════════════════════
   CARDS / TRACK SECTION
═══════════════════════════════════════════ */
.domain-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 100px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 14px;
  padding-top: 72px;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 12px;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.72;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: visible;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 14px rgba(14, 165, 164, 0.06);
  transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.3s, border-color 0.3s;
  transform: translateY(22px);
  cursor: pointer;
  position: relative;
}

.card.visible {
  animation: cardReveal 0.5s ease var(--delay, 0s) both;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(14, 165, 164, 0.14);
  border-color: var(--border-hover);
}

.card.blurred {
  filter: blur(3px);
  opacity: 0.3;
  pointer-events: none;
  transform: scale(0.98) !important;
}

.card-inner-clip {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.card-inner-clip::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ic, #0ea5a4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1);
  z-index: 10;
}

.card:hover .card-inner-clip::after {
  transform: scaleX(1);
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-banner {
  height: 130px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 16px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(14, 165, 164, 0.25);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--accent);
  position: absolute;
  top: 16px;
  left: 16px;
  transition: transform 0.3s;
  z-index: 1;
}

.card:hover .card-icon-box {
  transform: scale(1.06) rotate(-3deg);
}

.card-icon-box svg {
  width: 22px;
  height: 22px;
}

.badge-pill {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(14, 165, 164, 0.14);
  color: #0a7070;
  border: 1px solid rgba(14, 165, 164, 0.25);
  width: fit-content;
  position: relative;
  z-index: 1;
}

.card[data-popular] .card-banner::before {
  content: 'POPULAR';
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-muted);
  border: 1px solid rgba(0, 0, 0, 0.08);
  width: auto;
  height: auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-body {
  padding: 20px 20px 18px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.card-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-info-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.card-meta-left,
.card-meta-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-meta-right {
  align-items: flex-end;
}

.info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.info-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.info-item.certified {
  color: var(--accent);
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.btn-view-detail {
  flex: 1;
  padding: 10px 14px;
  background: transparent;
  border: 1.5px solid var(--border-hover);
  border-radius: 100px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-view-detail:hover {
  background: rgba(14, 165, 164, 0.07);
  border-color: var(--accent);
}

.btn-apply-now {
  flex: 1;
  padding: 10px 14px;
  background: var(--accent);
  border: none;
  border-radius: 100px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 3px 12px rgba(14, 165, 164, 0.28);
}

.btn-apply-now:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(14, 165, 164, 0.36);
}

.explore-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 52px;
  padding-bottom: 20px;
}

.explore-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.explore-count strong {
  color: var(--accent);
}

.explore-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 100px;
  border: 1.5px solid var(--border-hover);
  background: #fff;
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.28s ease;
  box-shadow: 0 2px 14px rgba(14, 165, 164, 0.10);
  position: relative;
  overflow: hidden;
}

.explore-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
  border-radius: 100px;
  z-index: 0;
}

.explore-cta span,
.explore-cta svg {
  position: relative;
  z-index: 1;
}

.explore-cta svg {
  width: 17px;
  height: 17px;
  transition: transform 0.25s ease;
}

.explore-cta:hover::before {
  transform: scaleX(1);
}

.explore-cta:hover {
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(14, 165, 164, 0.32);
}

.explore-cta:hover svg {
  transform: translateX(5px);
  stroke: #fff;
}

/* ═══════════════════════════════════════════
   APART SECTION
═══════════════════════════════════════════ */
.apart-section {
  padding: 80px 80px;
  background: #fff;
}

.container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 90px;
}

.apart-image img {
  width: 700px;
  height: 450px;
  border-radius: 16px;
  box-shadow: 0 12px 20px -8px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s, box-shadow 0.4s;
}

.apart-image img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.apart-content h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #0a192f;
}

.apart-content h2 span {
  color: var(--primary);
}

.feature {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.apart-icon {
  background: #eea273;
  color: white;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

.feature h4 {
  margin: 0;
  font-size: 18px;
}

.feature p {
  margin: 5px 0 0;
  color: #666;
}

/* ═══════════════════════════════════════════
   ROADMAP
═══════════════════════════════════════════ */
.roadmap {
  width: 100%;
  text-align: center;
  padding: 90px 6vw;
  background: #eef1f4;
}

.roadmap h2 {
  font-size: 40px;
  color: #0a192f;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: -14px;
}

.roadmap h2 span {
  background: linear-gradient(90deg, #2F7F83, #8FBFC3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: #6b7a90;
  margin-bottom: 80px;
  font-size: 18px;
}

.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  width: 90%;
  height: 2px;
  background: #c8d4da;
  z-index: 0;
}

.step {
  width: 160px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #1f6f78;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(31, 138, 138, 0.4);
  transition: 0.3s;
}

.step.active .circle {
  background: #eea273;
  box-shadow: 0 6px 20px rgba(245, 155, 108, 0.4);
}

.step h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: #0a192f;
}

.step p {
  margin-top: 6px;
  font-size: 13px;
  color: #6b7a90;
  line-height: 1.5;
}

.step:hover .circle {
  transform: scale(1.1);
}


/* ═══════════════════════════════════════════
Projects Section
═══════════════════════════════════════════ */

/* ─────────────────────────────────────────
   FEATURED PROJECTS ELITE RESPONSIVE DESIGN
───────────────────────────────────────── */
.featured-projects-section {
  margin: 0 auto;
  padding: 0 40px 100px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 14px;
  padding-top: 72px;
}

.sections-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 12px;
}

.sections-title span {
  color: var(--accent);
}

.sections-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.72;
}


.featured-projects-section {
  margin: 0 auto;
  padding: 0 40px 100px;
  position: relative;
  z-index: 1;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Card */
.featured-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(45, 125, 132, 0.22);
}

/* Photo container same as card-media */
.f-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border-radius: 20px;
}

.f-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Overlay same as card-overlay */
.f-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(14, 165, 164, 0.92) 0%,
      rgba(14, 165, 164, 0.65) 5%,
      rgba(20, 184, 166, 0.25) 20%,
      transparent 72%);
  opacity: 0;
  transition: opacity 0.42s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.featured-card:hover .f-overlay {
  opacity: 1;
}

/* Center icon */
.f-overlay-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
  opacity: 0;
  margin-top: 80px;
  transform: scale(0.72) translateY(8px);
  transition: opacity 0.4s ease 0.06s,
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0.06s,
    background 0.25s ease;
}

.featured-card:hover .f-overlay-icon {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.f-overlay-icon:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: #ffffff;
  transform: scale(1.1) translateY(0) !important;
}

.f-overlay-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  flex-shrink: 0;
}

/* Bottom name same as overlay-bottom */
.f-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.42s ease 0.09s,
    transform 0.42s cubic-bezier(0.23, 1, 0.32, 1) 0.09s;
}

.featured-card:hover .f-overlay-bottom {
  opacity: 1;
  transform: translateY(0);
}

.f-overlay-category {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.f-overlay-name {
  font-size: 1.15rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Explore footer */
.explore-footer {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.f-count-text {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.f-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  border-radius: 100px;
  background: white;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(14, 165, 164, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.f-explore-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.f-explore-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(14, 165, 164, 0.2);
}

.f-explore-btn:hover svg {
  transform: translateX(4px);
  stroke: white;
}

/* ═══════════════════════════════════════════
   CREDENTIALS
═══════════════════════════════════════════ */
.credentials-section {
  padding: 40px 0;
  background: #f4f7f9;
}

.credentials-container {
  width: 1400px;
  margin: auto;
  background: #e9eef2;
  border-radius: 22px;
  padding: 100px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.credentials-left h2 {
  font-size: 38px;
  color: #1f2d3d;
  margin-bottom: 18px;
  margin-top: -10px;
}

.credentials-left h2 span {
  color: var(--primary);
}

.credentials-left p {
  color: #6c7a89;
  max-width: 420px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.credentials-list {
  list-style: none;
  padding: 0;
}

.credentials-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #2b7a78;
  font-weight: 600;
}

.circle-icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-icon svg {
  width: 20px;
  height: 20px;
  color: #2b7a78;
}

.credentials-right {
  perspective: 900px;
}

.tilt-card {
  background: white;
  padding: 10px;
  border-radius: 10px;
  transform: rotate(-2deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.inner-card {
  background: #78a8a2;
  border-radius: 10px;
  padding: 90px;
}

.inner-card img {
  width: 450px;
  height: 320px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  display: block;
  transform: rotate(-1deg);
}

/* Certificate preview */
.cert-preview {
  width: 100%;
  max-width: 900px;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  margin: auto;
  border-radius: 10px;
}

/* Make modal feel like lightbox */
.modal {
  background: rgba(252, 252, 252, 0.9);
  /* override white */
  padding: 40px 20px;
}

/* Remove scroll weirdness */
.modalInner {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS Pure CSS Infinite Scroll
   (replaces old JS slider)
═══════════════════════════════════════════ */
.testimonials-section {
  background: #F3F6F8;
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 40px;
}

.testimonials-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  margin-top: -50px;
}

.testimonials-header h2 span {
  background: linear-gradient(90deg, #2F7F83, #8FBFC3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials-subtitle {
  font-size: 1rem;
  color: #6B7280;
  max-width: 480px;
  margin: 0 auto;
}

/* ── Outer wrapper clips track, fades edges ── */
.testimonials-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0 16px;
}

/* Fade-out left & right edges */
.testimonials-slider-wrap::before,
.testimonials-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.testimonials-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, #F3F6F8 15%, transparent);
}

.testimonials-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, #F3F6F8 15%, transparent);
}

/* ── Track outer just a passthrough ── */
.testimonials-track-outer {
  overflow: visible;
  width: 100%;
}

/* ── The scrolling track ── */
.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testimonialsScroll 36s linear infinite;
  will-change: transform;
  align-items: stretch;
}

/* Pause on hover */
.testimonials-slider-wrap:hover .testimonials-track {
  animation-play-state: paused;
}

/* Scrolls exactly 50% your 5 originals + 5 duplicates = seamless loop */
@keyframes testimonialsScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Individual card ── */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px;
  width: 360px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(14, 165, 164, 0.10);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
  border-color: rgba(14, 165, 164, 0.28);
}

.stars {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.star {
  width: 20px;
  height: 20px;
  fill: #d1d5db;
}

.star.full {
  fill: #ff8c42;
}

.testimonial-text {
  color: #5c6b7a;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}

.profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.profile img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(14, 165, 164, 0.2);
}

.profile h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #1e2a38;
}

.profile span {
  font-size: 13px;
  color: #8b97a5;
}

/* Hide old nav buttons and dots no longer needed */
.tslider-btn {
  display: none !important;
}

.testimonials-dots {
  display: none !important;
}

/* ═══════════════════════════════════════════
   PARTNERSHIPS
═══════════════════════════════════════════ */
.partnerships {
  background: var(--light);
  padding: 0;
}

.partnerships-inner {
  padding: 80px 80px 60px;
}

.partnerships-inner h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f2d3d;
  text-align: center;
  margin-bottom: 14px;
  margin-top: -50px;
}

.partnerships-inner h2 span {
  background: linear-gradient(90deg, #2F7F83, #8FBFC3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partnerships-subtitle {
  text-align: center;
  color: #6c7a89;
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto 52px;
  line-height: 1.6;
}

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

.p-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(14, 165, 164, 0.10);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s;
}

.p-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10);
  border-color: rgba(14, 165, 164, 0.25);
}

.p-card svg {
  width: 32px;
  height: 32px;
  color: #2b7a78;
  flex-shrink: 0;
}

.p-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1f2d3d;
  margin: 0;
}

.p-card p {
  font-size: 14px;
  color: #6c7a89;
  line-height: 1.6;
  margin: 0;
}

.tpo-text {
  text-align: center;
  color: #6c7a89;
  font-size: 15px;
  margin-top: 20px;
}

.tpo-text a {
  color: #2b7a78;
  text-decoration: none;
  font-weight: 600;
}

.tpo-text a:hover {
  text-decoration: underline;
}

.partner-logos-section {
  background: #e8f4f4;
  padding: 36px 0 40px;
  overflow: hidden;
  margin-bottom: 60px;
}

.logos-label {
  text-align: center;
  font-size: 0.82rem;
  color: #7a9898;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 600;
}

.logos-track-outer {
  overflow: hidden;
  position: relative;
}

.logos-track-outer::before,
.logos-track-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logos-track-outer::before {
  left: 0;
  background: linear-gradient(to right, #e8f4f4, transparent);
}

.logos-track-outer::after {
  right: 0;
  background: linear-gradient(to left, #e8f4f4, transparent);
}

.logos-track {
  display: flex;
  gap: 0;
  animation: infiniteScroll 28s linear infinite;
  width: max-content;
}

.logos-track:hover {
  animation-play-state: paused;
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  margin: 0 8px;
  background: #fff;
  border-radius: 100px;
  border: 1px solid rgba(14, 165, 164, 0.15);
  font-size: 0.88rem;
  font-weight: 600;
  color: #2d5a5a;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: border-color 0.25s, box-shadow 0.25s;
  flex-shrink: 0;
}

.logo-item:hover {
  border-color: rgba(14, 165, 164, 0.4);
  box-shadow: 0 4px 16px rgba(14, 165, 164, 0.15);
  color: var(--primary);
}


/* ── FULL RESPONSIVITY ── */

@media (max-width: 1100px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .featured-projects-section {
    padding: 80px 24px;
  }

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

  .f-card-image {
    height: 260px;
  }

  .section-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .section-subtitle {
    text-align: center;
  }

  .f-explore-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .featured-projects-section {
    padding: 60px 16px;
  }

  .f-card-content {
    padding: 20px;
  }

  .f-card-image {
    height: 200px;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width:1100px) {
  .hero-text {
    width: 54%;
    padding: 60px 30px 60px 44px;
  }

  .hero-right {
    width: 46%;
  }

  .hero-img-frame {
    width: 340px;
    height: 240px;
  }

  .credentials-container {
    width: 100%;
  }
}

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

@media (max-width:900px) {
  .apart-section {
    padding: 60px 20px;
  }

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

  .apart-image img {
    width: 100%;
    height: 220px;
  }
}

@media (max-width: 768px) {

  /* Hero Layout Adjustments */
  .hero {
    flex-direction: column;
    min-height: auto;
    position: relative;
    padding-bottom: 0;
  }

  .hero-text {
    width: 100%;
    padding: 70px 24px 40px;
    text-align: center;
    align-items: center;
    z-index: 10;
    /* Ensures text is in front of icons */
    position: relative;
  }

  .hero-badge {
    margin: 0 auto 26px;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .trust-dot {
    display: none;
  }

  /* 1. Hero Image & Background Icons Layering */
  .hero-img-frame {
    display: none !important;
  }

  /* Deletes the main image */

  .hero-right {
    position: absolute;
    /* Moves the icon container behind the main area */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Sits behind hero-text */
    pointer-events: none;
    /* Prevents icons from blocking button clicks */
    overflow: hidden;
  }

  .lang-icon,
  .htag {
    filter: blur(8px);
    /* Blurs the background icons */
    opacity: 0.5;
    z-index: -1;
  }

  /* 2. Why Us Section - Icons blurred behind card text */
  .why {
    padding: 60px 20px;
  }

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

  .why-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
  }

  .icon-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(10px);
    z-index: 0;
    opacity: 0.3;
  }

  .why-card h3,
  .why-card p {
    position: relative;
    z-index: 2;
  }

  /* Layout & Section Fixes */
  .domain-section {
    padding: 0 20px 60px;
  }

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

  .roadmap {
    padding: 60px 20px;
  }

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

  .timeline::before {
    display: none;
  }

  .step {
    width: 200px;
  }

  .craft-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .craft-card {
    width: 100%;
    height: 200px;
  }

  .credentials-container {
    flex-direction: column;
    padding: 40px 24px;
    gap: 40px;
  }

  .tilt-card {
    transform: rotate(0);
  }

  .inner-card {
    padding: 30px;
  }

  .inner-card img {
    width: 100%;
    height: auto;
  }

  /* Testimonials & Footer */
  .testimonials-section {
    padding: 60px 0 50px;
  }

  .testimonials-header {
    padding: 0 20px;
  }

  .testimonial-card {
    width: 280px;
    padding: 20px 18px;
  }

  .testimonials-track {
    gap: 16px;
    animation-duration: 26s;
  }

  .partnerships-inner {
    padding: 60px 20px 40px;
  }

  .partner-cards-grid {
    grid-template-columns: 1fr;
  }

  .partnerships-inner h2 {
    font-size: 1.8rem;
  }
}

@media (max-width:480px) {
  .hero-text {
    padding: 60px 20px 30px;
    align-items: center;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  /* CHANGED: was flex-direction:column now row so buttons stay side by side */
  .hero-btns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    flex: 1;
    /* equal width */
    white-space: nowrap;
    /* STOP text breaking */
    font-size: 0.8rem;
    /* slightly smaller */
    padding: 12px 30px;
    /* tighter padding */
  }

  .hero-right {
    min-height: 500px;
  }

  .hero-img-frame {
    width: 250px;
    height: 178px;
  }

  .lang-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

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

  .card-actions {
    flex-direction: column;
  }

  .testimonials-header h2 {
    font-size: 1.9rem;
  }

  .testimonial-card {
    width: 240px;
    padding: 18px 16px;
  }

  .testimonials-track {
    gap: 14px;
    animation-duration: 22s;
  }

  .intern-craft {
    padding: 50px 16px;
  }

  .craft-container {
    grid-template-columns: 1fr;
  }

  .craft-card {
    height: 240px;
    width: 100%;
  }
}





/* ═══════════════════════════════════════════
   FEATURED PROJECTS PROJECT PAGE STYLE
═══════════════════════════════════════════ */
.featured-projects-section {
  margin: 0 auto;
  padding: 0 40px 100px;
  position: relative;
  z-index: 1;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Card */
.featured-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(45, 125, 132, 0.22);
}

/* Photo container same as card-media */
.f-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border-radius: 20px;
}

.f-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Overlay same as card-overlay */
.f-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(14, 165, 164, 0.92) 0%,
      rgba(14, 165, 164, 0.65) 5%,
      rgba(20, 184, 166, 0.25) 20%,
      transparent 72%);
  opacity: 0;
  transition: opacity 0.42s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.featured-card:hover .f-overlay {
  opacity: 1;
}

/* Center icon */
.f-overlay-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
  opacity: 0;
  margin-top: 80px;
  transform: scale(0.72) translateY(8px);
  transition: opacity 0.4s ease 0.06s,
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0.06s,
    background 0.25s ease;
}

.featured-card:hover .f-overlay-icon {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.f-overlay-icon:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: #ffffff;
  transform: scale(1.1) translateY(0) !important;
}

.f-overlay-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  flex-shrink: 0;
}

/* Bottom name same as overlay-bottom */
.f-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.42s ease 0.09s,
    transform 0.42s cubic-bezier(0.23, 1, 0.32, 1) 0.09s;
}

.featured-card:hover .f-overlay-bottom {
  opacity: 1;
  transform: translateY(0);
}

.f-overlay-category {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.f-overlay-name {
  font-size: 1.15rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Explore footer */
.explore-footer {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.f-count-text {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.f-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  border-radius: 100px;
  background: white;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(14, 165, 164, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.f-explore-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.f-explore-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(14, 165, 164, 0.2);
}

.f-explore-btn:hover svg {
  transform: translateX(4px);
  stroke: white;
}

/* Responsive */
@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
  }

  .f-overlay-icon {
    width: 42px;
    height: 42px;
    margin-top: 30px;
  }

  .f-overlay-icon svg {
    width: 16px;
    height: 16px;
  }

  .f-overlay-bottom {
    padding: 0.6rem 1rem 0.9rem;
  }

  .f-overlay-category {
    font-size: 0.50rem;
    letter-spacing: 1.4px;
  }

  .f-overlay-name {
    font-size: 0.92rem;
  }
}

/* ═══════════════════════════════════════════
   FIX 1 WHY INTERN WITH US
   Icons were blurred & hidden on mobile.
   Restore them as normal, visible, coloured icons.
═══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Remove the blur/absolute trick show icon normally */
  .why-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* left-aligned like desktop */
    z-index: 1;
  }

  .icon-box {
    position: relative;
    /* back to normal flow */
    top: auto;
    left: auto;
    transform: none;
    filter: none;
    /* remove blur */
    opacity: 1;
    /* fully visible */
    z-index: 2;
    margin-bottom: 14px;
  }

  .why-card h3,
  .why-card p {
    position: relative;
    z-index: 2;
  }
}


/* ═══════════════════════════════════════════
   FIX 2 ABOUT SECTION ICON COLOURS
   Icons blended into the teal background.
   Give icon-wraps a white/light background so
   the SVG stroke is clearly visible.
═══════════════════════════════════════════ */

/* Override the semi-transparent wrap with a solid light one */
.about-icon-wrap {
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.40) !important;
}

/* Make the SVG stroke bright white so it pops on teal */
.about-icon {
  stroke: #ffffff !important;
}

/* On hover the box gets a brighter fill */
.about-box:hover .about-icon-wrap {
  background: rgba(255, 255, 255, 0.28) !important;
}

/* ============================================================
   ATHENURA COMPLETE FOOTER RESPONSIVE (ALL DEVICES)
   Paste this at the VERY BOTTOM of your main.css
   ============================================================ */

/* ═══════════════════════════════════════════
   GLOBAL FOOTER BASE
═══════════════════════════════════════════ */
.athenura-footer {
  width: 100% !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

.footer-container {
  box-sizing: border-box !important;
}

.footer-bottom-bar {
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Responsive (exactly as original) */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr 1.6fr;
    gap: 40px;
    padding: 0 40px 60px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 24px 60px;
  }

  .footer-col.branding {
    grid-column: 1 / -1;
  }

  .bottom-content {
    max-width: 1400px;
    margin: auto;
    padding: 30px 60px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
  }
}

@media (min-width: 480px) and (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .branding {
    grid-column: span 2;
  }

  .branding p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px 50px;
  }

  .bottom-content {
    padding: 14px 20px 36px;
  }

  .legal-links {
    gap: 16px;
  }

  .legal-links a {
    font-size: 13px;
  }
}

/* ═══════════════════════════════════════════
   SMALL MOBILE up to 400px
═══════════════════════════════════════════ */
@media (max-width: 400px) {
  .footer-container {
    padding: 22px 14px 0 !important;
  }

  .footer-col h3 {
    font-size: 13px !important;
    margin-bottom: 10px !important;
  }

  .footer-col ul li a {
    font-size: 12px !important;
  }

  .footer-col:nth-child(5) iframe {
    height: 120px !important;
  }

  .bottom-content {
    padding: 12px 14px 20px !important;
  }
}


/* ═══════════════════════════════════════════
   MODAL FULL-WIDTH MOBILE FIX
   (Web Development card & all modals)
═══════════════════════════════════════════ */
@media (max-width: 768px) {

  .modal {
    /* Take 95% of screen width, properly centered */
    width: 95vw !important;
    max-width: 95vw !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    padding: 20px 16px 20px !important;
    border-radius: 20px !important;
    max-height: 88vh !important;
    overflow-y: auto !important;
    box-sizing: border-box;
  }

  .modal.active {
    transform: translate(-50%, -50%) scale(1) !important;
  }

  /* Modal header stack icon and text */
  .m-header {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .m-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
  }

  .m-icon svg {
    width: 18px;
    height: 18px;
  }

  .m-title {
    font-size: 1.1rem !important;
  }

  .m-sub {
    font-size: 0.62rem;
    line-height: 1.5;
  }

  /* Description block */
  .m-desc {
    font-size: 0.82rem;
    padding: 10px 12px;
    margin-bottom: 12px;
    line-height: 1.65;
  }

  /* Module list items */
  .m-module-list {
    gap: 5px;
    margin-bottom: 12px;
  }

  .m-module-list li {
    font-size: 0.78rem;
    padding: 8px 10px;
    border-radius: 8px;
  }

  /* Tags row wraps nicely */
  .m-tags {
    gap: 5px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }

  .m-tag {
    font-size: 0.62rem;
    padding: 4px 10px;
  }

  /* Apply button full width */
  .m-apply {
    font-size: 0.9rem;
    padding: 13px 20px;
    width: 100%;
  }

  /* Section label */
  .m-section-label {
    font-size: 0.60rem;
    margin-bottom: 8px;
  }
}

/* ═══════════════════════════════════════════
   CTA SECTION MOBILE FIX
═══════════════════════════════════════════ */
@media (max-width: 768px) {

  .cta-section {
    padding: 40px 24px !important;
    flex-direction: column !important;
    gap: 20px !important;
    text-align: center !important;
    width: 100%;
    box-sizing: border-box;
  }

  .cta-text {
    font-size: 1.5rem !important;
  }

  .cta-btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
    padding: 14px 24px;
  }
}


/* ═══════════════════════════════════════════
   FIX 900px to 1200px HERO & LAYOUT
   White space & broken layout fix
═══════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1200px) {

  /* ── HERO ── */
  .hero {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: hidden;
    min-height: 100vh;
  }

  .hero-text {
    width: 55%;
    padding: 80px 30px 80px 40px;
    flex-shrink: 0;
  }

  .hero-title {
    font-size: clamp(2rem, 3.8vw, 3.6rem);
  }

  .hero-desc {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .hero-right {
    width: 45%;
    min-height: auto;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }

  .hero-img-frame {
    width: 90%;
    max-width: 420px;
    height: auto;
    aspect-ratio: 3/2;
  }

  /* ── WHY SECTION ── */
  .why {
    padding: 70px 40px;
  }

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

  /* ── DOMAIN / CARDS SECTION ── */
  .domain-section {
    padding: 0 30px 80px;
  }

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

  /* ── ABOUT SECTION ── */
  .about-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  /* ── APART SECTION ── */
  .apart-section {
    padding: 70px 40px;
  }

  .container {
    gap: 40px;
  }

  .apart-image img {
    width: 380px;
    height: 280px;
  }

  /* ── CREDENTIALS ── */
  .credentials-container {
    width: 100%;
    padding: 60px 40px;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .inner-card {
    padding: 40px;
  }

  .inner-card img {
    width: 240px;
    height: auto;
  }

  /* ── PARTNERSHIPS ── */
  .partnerships-inner {
    padding: 70px 40px 50px;
  }

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

  /* ── FEATURED PROJECTS ── */
  .featured-projects-section {
    padding: 0 30px 80px;
  }

  .featured-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
  }

  /* ── CTA ── */
  .cta-section {
    padding: 48px 60px;
  }

  /* ── FOOTER ── */
  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    padding: 0 40px 60px;
  }
}

/* ── Tighter range: 900px to 1024px ── */
@media (min-width: 769px) and (max-width: 1024px) {

  .hero-text {
    width: 58%;
    padding: 70px 24px 70px 32px;
  }

  .hero-right {
    width: 42%;
  }

  .hero-img-frame {
    width: 85%;
    max-width: 340px;
  }

  .htag {
    font-size: 0.72rem;
    padding: 8px 14px;
  }

  .lang-icon {
    width: 44px;
    height: 44px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 3.5vw, 3rem);
  }

  .hero-stats {
    gap: 18px;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .about-container {
    gap: 28px;
  }

  .about-left h2 {
    font-size: 1.8rem;
  }

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

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 0 30px 50px;
  }
}