/*
Theme Name: Vanguard Digital
Theme URI: https://vanguarddigital.com/
Author: Vanguard
Description: Exact Keiser University layout replica for Vanguard Digital.
Version: 1.2.0
Text Domain: vanguard-digital
*/

:root {
  --color-primary: #002d62; /* Keiser Navy */
  --color-primary-dark: #001a3b;
  --color-secondary: #007ac3; /* Bright Blue */
  --color-accent: #f2a900; /* Keiser Yellow */
  --color-accent-hover: #d99700;
  --color-bg-light: #f4f4f4;
  --color-text-main: #333333;
  --color-text-muted: #666666;
  --color-white: #ffffff;
  --font-main: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --container-width: 1300px;
}

/* Base Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-main);
  color: var(--color-text-main);
  background-color: var(--color-white);
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s ease-in-out;
}
ul {
  list-style: none;
}
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  font-size: 1rem;
}
.btn-yellow {
  background-color: var(--color-accent);
  color: var(--color-text-main);
  border-radius: 4px;
}
.btn-yellow:hover {
  background-color: var(--color-accent-hover);
}
.btn-blue {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-radius: 4px;
}
.btn-blue:hover {
  background-color: #00609a;
}

/* ==========================================================================
   Header Layout
   ========================================================================== */

.site-header {
  background-color: var(--color-primary);
  color: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 110px;
}
.site-logo {
  display: flex;
  align-items: center;
  max-width: 300px;
}
.site-logo h1 a {
  color: var(--color-white);
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
}
.site-logo img {
  max-width: 250px;
  height: auto;
}

.header-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-end;
  width: 100%;
  padding: 15px 0;
}

/* Header Top Row */
.header-top-row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.85rem;
}
.helpful-links {
  display: flex;
  gap: 20px;
  font-weight: 500;
}
.helpful-links a:hover {
  color: var(--color-accent);
}
.btn-request {
  background-color: var(--color-accent);
  color: var(--color-text-main);
  padding: 8px 20px;
  font-weight: 600;
  border-radius: 3px;
  font-size: 0.9rem;
}
.btn-request:hover {
  background-color: var(--color-accent-hover);
}
.header-search {
  display: flex;
  align-items: center;
  background: var(--color-white);
  border-radius: 3px;
  padding: 0 10px;
  height: 35px;
  width: 220px;
}
.header-search input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 0.85rem;
}
.header-search span {
  color: #999;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Header Bottom Row */
.header-bottom-row {
  display: flex;
  align-items: stretch;
  gap: 30px;
  height: 50px;
}
.main-nav {
  display: flex;
  gap: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  align-items: center;
}
.main-nav a:hover {
  color: var(--color-accent);
}
.btn-programs {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 0 20px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  height: 100%;
  border-radius: 5px;
}
.btn-programs:hover {
  background-color: #00609a;
}

/* ==========================================================================
   Sticky Vertical Sidebar
   ========================================================================== */
.sticky-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.sticky-sidebar a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  text-decoration: none;
}
.sticky-icon-1 {
  background-color: var(--color-accent);
  color: var(--color-text-main) !important;
}
.sticky-icon-2 {
  background-color: #55b4e4;
}
.sticky-icon-3 {
  background-color: #004a8b;
}
.sticky-icon-4 {
  background-color: var(--color-primary-dark);
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-section {
  position: relative;
  height: 75vh;
  min-height: 600px;
  background: url("https://vdigitalinstitute.com/wp-content/uploads/2026/07/pr-professionals.jpg")
    top center/cover no-repeat;
  display: flex;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 45, 98, 0.9) 0%,
    rgba(0, 45, 98, 0.3) 60%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 840px;
  color: var(--color-white);
}
.hero-content h2 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 40px;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.slider-arrows {
  position: absolute;
  bottom: 40px;
  right: 5%;
  z-index: 2;
  display: flex;
  gap: 5px;
}
.slider-arrow {
  background: rgba(30, 30, 30, 0.7);
  color: white;
  border: none;
  width: 55px;
  height: 55px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: 0.2s;
  border-radius: 2px;
}
.slider-arrow:hover {
  background: var(--color-secondary);
}

/* ==========================================================================
   Locations / Cards Section
   ========================================================================== */
.locations-section {
  padding: 80px 0;
  background-color: var(--color-white);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--color-primary);
}
.carousel-nav {
  display: flex;
  gap: 8px;
}
.carousel-nav button {
  background: #e5e5e5;
  border: none;
  width: 45px;
  height: 45px;
  cursor: pointer;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 2px;
}
.carousel-nav button:hover {
  background: #ccc;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.location-card {
  background: var(--color-bg-light);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.location-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.location-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.location-card-content {
  padding: 25px;
}
.location-card h3 {
  color: var(--color-primary);
  margin-bottom: 15px;
  font-size: 1.4rem;
}
.location-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   Mobile Menu Styles
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--color-white);
  cursor: pointer;
}

.mobile-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.mobile-panel-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-side-panel {
  position: fixed;
  top: 0;
  left: -350px;
  width: 300px;
  height: 100vh;
  background: var(--color-white);
  z-index: 1002;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  overflow-y: auto;
}
.mobile-side-panel.active {
  left: 0;
}

.mobile-panel-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.5rem;
  color: var(--color-text-main);
  cursor: pointer;
  line-height: 1;
}

