/* ===================================
   MAIN STYLESHEET
   Premium dark navy / soft blue theme
   Glass hover + smooth transitions
   =================================== */

/* Base Imports */
@import url('base/variables.css');
@import url('base/reset.css');

/* Components */
@import url('components/buttons.css');
@import url('components/cards.css');
@import url('components/forms.css');
@import url('components/navigation.css');
@import url('components/footer.css');

/* Utilities */
@import url('utilities/animations.css');
@import url('utilities/responsive.css');
@import url('utilities/spacing.css');

/* Page-specific */
@import url('pages/blog.css');
@import url('pages/home.css');
@import url('pages/services.css');
@import url('pages/contact.css');
@import url('pages/teams.css');
@import url('pages/about.css');

/* =========================
   THEME VARIABLES
========================= */
:root {
  --bg-primary: #081a2e;
  --bg-secondary: #0d2d50;
  --bg-tertiary: #153d69;
  --bg-deep: #061321;
  --bg-card: rgba(255, 255, 255, 0.96);
  --bg-glass: rgba(255, 255, 255, 0.08);

  --text-primary: #f5f9ff;
  --text-secondary: #d9e6f5;
  --text-dark: #16385f;
  --text-muted: #6f88a7;
  --white: #ffffff;

  --accent: #7aaef7;
  --accent-strong: #4f84da;
  --accent-soft: rgba(122, 174, 247, 0.14);
  --accent-glow: rgba(122, 174, 247, 0.24);
  --accent-line: rgba(122, 174, 247, 0.24);

  --border-color: rgba(255, 255, 255, 0.10);
  --line-soft: rgba(122, 174, 247, 0.18);

  --shadow-soft: 0 10px 30px rgba(7, 28, 53, 0.28);
  --shadow-card: 0 18px 38px rgba(10, 35, 66, 0.16);
  --shadow-hover: 0 24px 48px rgba(10, 35, 66, 0.22);
  --shadow-glow: 0 0 24px rgba(122, 174, 247, 0.10);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 999px;

  --transition-fast: 0.3s ease;
  --transition-smooth: 0.45s ease;
}

/* =========================
   GLOBAL
========================= */
html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.05), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(122, 174, 247, 0.09), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.03), transparent 25%),
    linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 55%, var(--bg-tertiary) 100%);
  color: var(--text-primary);
  min-height: 100vh;
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.03), transparent 18%),
    radial-gradient(circle at 80% 20%, rgba(122, 174, 247, 0.05), transparent 18%),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.025), transparent 22%);
  animation: bgFloat 8s ease-in-out infinite alternate;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: 0;
}

nav,
main,
section,
footer,
.hero,
.features,
.about-section,
.container,
.outer-container,
.inner-container {
  position: relative;
  z-index: 1;
}

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

/* headings */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

h2,
.section-title {
  color: var(--text-primary);
  text-align: center;
}

h2 {
  margin: 50px 0 30px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 50px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

/* =========================
   NAVIGATION
========================= */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;

  background: rgba(9, 29, 52, 0.76);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  overflow: hidden;
}

nav::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 35%, rgba(122, 174, 247, 0.14), transparent 20%),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.05), transparent 18%);
}

nav::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 28%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,0.03) 35%,
    rgba(255,255,255,0.14) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: navShine 7s linear infinite;
  pointer-events: none;
}

nav .logo,
nav ul,
.hamburger {
  position: relative;
  z-index: 2;
}

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

nav .logo img {
  height: 54px;
  width: auto;
  margin-right: 0;
  margin-bottom: 0;
  border-radius: 12px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

nav .logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 10px 22px rgba(122, 174, 247, 0.24));
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 0;
}

nav ul li a {
  color: rgba(245, 249, 255, 0.92);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: var(--radius-full);
  overflow: hidden;
  isolation: isolate;
  transition: all 0.35s ease;
}

nav ul li a::before,
.menubar ul li a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.03)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(122, 174, 247, 0.18);
  opacity: 0;
  transform: scale(0.88);
  transition: all 0.35s ease;
  z-index: -2;
}

