/* ============================================
   THINK ASPIRE — MAIN STYLESHEET
   ============================================ */

:root {
  --color-dark-navy: #0a1a3c;
  --color-navy: #10254f;
  --color-gold: #d4af6a;
  --color-gold-light: #f0d9a8;
  --color-white: #ffffff;
  --color-offwhite: #f7f8fa;
  --color-text-dark: #1a1a1a;
  --color-text-muted: #5a5f6d;
  --color-accent-blue: #2f6fed;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-width: 1400px;
  --transition-base: 0.35s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 28px 0;
  transition: background var(--transition-base), padding var(--transition-base);
}

.site-header.scrolled {
  position: fixed;
  background: rgba(10, 26, 60, 0.92);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.5px;
}

.logo img { 
  height: 100px;
  width: 150px;
  border-radius: 8px;



}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  list-style: none;
}

.nav-links a {
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition-base);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--color-white);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  animation: kenburns 14s ease-in-out infinite;
}

.hero-slide.active { opacity: 1; z-index: 2; }

@keyframes kenburns {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,26,60,0.55) 0%, rgba(10,26,60,0.35) 40%, rgba(10,26,60,0.75) 100%);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  color: var(--color-white);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  max-width: 950px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.15rem;
  max-width: 680px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 38px;
}

.btn-primary {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-dark-navy);
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 4px;
  border: none;
  font-size: 1rem;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-dots span {
  width: 30px;
  height: 3px;
  background: rgba(255,255,255,0.35);
  transition: background var(--transition-base);
}
.hero-dots span.active { background: var(--color-gold); }

/* ============================================
   SECTION LABELS (shared)
   ============================================ */

.section-label {
  text-align: center;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--color-text-dark);
  margin-bottom: 60px;
}

.section-title.light { color: var(--color-white); }

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  background: var(--color-white);
  padding: 110px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  height: 460px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-navy);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.4);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,26,60,0.1) 0%, rgba(10,26,60,0.85) 100%);
  z-index: 1;
}

.service-card-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 32px 26px;
  color: var(--color-white);
}

.service-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-card-brief {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
}

.service-card:hover .service-card-brief {
  max-height: 140px;
  opacity: 1;
  margin-top: 12px;
}

.service-card-number {
  position: absolute;
  top: 24px;
  left: 26px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-gold);
  letter-spacing: 1px;
}

/* ============================================
   WHY US / TRUST US (video) SECTION
   ============================================ */

.trust-section {
  position: relative;
  padding: 50px 0;
  background: var(--color-dark-navy);
  overflow: hidden;
}

.trust-bg {
  position: absolute;
  inset: -40px;
  background-image: url('../images/whyus.png');
  background-size: cover;
  background-position: center;
  filter: blur(18px) brightness(0.55) saturate(1.1);
  transform: scale(1.1);
  z-index: 0;
}

.trust-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,26,60,0.55) 0%, rgba(47,111,237,0.35) 50%, rgba(10,26,60,0.55) 100%);
  z-index: 1;
}

.trust-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.trust-inner .section-label,
.trust-inner .section-title {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 0;
}

.trust-inner .section-label {
  font-size: 1.1rem;
  letter-spacing: 3px;
}

.trust-video-wrap {
  width: 100%;
  max-width: 760px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.trust-video-wrap video {
  width: 100%;
  display: block;
}

.trust-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 10px;
  max-width: 900px;
  text-align: left;
}

.trust-block h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--color-gold-light);
}

.trust-block p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
}

/* ============================================
   NEWS / TRENDS SECTION
   ============================================ */

.news-section {
  background: var(--color-white);
  padding: 110px 0;
}

.news-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.news-wrap h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ccc;
  border-radius: 40px;
  padding: 12px 26px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color var(--transition-base), background var(--transition-base);
}
.btn-outline:hover { border-color: var(--color-gold); background: #fdf8ee; }

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.news-item {
  padding: 26px 0;
  border-bottom: 1px solid #ececec;
}
.news-item:first-child { padding-top: 0; }

.news-item a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: color var(--transition-base);
}
.news-item a:hover { color: var(--color-accent-blue); }

.news-item .news-date {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.news-item .news-source {
  display: inline-block;
  margin-top: 8px;
  margin-right: 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-gold);
  font-weight: 700;
}

.news-side-card {
  background: var(--color-offwhite);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
}
.news-side-card img { height: 180px; object-fit: cover; width: 100%; }
.news-side-card-body { padding: 22px; }
.news-side-card-body h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.news-side-card-body p { font-size: 0.88rem; color: var(--color-text-muted); }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--color-dark-navy);
  color: var(--color-white);
  padding: 90px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .logo { margin-bottom: 18px; display: inline-block; }