.mobile-panel-content {
  padding: 60px 20px 20px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.mobile-helpful-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-helpful-links a {
  font-size: 1rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Revamp New Components
   ========================================================================== */
.bg-light {
  background-color: #f8f9fa;
}
.center {
  text-align: center;
}

/* Hero Text */
.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 25px;
  font-weight: 700;
}
.hero-subheadline {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 20px;
  color: #fff;
}
.hero-support {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
}
.hero-trust {
  margin-top: 30px;
  font-size: 0.95rem;
  color: #ccc;
}

/* Value Prop Section */
.value-prop-section {
  padding: 80px 0;
}
.value-prop-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}
.value-prop-content h2 {
  color: var(--color-primary-dark);
  font-size: 2.2rem;
  margin-bottom: 30px;
}
.value-prop-content h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--color-primary);
}
.value-prop-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--color-text-main);
}
.floating-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-top: 5px solid var(--color-secondary);
}
.floating-card h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--color-primary-dark);
}
.quick-facts {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.quick-facts li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.05rem;
}
.quick-facts li:last-child {
  border-bottom: none;
}
.card-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.btn-full {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Pillars Section */
.pillars-section {
  padding: 80px 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.pillar-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: 0.3s;
}
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.pillar-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.pillar-card-content {
  padding: 25px;
}
.pillar-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--color-primary);
}
.pillar-card-content p {
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}
.arrow-link {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--color-secondary);
  font-weight: bold;
}
.arrow-link:hover {
  color: var(--color-primary);
}

/* Pathways Horizontal Card */
.pathways-card {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.pathways-title {
  flex: 1;
  min-width: 250px;
}
.pathways-title h3 {
  font-size: 1.8rem;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}
.pathways-options {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.pathway-option {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  flex: 1;
  min-width: 200px;
}
.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.dot-green {
  background: #28a745;
}
.dot-blue {
  background: #007bff;
}
.dot-yellow {
  background: #ffc107;
}
.pathway-option h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--color-primary);
}
.pathway-option p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Curriculum Section */
.curriculum-section {
  padding: 80px 0;
  background: #fff;
}
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.curriculum-card {
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}
.curriculum-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  opacity: 0.9;
}
.curriculum-card:hover img {
  opacity: 1;
}
.curriculum-content {
  padding: 25px;
  position: relative;
}
.curriculum-content h4 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.curriculum-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}
.curriculum-icon {
  position: absolute;
  top: -30px;
  right: 25px;
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Impact Banner */
.impact-banner-section {
  background: var(--color-white);
}
.impact-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 60, 0.8);
}
.banner-content {
  position: relative;
  z-index: 2;
}
.banner-content h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  font-weight: 600;
}
.stats-farm {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 10px;
}
.stat-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Ethics Accordion */
.ethics-section {
  padding: 80px 0;
}
.accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.accordion-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  text-align: left;
  transition: background 0.2s;
}
.accordion-header:hover {
  background: #f1f5f9;
}
.accordion-content {
  padding: 0 25px 20px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text-main);
  display: none;
}
/* For static display right now, let's just make the first one block or we can just leave it to hover/active */
.accordion-item:first-child .accordion-content {
  display: block;
}
.accordion-item:first-child .icon {
  transform: rotate(45deg);
}

/* ==========================================================================
   About Page Components
   ========================================================================== */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  background: url("https://vdigitalinstitute.com/wp-content/uploads/2026/07/7.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 60, 0.75);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 800px;
}
.about-hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
}
.stat-card {
  flex: 1;
  min-width: 220px;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.stat-card-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 5px;
}
.stat-card-label {
  font-size: 1rem;
  color: var(--color-text-main);
  font-weight: 500;
}

.about-section {
  padding: 80px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.split-layout.reverse {
  direction: rtl;
}
.split-layout.reverse > * {
  direction: ltr;
}
.split-content h2 {
  font-size: 2.5rem;
  color: var(--color-primary-dark);
  margin-bottom: 25px;
}
.split-content h3 {
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-top: 25px;
  margin-bottom: 15px;
}
.split-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-main);
  margin-bottom: 20px;
}
.split-image {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}
.split-image img {
  width: 100%;
  height: auto;
  display: block;
}

.overlap-section {
  position: relative;
  padding: 80px 0;
}
.overlap-image-wrapper {
  position: relative;
}
.overlap-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}
.overlap-card {
  position: absolute;
  bottom: -40px;
  left: 40px;
  background: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 500px;
  z-index: 2;
}
.overlap-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--color-primary-dark);
}
.overlap-card ul {
  list-style: none;
  padding: 0;
}
.overlap-card li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  line-height: 1.5;
  color: var(--color-text-main);
}
.overlap-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}
.overlap-text {
  padding: 40px 0;
}
.overlap-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-main);
  margin-bottom: 25px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.value-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-top: 4px solid var(--color-secondary);
}
.value-card h4 {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 15px;
}
.value-card p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .split-layout { grid-template-columns: 1fr; }
  .split-layout.reverse { direction: ltr; }
  .overlap-image-wrapper img { height: 300px; }
  .overlap-card { position: static; max-width: 100%; margin-top: -30px; margin-left: 20px; margin-right: 20px;}
}

@media (max-width: 900px) {
  .header-right {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
  .header-main {
    align-items: center;
  }
  .site-logo img {
    max-width: 180px;
  }
  .value-prop-grid {
    grid-template-columns: 1fr;
  }
  .pathways-card {
    flex-direction: column;
    text-align: center;
  }
  .pathway-option {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


