/* ================================
   BRAND VARIABLES
================================ */

:root {
  --primary: #0066b3;
  --accent: #ffc841;
  --gradient: linear-gradient(135deg, #0066b3, #023d86);
  --light: #f4f8fc;
  --dark: #023d86;
}

/* ================================
   GLOBAL RESET
================================ */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding-top: 90px; /* offset for fixed navbar */
  color: #1a1a1a;
  background: white;
}

/* ================================
   TYPOGRAPHY SYSTEM
================================ */

h1 {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.small-text {
  display: block;
  font-size: 14px;
  font-weight: normal;
  opacity: 0.8;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 25px;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

h4 {
  font-weight: 600;
  margin-bottom: 8px;
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ================================
   NAVBAR
================================ */

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
}

.main-logo {
  width: 140px;
  height: auto;
}

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

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  transition: 0.3s ease;
}

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

.navbar nav a.active {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
}

/* ================================
   BUTTONS
================================ */

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #002b4d;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ================================
   SECTIONS
================================ */

.section {
  padding: 75px 0;
}

.section.light {
  background: var(--light);
}

.section.dark {
  background: var(--gradient);
  color: white;
}

/* ================================
   LAYOUT CONTAINERS
================================ */

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

/* ================================
   WHAT WE DO
================================ */

.what-grid {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.what-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.what-item svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ================================
   VIDEO
================================ */

.domino-video {
  width: 100%;
  border-radius: 8px;
}

/* YouTube Embed */

.program-video {
  padding: 60px 0;
  background-color: #ffffff;
}

.video-full {
  width: 100%;
  max-width: 1200px; /* Increase if you want even larger */
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16 / 9;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  border-radius: 14px;
  overflow: hidden;
}

.video-full iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ================================
   TARGET GROUP CARDS
================================ */

.tg-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.tg-card h3 {
  margin-top: 15px;
}

/* ================================
   FOUNDERS
================================ */

.founders-grid {
  align-items: start;
}

.founder-card {
  text-align: center;
}

.founder-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;     /* No cropping */
  background: #f2f6fb;     /* subtle neutral background */
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.credentials {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

/* ================================
   FAQ
================================ */

.faq-item {
  margin-bottom: 30px;
}

/* ================================
   COLLABORATIONS
================================ */

.collab-image img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 8px;
}

.recent-brands {
  margin-top: 60px;
  text-align: center;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 30px;
  align-items: center;
}
.brand-logo {
  background: white;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.brand-logo img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

/* ================================
   FORMS
================================ */

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

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

footer {
  background: var(--dark);
  color: #ccc;
  padding: 40px 0;
  font-size: 14px;
}

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

@media(max-width: 992px){

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

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

@media(max-width:768px){

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .section {
    padding: 60px 0;
  }

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

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

  .founder-card img {
    height: 260px;
  }
}

/* ===== PRICING SECTION ===== */

.pricing-cta-section {
  text-align: center;
  padding: 35px 20px;
  background: linear-gradient(135deg, #0066b3, #023d86);
  color: white;
}

.price-box {
  margin-bottom: 25px;
}

.original-price {
  font-size: 18px;
  text-decoration: line-through;
  opacity: 0.6;
}

.discount-badge {
  font-size: 13px;
  padding: 4px 12px;
}

.final-price {
  font-size: 38px;
  font-weight: 700;
  margin-top: 8px;
}

.price-note {
  font-size: 15px;
  margin-top: 8px;
  opacity: 0.9;
}

/* ===== BUTTON ALIGNMENT ===== */

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: nowrap;
}

.btn-primary,
.btn-secondary {
  min-width: 220px;
  height: 48px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

/* Enroll Button */
.btn-primary {
  background-color: #ffc841;
  color: #000;
  border: none;
}

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

/* Hover Effects */
.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary:hover {
  opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons button,
  .cta-buttons a {
    width: 100%;
  }
}
.price-note {
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
}