.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-col h5 {
  color: var(--color-gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 22px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  transition: color var(--transition-base);
}
.footer-col a:hover { color: var(--color-gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  transition: background var(--transition-base), border-color var(--transition-base);
}
.footer-socials a:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-dark-navy); }

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

.about-intro {
  padding: 180px 0 100px;
  background: var(--color-offwhite);
  text-align: center;
}
.about-intro-text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  text-align: justify;
}

.scrub-section {
  position: relative;
  height: 200vh;
  background: var(--color-dark-navy);
}
.scrub-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.scrub-sticky video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scrub-sticky video {
  transition: transform 0.5s linear;
}

.scrub-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,26,60,0.15) 0%, rgba(10,26,60,0.55) 100%);
  z-index: 1;
}

.scrub-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  text-align: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 90%;
}

.vision-mission {
  padding: 110px 0;
  background: var(--color-white);
}
.vm-inner {
  display: flex;
  align-items: center;
  gap: 70px;
}

/*.vm-image {
  flex: 0 0 420px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}
.vm-image img { width: 100%; display: block; }
*/

.vm-text { flex: 1; }
.vm-text .section-label { text-align: left; }
.vm-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--color-text-dark);
  margin-top: 16px;
}

@media (max-width: 900px) {
  .vm-inner { flex-direction: column; }
  .vm-image { flex: 0 0 auto; width: 100%; max-width: 420px; }
  .vm-text .section-label,
  .vm-text { text-align: center; }
}

/* ============================================
   PLACEHOLDER PAGE (About / Services / Career / Contact)
   ============================================ */

.placeholder-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 20px 100px;
  background: var(--color-offwhite);
}
.placeholder-page h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  margin-bottom: 16px;
  color: var(--color-dark-navy);
}
.placeholder-page p { color: var(--color-text-muted); font-size: 1.05rem; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; }
  .trust-video-wrap { flex: 0 0 auto; width: 100%; max-width: 480px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .container { padding: 0 22px; }
}

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

.approach-section {
  padding: 180px 0 110px;
  background: var(--color-offwhite);
}

.approach-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 60px;
}

.approach-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.approach-item::before {
  content: '';
  position: absolute;
  top: 46px;
  left: -50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent-blue));
  z-index: 0;
}
.approach-item:first-child::before { display: none; }

.approach-number {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.approach-icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-blue);
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.approach-icon svg { width: 26px; height: 26px; }

.approach-item:hover .approach-icon {
  transform: translateY(-6px) scale(1.08);
  background: var(--color-dark-navy);
  color: var(--color-gold);
}

.approach-item h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.approach-item p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.approach-arrow {
  display: inline-block;
  color: var(--color-accent-blue);
  transition: transform 0.35s ease;
}
.approach-item:hover .approach-arrow { transform: translateX(6px); }

/* ---- What We Deliver ---- */

.deliver-section {
  padding: 110px 0;
  background: var(--color-white);
}

.deliver-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.deliver-card {
  background: var(--color-dark-navy);
  border-radius: 12px;
  padding: 46px 40px;
  color: var(--color-white);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.deliver-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(10,26,60,0.25);
}

.deliver-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--color-gold-light);
}
.deliver-card-header p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
  font-size: 0.98rem;
}

.deliver-list { list-style: none; }

.deliver-list li {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: padding-left 0.3s ease;
}
.deliver-list li:last-child { padding-bottom: 0; }

.deliver-list li:hover { padding-left: 10px; }

.deliver-list-title {
  display: block;
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.deliver-list li:hover .deliver-list-title { color: var(--color-gold); }

.deliver-list-desc {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}
.deliver-list li:hover .deliver-list-desc {
  max-height: 60px;
  opacity: 1;
  margin-top: 4px;
}

/* ---- Scroll reveal (shared) ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .approach-row { flex-direction: column; gap: 40px; }
  .approach-item::before { display: none; }
  .deliver-grid { grid-template-columns: 1fr; }
}


/* ============================================
   Partners PAGE
   ============================================ */
   .partners-page {
  padding: 150px 0;
  background: #fff;
  text-align: center;
}

.partners-page h1 {
  margin-bottom: 50px;
}

.partners-image img {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
}


.contact-section { padding: 180px 0 120px; background: var(--color-offwhite); }
.contact-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 60px; margin-top: 50px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form input, .contact-form select, .contact-form textarea {
  padding: 16px; border: 1px solid #ddd; border-radius: 6px; font-family: var(--font-body); font-size: 0.95rem;
}
.contact-form button { align-self: flex-start; }
.form-status { font-size: 0.9rem; margin-top: 6px; }
.contact-info-item { margin-bottom: 30px; }
.contact-info-item h5 { color: var(--color-gold); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 8px; }
.contact-info-item p a { color: var(--color-text-dark); font-size: 1rem; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }