/* =====================================================
   PIXELHOOKS MASTER STYLESHEET – ENHANCED PRO VERSION
   ===================================================== */

/* ---------- ROOT BRAND COLORS ---------- */
:root {
  --primary: #00e5ff;
  --primary-dim: rgba(0, 229, 255, 0.12);
  --primary-mid: rgba(0, 229, 255, 0.4);
  --dark: #080c18;
  --dark-alt: #040710;
  --dark-card: #0c1120;
  --light: #ffffff;
  --muted: #8fa3bb;
  --muted-light: #c5d5e8;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-hover: rgba(0, 229, 255, 0.07);
  --border-glow: rgba(0, 229, 255, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --shadow-glow: 0 0 40px rgba(0, 229, 255, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 16px;
  --radius-lg: 24px;
}

/* ---------- GLOBAL RESET ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--light);
  font-family: 'Segoe UI', sans-serif;
  padding-top: 80px;
  overflow-x: hidden;
  animation: fadeIn 0.9s ease forwards;
  opacity: 0;
  line-height: 1.7;
  /* Subtle noise texture overlay */
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
}

h1, h2, h3, h4, h5 {
  letter-spacing: -0.02em;
}

@keyframes fadeIn {
  from { 
    opacity: 0;
  }
  to { 
    opacity: 1;
  }
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-alt); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), rgba(0,229,255,0.3));
  border-radius: 10px;
}

/* LOGO */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;              /* Space between logo and text */
    font-size: 22px;
    font-weight: bold;
    color: white;           /* Change if needed */
}

.logo img {
    width: 45px;            /* Adjust size */
    height: auto;
    display: block;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8%;
  height: 72px;
  background: rgba(8, 12, 24, 0.88);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow 0.3s;
}

.navbar:hover {
  box-shadow: 0 1px 0 var(--border-glow);
}

.logo {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  transition: width 0.4s ease;
}

.logo:hover::after {
  width: 100%;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--muted-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ---------- HAMBURGER ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 2px;
  width: 24px;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- MOBILE NAV ---------- */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 72px;
    right: -100%;
    flex-direction: column;
    background: rgba(8, 12, 24, 0.97);
    width: 100%;
    text-align: center;
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 30px 0;
    border-top: 1px solid var(--border-glow);
    gap: 0;
  }

  .nav-links li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-links.active { right: 0; }

  .hamburger { display: flex; }
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero video,
.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 229, 255, 0.06) 0%,
    transparent 50%
  );
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 12, 24, 0.3) 0%,
    rgba(8, 12, 24, 0.75) 70%,
    var(--dark) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 20px;
  animation: heroIn 1s ease 0.3s both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  color: var(--light);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero h1 span,
.hero h1 em {
  color: var(--primary);
  font-style: normal;
}

.hero p {
  font-size: 18px;
  color: var(--muted-light);
  margin-bottom: 36px;
  font-weight: 300;
}

/* =====================================================
   BUTTON SYSTEM
   ===================================================== */
.btn {
  padding: 13px 30px;
  margin: 8px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.primary-btn {
  background: var(--primary);
  color: #04080f;
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.primary-btn:hover::before {
  width: 200px;
  height: 200px;
}

.primary-btn:hover {
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.55), 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}

.outline-btn {
  border: 1.5px solid rgba(0, 229, 255, 0.6);
  color: var(--primary);
  background: transparent;
}

.outline-btn:hover {
  background: var(--primary-dim);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
  transform: translateY(-3px);
}

/* =====================================================
   SECTION SYSTEM
   ===================================================== */
section {
  padding: 100px 8%;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 64px;
  color: var(--light);
  position: relative;
  letter-spacing: -0.03em;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* =====================================================
   GRID SYSTEM
   ===================================================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* =====================================================
   CARD SYSTEM
   ===================================================== */
.card {
  background: var(--dark-card);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-mid), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  background: var(--glass-hover);
}

.card:hover::before {
  opacity: 1;
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 22px;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card:hover img {
  transform: scale(1.04);
}

.card h3 {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
}

.card p,
.card ul li {
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.card ul {
  margin-top: 15px;
  padding-left: 20px;
  text-align: left;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about img {
  width: 280px;
  border-radius: var(--radius);
  transition: 0.4s ease;
  border: 1px solid var(--border-glow);
}

.about img:hover { transform: scale(1.04); }

.about div { max-width: 520px; }

.about h2 {
  font-size: 36px;
  margin-bottom: 18px;
  font-weight: 800;
}

.about p {
  color: var(--muted-light);
  font-size: 16px;
  line-height: 1.75;
}

/* =====================================================
   LEADERSHIP
   ===================================================== */
.leader-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.leader-card {
  background: var(--dark-card);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-width: 280px;
}

.leader-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  transition: width 0.4s ease;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  border-color: var(--border-glow);
}

.leader-card:hover::after {
  width: 100%;
}

.leader-card img,
.leader-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-bottom: 18px;
  border: 2px solid var(--primary);
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  transition: box-shadow 0.4s;
}

.leader-card:hover .leader-img,
.leader-card:hover img {
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.5);
}

.leader-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--light);
}