nav ul li a::after,
.menubar ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,0.06) 35%,
    rgba(255,255,255,0.28) 50%,
    rgba(255,255,255,0.06) 65%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  z-index: -1;
}

nav ul li a:hover,
.menubar ul li a:hover {
  color: var(--white);
  background: var(--accent-soft);
  transform: translateY(-3px);
  box-shadow:
    0 10px 24px rgba(5, 25, 47, 0.22),
    0 0 0 1px rgba(122, 174, 247, 0.10);
}

nav ul li a:hover::before,
.menubar ul li a:hover::before {
  opacity: 1;
  transform: scale(1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 0 20px rgba(122, 174, 247, 0.08),
    0 0 34px rgba(122, 174, 247, 0.06);
}

nav ul li a:hover::after,
.menubar ul li a:hover::after {
  left: 160%;
}

nav ul li a span,
.menubar ul li a span {
  position: relative;
  z-index: 2;
}

nav ul li a span::after,
.menubar ul li a span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #ffffff, var(--accent));
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

nav ul li a:hover span::after,
.menubar ul li a:hover span::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1003;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 18px rgba(5, 25, 47, 0.18),
    0 0 16px rgba(122, 174, 247, 0.10);
}

.hamburger .line {
  width: 20px;
  height: 2.5px;
  background-color: var(--text-primary);
  display: block;
  margin: 5px auto;
  border-radius: 10px;
  transition: all var(--transition-fast);
}

.hamburger-active {
  transform: rotate(45deg);
}

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

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

.hamburger-active .line:nth-child(3) {
  transform: translateY(-8px) rotate(90deg);
}

.menubar {
  position: fixed;
  top: 0;
  left: -70%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 70%;
  max-width: 320px;
  height: 100vh;
  padding: 120px 24px 40px;
  background: rgba(10, 31, 55, 0.94);
  transition: all 0.45s ease;
  z-index: 1002;
  border-right: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    20px 0 50px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.menubar.active,
.active {
  left: 0;
}

.menubar ul {
  width: 100%;
  padding: 0;
  list-style: none;
}

.menubar ul li {
  margin: 12px 0;
}

.menubar ul li a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  display: block;
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  transition: all 0.35s ease;
}

/* =========================
   HERO
========================= */
.hero {
  padding: 110px 20px;
  text-align: center;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1s ease;
}

.hero-content {
  max-width: 850px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text-primary);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
}

.hero p {
  font-size: 1.12rem;
  color: var(--text-secondary);
  margin-bottom: 34px;
  line-height: 1.9;
}

/* =========================
   BUTTONS
========================= */
.cta-button,
button,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  background: linear-gradient(135deg, var(--white), #eef5ff);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition-fast);
  box-shadow:
    0 10px 24px rgba(9, 29, 52, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cta-button::before,
button::before,
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    rgba(122, 174, 247, 0.18),
    transparent
  );
  transform: skewX(-25deg);
  transition: 0.6s ease;
}

.cta-button:hover::before,
button:hover::before,
.btn:hover::before {
  left: 140%;
}

.cta-button:hover,
button:hover,
.btn:hover {
  background: linear-gradient(135deg, #f8fbff, #dcecff);
  color: var(--accent-strong);
  box-shadow:
    0 16px 32px rgba(8, 30, 55, 0.22),
    0 0 0 1px rgba(122, 174, 247, 0.10);
  transform: translateY(-3px);
}

/* =========================
   FEATURES / CARDS
========================= */
.features {
  padding: 90px 20px;
  background: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 34px;
  margin-bottom: 30px;
}

.feature-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(24, 59, 99, 0.08);
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(122, 174, 247, 0.12), transparent 24%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(122, 174, 247, 0.26);
  box-shadow:
    0 0 0 1px rgba(122, 174, 247, 0.06),
    0 18px 40px rgba(10, 35, 66, 0.14);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 3.5em;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.10) rotate(4deg);
  filter: drop-shadow(0 10px 18px rgba(79, 132, 218, 0.18));
}

.feature-card h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* =========================
   ABOUT
========================= */
.about-section {
  padding: 90px 20px;
  background: transparent;
  display: flex;
  justify-content: center;
}

.about-text {
  text-align: center;
  font-size: 1.08em;
  color: var(--text-secondary);
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.95;
}

.mission-vision {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.mission,
.vision {
  flex: 1;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  transition: all 0.35s ease;
}

.mission:hover,
.vision:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 174, 247, 0.18);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.16),
    0 0 18px rgba(122,174,247,0.06);
}

.mission h3,
.vision h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white);
}

.mission p,
.vision p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* =========================
   FAQ
========================= */
.faq-section h2 {
  text-align: center;
}

/* =========================
   FORMS
========================= */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1em;
  color: var(--text-primary);
}

input,
textarea,
select {
  padding: 13px 15px;
  background: rgba(8, 25, 46, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  transition: all var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
  color: rgba(215, 227, 242, 0.55);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(122, 174, 247, 0.55);
  box-shadow:
    0 0 0 3px rgba(122, 174, 247, 0.10),
    0 0 14px rgba(122, 174, 247, 0.10);
  transform: translateY(-1px);
}

/* =========================
   FOOTER
========================= */
/* =========================
   FOOTER - CLEAN PREMIUM NO BOX
========================= */
.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(122, 174, 247, 0.08), transparent 20%),
    radial-gradient(circle at 86% 14%, rgba(255,255,255,0.04), transparent 18%),
    linear-gradient(135deg, #071524 0%, #0a2038 55%, #0d2948 100%);
  color: var(--text-primary);
  padding: 75px 20px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.7;
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(460px, 75%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), #ffffff, var(--accent), transparent);
  box-shadow: 0 0 18px rgba(122, 174, 247, 0.22);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 42px;
  position: relative;
  z-index: 2;
}

.footer-section {
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.footer-section h3 {
  font-size: 1.15rem;
  margin-bottom: 18px;
  color: var(--white);
  font-weight: 700;
  position: relative;
  display: inline-block;
  letter-spacing: 0.02em;
}

.footer-section h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #ffffff);
  transition: width 0.35s ease;
}

.footer-section:hover h3::after {
  width: 72px;
}

.footer-section p {
  color: rgba(245, 249, 255, 0.72);
  line-height: 1.9;
  margin: 0;
  max-width: 320px;
}

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

.footer-section ul li {
  margin-bottom: 14px;
  line-height: 1.7;
}

/* clean link hover */
.footer-section ul li a {
  color: rgba(245, 249, 255, 0.78);
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 2px 0;
  transition: all 0.35s ease;
}

.footer-section ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #ffffff);
  transition: width 0.35s ease;
}

.footer-section ul li a:hover {
  color: var(--white);
  transform: translateX(8px);
  text-shadow: 0 0 16px rgba(122, 174, 247, 0.18);
}

.footer-section ul li a:hover::before {
  width: 100%;
}

/* contact links same style */
.footer-section a {
  color: rgba(245, 249, 255, 0.78);
  text-decoration: none;
  transition: all 0.35s ease;
}

/* social links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.social-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #eaf2ff;
  font-size: 1.05rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: all 0.35s ease;
}

.social-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.social-links a:hover {
  color: var(--white);
  background: rgba(122, 174, 247, 0.16);
  transform: translateY(-6px) scale(1.08);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    0 0 18px rgba(122, 174, 247, 0.14);
}

.social-links a:hover::before {
  opacity: 1;
}

/* footer bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 42px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  margin: 0;
  color: rgba(245, 249, 255, 0.58);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* responsive */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 55px 18px 22px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-section h3 {
    margin-bottom: 14px;
  }

  .footer-bottom {
    margin-top: 28px;
    padding-top: 16px;
  }
}
/* =========================
   BACK TO TOP
========================= */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow:
    0 10px 28px rgba(8, 30, 55, 0.24),
    0 0 20px rgba(122,174,247,0.14);
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.back-to-top:hover {
  color: var(--white);
  box-shadow:
    0 16px 32px rgba(8, 30, 55, 0.28),
    0 0 28px rgba(122,174,247,0.18);
  transform: translateY(-5px) scale(1.05);
}

/* =========================
   TEAM SECTION
========================= */
.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: flex-start;
}

.outer-container {
  padding: 10px 30px;
}

.inner-container {
  max-width: 1320px;
  padding: 10px;
  margin: 50px auto;
}

.heading-text {
  font-size: clamp(42px, 8vw, 100px);
  line-height: 1;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  font-style: italic;
  color: var(--text-primary);
}

.sub-heading-text {
  line-height: 30px;
  color: var(--text-secondary);
  margin: 0;
  padding: 0;
}

.name {
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
  padding: 15px 10px 5px 0;
  margin: 0;
  color: var(--text-primary);
}

.position {
  line-height: 24px;
  padding: 10px 10px 10px 0;
  margin: 0;
  color: var(--text-secondary);
}

.card-img {
  width: 100%;
  height: 250px;
  margin: 0 auto;
  max-width: 300px;
  transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.card-img:hover {
  transform: scale(1.04);
  filter: brightness(1.05);
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}

.card-container {
  display: inline-block;
  margin: 0 0 40px 0;
  transition: transform 0.35s ease;
}

.card-container:hover {
  transform: translateY(-6px);
}

.headings-container {
  padding: 0 10px 0 0;
}

.team-members-container {
  display: flex;
  flex-wrap: wrap;
}

/* =========================
   404 PAGE
========================= */
.c {
  text-align: center;
  display: block;
  position: relative;
  width: 80%;
  margin: 100px auto;
}

._404 {
  font-size: 220px;
  position: relative;
  display: inline-block;
  z-index: 2;
  height: 250px;
  letter-spacing: 15px;
  color: var(--text-primary);
}

.text {
  font-size: 70px;
  text-align: center;
  position: relative;
  display: inline-block;
  margin: 19px 0 0 0;
  top: 256.301px;
  z-index: 3;
  width: 100%;
  line-height: 1.2em;
  color: var(--text-secondary);
}

/* =========================
   GRID WIDTH UTILITIES
========================= */
.wk-desk-1 { width: 8.333333%; }
.wk-desk-2 { width: 16.666667%; }
.wk-desk-3 { width: 25%; }
.wk-desk-4 { width: 33.333333%; }
.wk-desk-5 { width: 41.666667%; }
.wk-desk-6 { width: 50%; }
.wk-desk-7 { width: 58.333333%; }
.wk-desk-8 { width: 66.666667%; }
.wk-desk-9 { width: 75%; }
.wk-desk-10 { width: 83.333333%; }
.wk-desk-11 { width: 91.666667%; }
.wk-desk-12 { width: 100%; }

@media (max-width: 1024px) {
  .wk-ipadp-1 { width: 8.333333%; }
  .wk-ipadp-2 { width: 16.666667%; }
  .wk-ipadp-3 { width: 25%; }
  .wk-ipadp-4 { width: 33.333333%; }
  .wk-ipadp-5 { width: 41.666667%; }
  .wk-ipadp-6 { width: 50%; }
  .wk-ipadp-7 { width: 58.333333%; }
  .wk-ipadp-8 { width: 66.666667%; }
  .wk-ipadp-9 { width: 75%; }
  .wk-ipadp-10 { width: 83.333333%; }
  .wk-ipadp-11 { width: 91.666667%; }
  .wk-ipadp-12 { width: 100%; }

  .name {
    padding-top: 10px;
  }

  .position {
    padding-top: 0;
  }

  .card-img {
    width: 100%;
    min-width: 100%;
    height: 250px;
    min-height: 230px;
    max-height: 230px;
  }
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .mission-vision {
    flex-direction: column;
  }
}

@media (max-width: 790px) {
  nav {
    padding: 10px 4%;
    align-items: center;
  }

  nav .logo img {
    height: 48px;
  }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  nav ul {
    display: none;
  }
}

@media (max-width: 768px) {
  main {
    margin: auto;
  }

  .hero {
    padding: 90px 20px;
  }

  label {
    font-size: 0.95em;
  }

  input,
  textarea,
  select {
    font-size: 1em;
    padding: 10px 12px;
  }

  button {
    padding: 10px 25px;
    font-size: 0.95em;
  }

  .about-section {
    padding: 60px 20px;
  }

  .about-text {
    text-align: justify;
  }

  .position,
  .name {
    margin: 0;
  }

  .heading-text {
    text-align: center;
    padding: 0;
  }

  .sub-heading-text {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
  }

  .team-members-container {
    padding: 0;
    margin-top: 30px;
  }

  .card-img {
    max-width: 300px;
    min-width: 250px;
  }

  .headings-container,
  .inner-container {
    padding: 0;
  }

  .wk-tab-1 { width: 8.333333%; }
  .wk-tab-2 { width: 16.666667%; }
  .wk-tab-3 { width: 25%; }
  .wk-tab-4 { width: 33.333333%; }
  .wk-tab-5 { width: 41.666667%; }
  .wk-tab-6 { width: 50%; }
  .wk-tab-7 { width: 58.333333%; }
  .wk-tab-8 { width: 66.666667%; }
  .wk-tab-9 { width: 75%; }
  .wk-tab-10 { width: 83.333333%; }
  .wk-tab-11 { width: 91.666667%; }
  .wk-tab-12 { width: 100%; }
}

@media (max-width: 576px) {
  .footer {
    padding: 54px 18px 22px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .footer-bottom {
    margin-top: 25px;
    padding-top: 15px;
  }

  .back-to-top {
    width: 46px;
    height: 46px;
    right: 16px;
    bottom: 16px;
  }

  .menubar {
    width: calc(100% - 28px);
    left: -110%;
    max-width: unset;
    margin: 0 14px;
    top: 76px;
    height: auto;
    border-radius: 20px;
    padding: 18px;
  }

  .menubar.active,
  .active {
    left: 0;
  }
}

@media (max-width: 500px) {
  main {
    margin: auto;
    padding: 0 15px;
  }

  form {
    gap: 15px;
  }

  label {
    font-size: 0.9em;
    margin-bottom: 5px;
  }

  input,
  textarea,
  select {
    padding: 10px;
    font-size: 1em;
  }

  input::placeholder,
  textarea::placeholder {
    font-size: 0.9em;
  }

  button {
    padding: 12px 20px;
    font-size: 0.9em;
    width: 100%;
  }

  .about-section {
    padding: 40px 15px;
  }

  .about-text {
    text-align: justify;
  }

  .heading-text {
    text-align: left;
    font-size: 40px;
    line-height: 45px;
  }

  .sub-heading-text {
    text-align: left;
  }

  .name {
    padding: 10px 0 5px 0;
  }

  .position {
    padding: 0 0 10px 0;
  }

  .inner-container {
    margin: 80px 0 50px 0;
    padding: 0;
  }

  .outer-container {
    padding: 10px 20px;
  }

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

  .wk-mobile-1 { width: 8.333333%; }
  .wk-mobile-2 { width: 16.666667%; }
  .wk-mobile-3 { width: 25%; }
  .wk-mobile-4 { width: 33.333333%; }
  .wk-mobile-5 { width: 41.666667%; }
  .wk-mobile-6 { width: 50%; }
  .wk-mobile-7 { width: 58.333333%; }
  .wk-mobile-8 { width: 66.666667%; }
  .wk-mobile-9 { width: 75%; }
  .wk-mobile-10 { width: 83.333333%; }
  .wk-mobile-11 { width: 91.666667%; }
  .wk-mobile-12 { width: 100%; }
}

@media (max-width: 480px) {
  .about-text {
    text-align: justify;
  }

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

  .hero p {
    font-size: 1rem;
  }
}

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

@keyframes bgFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }
  100% {
    transform: translateY(-18px) scale(1.03);
    opacity: 1;
  }
}

@keyframes navShine {
  0% {
    left: -35%;
  }
  100% {
    left: 120%;
  }
}