.leader-card p {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Leadership page card text override */
.card.leader-card p:not(:first-of-type) {
  color: var(--muted);
  text-transform: none;
  letter-spacing: normal;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  margin-top: 10px;
}

.card.leader-card h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 6px;
}

/* =====================================================
   EXPERTISE
   ===================================================== */
.expertise { }

.expertise h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.expertise-card {
 text-decoration: none;
  background: var(--dark-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.expertise-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,229,255,0.12), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.expertise-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.15), var(--shadow-card);
}

.expertise-card:hover::after {
  opacity: 1;
}

.expertise-card img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.expertise-card:hover img {
  transform: scale(1.06);
}

.expertise-card h3 {
  padding: 18px 20px;
  color: var(--light);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.expertise-card:hover h3 {
  color: var(--primary);
}

/* =====================================================
   FOOTER
   ===================================================== */
.main-footer {
  background: var(--dark-alt);
  padding: 72px 8% 40px;
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-column h4 {
  color: var(--light);
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column ul { list-style: none; }

.footer-column ul li { margin-bottom: 12px; }

.footer-column ul li a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  font-size: 13px;
  color: #4a5568;
  letter-spacing: 0.04em;
}

/* =====================================================
   AUTO SCROLL SLIDER
   ===================================================== */
.slider {
  width: 860px;
  height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--border-subtle);
  flex-shrink: 0;
}

.slides {
  display: flex;
  width: 600%;
  height: 100%;
  animation: slide 24s infinite;
}

.slide {
  width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slide {
  0%   { transform: translateX(0); }
  13%  { transform: translateX(0); }
  16%  { transform: translateX(-100%); }
  29%  { transform: translateX(-100%); }
  32%  { transform: translateX(-200%); }
  45%  { transform: translateX(-200%); }
  48%  { transform: translateX(-300%); }
  61%  { transform: translateX(-300%); }
  64%  { transform: translateX(-400%); }
  77%  { transform: translateX(-400%); }
  80%  { transform: translateX(-500%); }
  93%  { transform: translateX(-500%); }
  100% { transform: translateX(0); }
}

/* =====================================================
   DOWNLOAD PAGE
   ===================================================== */
.download-hero {
  text-align: center;
  padding: 100px 20px 60px;
  border-bottom: 1px solid var(--border-subtle);
}

.download-hero h1 {
  font-size: 52px;
  margin-bottom: 15px;
  font-weight: 800;
  color: var(--primary);
}

.download-hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 650px;
  margin: auto;
}

.download-tabs {
  display: flex;
  justify-content: center;
  gap: 60px;
  background: var(--dark);
  border-bottom: 1px solid var(--border-subtle);
}

.tab {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  letter-spacing: 0.03em;
}

.tab:hover { color: var(--primary); }

.tab.active {
  color: var(--primary);
  font-weight: 700;
}

.tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

.download-content {
  max-width: 1000px;
  margin: 70px auto;
  padding: 0 20px;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.download-item {
  background: var(--dark-card);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.download-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.file-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: var(--light);
}

.pdf-icon {
  font-size: 22px;
  color: var(--primary);
}

.download-btn {
  font-size: 20px;
  color: var(--primary);
  text-decoration: none;
  transition: 0.3s;
}

.download-btn:hover {
  transform: scale(1.2);
  text-shadow: 0 0 15px var(--primary);
}

/* =====================================================
   LEADERSHIP GRID
   ===================================================== */
.leadership-grid {
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .slider {
    width: 100%;
    height: 360px;
  }
}

@media (max-width: 768px) {
  section { padding: 70px 20px; }

  .hero h1 { font-size: 38px; }
  .hero p  { font-size: 16px; }

  .section-title { font-size: 32px; }

  .about {
    flex-direction: column;
    text-align: center;
  }

  .about h2 { font-size: 28px; }

  .slider {
    width: 100%;
    height: 260px;
  }

  .download-tabs { gap: 24px; }

  .download-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .download-btn { align-self: flex-end; }
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float{
  position:fixed;
  bottom:20px;
  right:20px;
  width:60px;
  height:60px;
  z-index:9999;
}

.whatsapp-float img{
  width:100%;
  height:100%;
  border-radius:50%;
  box-shadow:0 0 15px rgba(0,0,0,0.4);
  transition:0.3s ease;
}

.whatsapp-float img:hover{
  transform:scale(1.1);
}

/* ================= AUTO SCROLL LOGO SLIDER ================= */

.logo-slider{
  overflow: hidden;
  background: #0f172a;
  padding: 40px 0;
}

.logo-track{
  display: flex;
  width: calc(250px * 8);
  animation: scroll 25s linear infinite;
}

.logo-track img{
  width: 200px;
  height: auto;
  margin: 0 40px;
  transition: 0.3s ease;
}

.logo-track img:hover{
  filter: grayscale(0%);
  transform: scale(1.1);
}

@keyframes scroll{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}
