:root {
  --howard-blue: #0047AB;
  --howard-red: #B30000;
  --howard-gold: #FFC72C;
  --howard-dark: #1a1a1a;
  --howard-light: #f8f9fa;
  --howard-gray: #6c757d;
  --howard-white: #ffffff;
}

/* Howard Hero Section */
.howard-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  background: #002d6e;
}

.howard-hero-section::before,
.howard-hero-section::after {
  content: 'DimerSchool';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 400px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.15);
  line-height: 1;
  z-index: 0;
  font-family: 'Arial', sans-serif;
}

.howard-hero-section::before {
  left: 0;
}

.howard-hero-section::after {
  right: 0;
}

.howard-hero-section .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

.howard-hero-carousel {
  height: 100%;
  width: 100%;
}

.howard-hero-carousel .owl-stage-outer,
.howard-hero-carousel .owl-stage,
.howard-hero-carousel .owl-item {
  height: 100%;
  width: 100%;
}

.howard-hero-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
}

.howard-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.howard-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.howard-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 45, 110, 0.95) 0%, rgba(0, 45, 110, 0.5) 50%, rgba(0, 45, 110, 0.95) 100%);
  z-index: 2;
}

.howard-hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  z-index: 3;
  padding: 20px;
}

.howard-hero-logo {
  margin-bottom: 20px;
}

.howard-hero-year {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.howard-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.howard-hero-description {
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.95;
}

.howard-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.howard-hero-btn {
  padding: 12px 40px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  min-width: 200px;
}

.howard-hero-btn-primary {
  background-color: var(--howard-gold);
  color: var(--howard-dark);
}

.howard-hero-btn-primary:hover {
  background-color: var(--howard-white);
  transform: translateY(-2px);
}

.howard-hero-btn-secondary {
  background-color: var(--howard-gold);
  color: var(--howard-dark);
}

.howard-hero-btn-secondary:hover {
  background-color: var(--howard-white);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .howard-hero-title {
    font-size: 2.5rem;
  }

  .howard-hero-description {
    font-size: 1rem;
  }

  .howard-hero-btn {
    min-width: 150px;
    padding: 10px 30px;
  }
}

/* Howard Gallery Page Styles */
.howard-gallery-hero {
  position: relative;
  width: 100%;
  padding: 120px 0;
  color: white;
  text-align: center;
}

.howard-gallery-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.howard-gallery-hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 400;
}

.howard-gallery-section {
  padding: 80px 0;
  background-color: var(--howard-white);
}

.howard-gallery-filters {
  margin-bottom: 50px;
  text-align: center;
}

.howard-gallery-filters li a {
  color: var(--howard-gray);
  font-weight: 600;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.howard-gallery-filters li a:hover,
.howard-gallery-filters li a.active {
  color: var(--howard-blue);
  border-bottom-color: var(--howard-blue);
}

.howard-gallery-grid {
  gap: 30px;
  margin: 0;
}

.howard-gallery-item {
  list-style: none;
  margin-bottom: 30px;
}

.howard-gallery-link {
  text-decoration: none;
  display: block;
}

.howard-gallery-card {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-radius: 0;
  overflow: hidden;
}

.howard-gallery-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.howard-gallery-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.howard-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.howard-gallery-card:hover .howard-gallery-image img {
  transform: scale(1.05);
}

.howard-gallery-content {
  padding: 25px;
}

.howard-gallery-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--howard-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.howard-gallery-meta {
  color: var(--howard-gray);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.howard-gallery-meta span {
  color: var(--howard-blue);
  font-weight: 600;
}

.howard-gallery-text {
  color: var(--howard-gray);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.howard-gallery-more {
  color: var(--howard-blue);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.howard-gallery-more::after {
  content: '→';
  font-size: 1.1rem;
}

.howard-gallery-card:hover .howard-gallery-more {
  color: var(--howard-red);
  gap: 12px;
}

/* Gallery View Overlay */
.howard-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.85) 0%, rgba(179, 0, 0, 0.8) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.howard-gallery-card:hover .howard-gallery-overlay {
  opacity: 1;
}

.howard-gallery-btn {
  width: 60px;
  height: 60px;
  background-color: var(--howard-gold);
  color: var(--howard-dark);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 199, 44, 0.4);
}

.howard-gallery-btn:hover {
  background-color: var(--howard-white);
  color: var(--howard-blue);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .howard-gallery-hero {
    padding: 80px 0;
  }
  
  .howard-gallery-hero-title {
    font-size: 2.5rem;
  }
  
  .howard-gallery-image {
    height: 200px;
  }
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--howard-dark);
  background-color: var(--howard-white);
}

/* Howard Header Styles */
.main-header {
  position: sticky;

  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.main-header .container {
  padding-left: 15px;
  padding-right: 15px;
}

/* Howard Utility Bar */
.howard-utility-bar {
  background: linear-gradient(90deg, var(--howard-blue) 0%, #002d6e 100%);
  color: var(--howard-white);
  padding: 8px 0;
  font-size: 14px;
}

.howard-utility-bar .row {
  align-items: center;
}

.utility-links,
.utility-actions {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.utility-links {
  justify-content: flex-start;
}

.utility-actions {
  justify-content: flex-end;
}

.utility-links a,
.utility-actions a {
  color: var(--howard-white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.utility-links a:hover,
.utility-actions a:hover {
  color: var(--howard-gold);
}

.login-link {
  font-weight: 600 !important;
  padding: 8px 18px !important;
  background: rgba(255, 199, 44, 0.15);
  border-radius: 4px;
  border: 1px solid rgba(255, 199, 44, 0.3);
}

.login-link:hover {
  background: var(--howard-gold);
  color: var(--howard-dark) !important;
}

/* Howard Main Nav */
.howard-main-nav {
  background: linear-gradient(90deg, var(--howard-blue) 0%, #002d6e 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: static;
  top: auto;
  z-index: 1000;
  padding: 8px 0;
  border: none;
}

header.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

#strickyMenu {
  width: 100%;
}

.howard-main-nav a {
  color: var(--howard-white) !important;
}

.howard-main-nav .navbar-toggler {
  color: var(--howard-white) !important;
}

.howard-main-nav .login-link {
  color: var(--howard-white) !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
}

.howard-main-nav .login-link:hover {
  background: var(--howard-gold) !important;
  color: var(--howard-dark) !important;
}

.howard-logo img {
  max-height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.howard-logo:hover img {
  transform: scale(1.05);
}

/* Howard Nav Links */
.howard-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 20px 0;
  width: 100%;
}

.howard-nav-item {
  position: relative;
  width: 100%;
}

.howard-nav-link {
  color: #ffffff;/*var(--howard-dark);*/
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 12px 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  background-color: #001432;
  justify-content: space-between;
  gap: 8px;
  letter-spacing: 0.3px;
  border-bottom: 1px solid #eee;
}

.howard-nav-link:hover,
.howard-nav-link.active {
  color: var(--howard-blue);
  background-color: rgba(0,71,171,0.05);
}

.howard-nav-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Howard Dropdown */
.howard-dropdown {
  position: static;
  width: 100%;
  background: var(--howard-white);
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin-top: 0;
  padding: 0;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: all 0.3s ease;
  z-index: 999;
  display: none;
  border-bottom: 1px solid #eee;
}

.howard-nav-item.has-dropdown.active .howard-dropdown,
.howard-nav-item.has-dropdown.show .howard-dropdown {
  display: block;
}

.howard-dropdown-item {
  padding: 10px 20px 10px 40px;
  color: var(--howard-white);
  text-decoration: none;
  font-weight: 500;
  display: block;
  transition: all 0.3s ease;
  background-color: var(--howard-dark);
}

.howard-dropdown-item:hover,
.howard-dropdown-item.active {
  background-color: var(--howard-blue);
  color: var(--howard-white);
  padding-left: 45px;
}

/* Make navbar toggler always visible */
.navbar-toggler {
  display: block !important;
  border: none;
  background: transparent;
  font-size: 24px;
  color: var(--howard-dark);
  cursor: pointer;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* Hide desktop nav, always show collapsed */
.navbar-collapse {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 25%;
  background-color: #001432;/*var(--howard-white);*/
  box-shadow: -5px 0 20px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
  z-index: 1050;
}

.navbar-collapse.show {
  transform: translateX(0);
}

/* Backdrop */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.menu-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.btn-close {
  background: transparent;
  border: none;
  cursor: pointer;
}

/* Howard Quick Actions */
.howard-quick-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.howard-search-btn {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--howard-blue) 0%, var(--howard-red) 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--howard-white);
  font-size: 18px;
  transition: all 0.3s ease;
}

.howard-search-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(0, 71, 171, 0.4);
}

/* Hero/Slider Section */
.main-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.main-slider .container-fluid {
  padding: 0;
}

.main-slider .slider-wrapper {
  position: relative;
  height: 750px;
}

.main-slider .image,
.main-slider .slider-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
  background-size: cover;
}

.main-slider .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.8) 0%, rgba(179, 0, 0, 0.6) 100%);
}

.main-slider .slider-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--howard-white);
  z-index: 10;
  width: 90%;
  max-width: 1200px;
}

.main-slider .slider-caption h1 {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);
  line-height: 1.1;
}

.main-slider .slider-caption .text {
  font-size: 1.4rem;
  margin-bottom: 35px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  line-height: 1.6;
}

.main-slider .link-btn {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.main-slider .link-btn .btn {
  padding: 16px 40px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

.main-slider .link-btn .btn:first-child {
  background-color: var(--howard-gold);
  color: var(--howard-dark);
  box-shadow: 0 4px 15px rgba(255, 199, 44, 0.3);
}

.main-slider .link-btn .btn:first-child:hover {
  background-color: var(--howard-white);
  color: var(--howard-blue);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 199, 44, 0.4);
}

.main-slider .link-btn .btn.btn1 {
  background-color: transparent;
  border: 2px solid var(--howard-white);
  color: var(--howard-white);
}

.main-slider .link-btn .btn.btn1:hover {
  background-color: var(--howard-white);
  color: var(--howard-blue);
  transform: translateY(-3px);
}

/* Features Section */
.modern-features {
  padding: 30px 0;
  background-color: var(--howard-light);
}

.modern-features .row {
  margin-top: 50px;
}

.feature-card {
  background: var(--howard-white);
  border-radius: 16px;
  padding: 50px 35px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(0, 71, 171, 0.18);
}

.feature-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--howard-blue) 0%, var(--howard-red) 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 28px auto;
  font-size: 2.3rem;
  color: var(--howard-white);
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 71, 171, 0.25);
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
}

.feature-title {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: var(--howard-dark);
}

.feature-description {
  font-size: 1.05rem;
  color: var(--howard-gray);
  margin-bottom: 30px;
  line-height: 1.7;
}

.feature-btn {
  display: inline-block;
  padding: 12px 32px;
  color: var(--howard-white);
  background: var(--howard-blue);
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.feature-btn:hover {
  background: var(--howard-red);
  color: var(--howard-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(179, 0, 0, 0.3);
}

/* Welcome/About Section */
.modern-welcome-section {
  padding: 120px 0;
}

.welcome-content {
  background: var(--howard-white);
  border-radius: 16px;
  padding: 60px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.welcome-title {
  font-size: 3rem;
  margin-bottom: 18px;
  font-weight: 800;
  color: var(--howard-blue);
  line-height: 1.2;
}

.welcome-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--howard-red);
  margin-bottom: 15px;
}

.welcome-decor .inner {
  display: inline-block;
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--howard-blue) 0%, var(--howard-red) 100%);
  border-radius: 3px;
  margin-bottom: 25px;
}

.welcome-description {
  font-size: 1.15rem;
  color: var(--howard-gray);
  line-height: 1.9;
}

.welcome-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.welcome-img,
.welcome-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Teachers Section */
.featured-doctors {
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.featured-doctors::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.97) 0%, rgba(179, 0, 0, 0.9) 100%);
}

.featured-doctors .container {
  position: relative;
  z-index: 1;
}

.sec-title {
  text-align: center;
  margin-bottom: 70px;
}

.sec-title h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--howard-white);
}

.sec-title p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 1080px;
  margin: 0 auto;
  line-height: 1.7;
}

.sec-title .decor .inner {
  display: inline-block;
  width: 100px;
  height: 5px;
  background-color: var(--howard-gold);
  border-radius: 3px;
  margin-top: 25px;
}

.featured-doctors .row {
  margin-top: 60px;
}

.bio-box {
  background: var(--howard-white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.bio-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.profile-img {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bio-box:hover .profile-img img {
  transform: scale(1.1);
}

.profile-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.85) 0%, rgba(179, 0, 0, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.bio-box:hover .overlay {
  opacity: 1;
}

.sm-links {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sm-links li a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--howard-white);
  color: var(--howard-blue);
  border-radius: 50%;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sm-links li a:hover {
  background-color: var(--howard-gold);
  color: var(--howard-dark);
  transform: translateY(-3px);
}

.txt-holder {
  padding: 0px 0px;
  text-align: center;
}

.txt-holder h5 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--howard-dark);
}

.txt-holder .designation {
  color: var(--howard-gray);
  font-size: 1rem;
  font-weight: 500;
}

/* News Section */
.news-section {
  padding: 120px 0;
}

.sec-title.text-left {
  text-align: left;
  margin-bottom: 60px;
}

.sec-title.text-left h2 {
  color: var(--howard-blue);
  font-size: 3rem;
}

.sec-title.text-left h4 {
  color: var(--howard-red);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.sec-title.text-left p {
  color: var(--howard-gray);
  font-size: 1.15rem;
  line-height: 1.7;
}

.news-post {
  background: var(--howard-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.news-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 71, 171, 0.18);
}

.news-post img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.news-post .position-relative {
  position: relative;
}

.news-post .position-absolute {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.news-post .text-white {
  color: var(--howard-white) !important;
}

.news-post .text-white h4 a {
  color: var(--howard-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.7rem;
  display: block;
  margin: 10px 0;
  line-height: 1.3;
}

.news-post .text-white h4 a:hover {
  color: var(--howard-gold);
}

.news-post .btn-1 {
  background-color: var(--howard-blue);
  color: var(--howard-white);
  display: block;
  width: 100%;
  padding: 20px 35px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.news-post .btn-1:hover {
  background-color: var(--howard-red);
  letter-spacing: 0.5px;
}

.side-heading1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--howard-blue);
  padding-bottom: 18px;
  border-bottom: 4px solid var(--howard-gold);
}

.recent-comments-list li {
  margin-bottom: 22px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.recent-comments-list li:hover {
  transform: translateX(12px);
}

.recent-comments-list li img {
  width: 110px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 18px;
}

.recent-comments-list li a {
  color: var(--howard-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.recent-comments-list li a:hover {
  color: var(--howard-blue);
}

.recent-comments-list .date-text {
  color: var(--howard-gray);
  font-size: 0.95rem;
}

/* Testimonial Section */
.modern-section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--howard-blue);
}

.section-header p {
  font-size: 1.15rem;
  color: var(--howard-gray);
  max-width: 1080px;
  margin: 0 auto;
  line-height: 1.7;
}

.modern-section .row {
  margin-top: 60px;
}

.testimonial-card {
  background: var(--howard-white);
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 45px rgba(0, 71, 171, 0.18);
}

.rating ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.rating ul li i {
  color: var(--howard-gold);
  font-size: 1.4rem;
}

.testimonial-text p {
  color: var(--howard-gray);
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.9;
  font-style: italic;
}

.testimonial-client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.client-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--howard-blue);
  box-shadow: 0 4px 12px rgba(0, 71, 171, 0.3);
}

.client-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  color: var(--howard-dark);
}

.client-info span {
  font-size: 1rem;
  color: var(--howard-gray);
  font-weight: 500;
}

/* Stats Section */
.stats-section {
  position: relative;
  padding: 140px 0;
  background-size: cover;
  background-position: center;
}

.bg-blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.95) 0%, rgba(179, 0, 0, 0.9) 100%);
  z-index: 1;
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stats-section .section-header h2 {
  color: var(--howard-white);
}

.stats-section .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.stats-section .row {
  margin-top: 70px;
}

.stats-card {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 50px 35px;
  text-align: center;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.4s ease;
  height: 100%;
}

.stats-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.stats-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px auto;
  font-size: 2.7rem;
  color: var(--howard-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stats-number {
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--howard-white);
  line-height: 1;
}

.stats-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.97);
}

/* Services Section */
.services-section {
  padding: 120px 0;
  background-color: var(--howard-light);
}

.services-section .row {
  margin-top: 60px;
}

.service-card {
  background: var(--howard-white);
  border-radius: 16px;
  padding: 0px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  aspect-ratio: 1 / 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 45px rgba(0, 71, 171, 0.18);
}

.service-icon {
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, var(--howard-blue) 0%, var(--howard-red) 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px auto;
  font-size: 2.3rem;
  color: var(--howard-white);
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 71, 171, 0.25);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
}

.service-card h5 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--howard-dark);
}

.service-card p {
  font-size: 1.05rem;
  color: var(--howard-gray);
  line-height: 1.8;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, var(--howard-blue) 0%, var(--howard-red) 100%);
  border-radius: 16px;
  padding: 60px 50px;
  margin-top: 60px;
  /*display: flex;*/
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 35px;
  box-shadow: 0 10px 40px rgba(0, 71, 171, 0.3);
}

.cta-box h4 {
  color: var(--howard-gold);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.cta-box h3 {
  color: var(--howard-white);
  font-size: 2.3rem;
  font-weight: 800;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.btn-cta {
  background-color: var(--howard-gold);
  color: var(--howard-dark);
  padding: 18px 45px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 199, 44, 0.3);
}

.btn-cta:hover {
  background-color: var(--howard-white);
  color: var(--howard-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Howard Footer Styles */
.main-footer {
  background-color: var(--howard-dark);
  color: var(--howard-white);
}

.footer-area {
  padding: 80px 0 40px 0;
  position: relative;
}

/* Branch Section */
.howard-branch-section {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.branch-section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--howard-white);
  position: relative;
  padding-bottom: 20px;
}

.branch-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--howard-gold);
  border-radius: 2px;
}

/* Branch Tiles */
.branch-tile {
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.15) 0%, rgba(179, 0, 0, 0.1) 100%);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.branch-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--howard-blue) 0%, var(--howard-red) 50%, var(--howard-gold) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.branch-tile:hover,
.branch-tile.active {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--howard-gold);
  background: linear-gradient(135deg, rgba(0, 71, 171, 0.25) 0%, rgba(179, 0, 0, 0.2) 100%);
}

.branch-tile:hover::before,
.branch-tile.active::before {
  opacity: 1;
}

.branch-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--howard-blue) 0%, var(--howard-red) 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px auto;
  font-size: 2.2rem;
  color: var(--howard-white);
  transition: all 0.4s ease;
}

.branch-tile:hover .branch-icon,
.branch-tile.active .branch-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 71, 171, 0.4);
}

.branch-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--howard-white);
  transition: color 0.3s ease;
}

.branch-tile:hover .branch-title,
.branch-tile.active .branch-title {
  color: var(--howard-gold);
}

.branch-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 40px;
}

.footer-logo img {
  max-height: 70px;
  width: auto;
}

.social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social li a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--howard-white);
  border-radius: 50%;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social li a:hover {
  background-color: var(--howard-blue);
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 71, 171, 0.4);
}

.address-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.address-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.address-list li i {
  color: var(--howard-gold);
  font-size: 1.2rem;
  min-width: 20px;
}

.address-list li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.address-list li a:hover {
  color: var(--howard-gold);
}

.copyright {
  background-color: #111111;
  padding: 30px 0;
  margin-top: 60px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.copyright a {
  color: var(--howard-gold);
  text-decoration: none;
  font-weight: 600;
}

.copyright a:hover {
  color: var(--howard-blue);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--howard-blue) 0%, var(--howard-red) 100%);
  color: var(--howard-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0, 71, 171, 0.45);
  transition: all 0.3s ease;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.back-to-top:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 71, 171, 0.55);
  color: var(--howard-white);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* Howard Announcement Bar */
.howard-announcement {
  background: linear-gradient(90deg, var(--howard-blue) 0%, var(--howard-red) 100%);
  padding: 15px 0;
  color: var(--howard-white);
  text-align: center;
}

.howard-announcement .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.howard-announcement h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.howard-announcement a {
  background-color: var(--howard-gold);
  color: var(--howard-dark);
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.howard-announcement a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Howard Experience Section */
.howard-experience {
  padding: 30px 0;
  background-color: var(--howard-white);
}

.experience-card {
  background: var(--howard-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.experience-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 45px rgba(0, 71, 171, 0.15);
}

.experience-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.experience-content {
  padding: 30px 25px;
}

.experience-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--howard-dark);
}

.experience-content p {
  color: var(--howard-gray);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
}

.experience-link {
  color: var(--howard-blue);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.experience-link:hover {
  color: var(--howard-red);
  gap: 12px;
}

/* Core Values Section */
.howard-core-values {
  padding: 30px 0;
  background: linear-gradient(135deg, var(--howard-blue) 0%, var(--howard-red) 100%);
  color: var(--howard-white);
}

.howard-core-values .section-header h2 {
  color: var(--howard-white);
}

.howard-core-values .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.core-value-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  height: 100%;
}

.core-value-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.core-value-icon {
  width: 85px;
  height: 85px;
  background: var(--howard-gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
  font-size: 2.2rem;
  color: var(--howard-dark);
}

.core-value-card h4 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.core-value-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* Research Section */
.howard-research {
  padding: 30px 0;
  background-color: var(--howard-light);
}

.research-card {
  background: var(--howard-white);
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 50px;
  transition: all 0.4s ease;
}

.research-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 71, 171, 0.12);
}

.research-image-wrapper {
  flex-shrink: 0;
  width: 350px;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.research-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.research-content {
  flex: 1;
}

.research-content h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--howard-blue);
}

.research-content p {
  font-size: 1.1rem;
  color: var(--howard-gray);
  margin-bottom: 25px;
  line-height: 1.8;
}

/* Events Section */
.howard-events {
  padding: 30px 0;
  background-color: var(--howard-white);
}

.event-card {
  background: var(--howard-white);
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 35px;
  transition: all 0.3s ease;
  height: 100%;
}

.event-card:hover {
  border-color: var(--howard-blue);
  box-shadow: 0 10px 30px rgba(0, 71, 171, 0.12);
  transform: translateY(-5px);
}

.event-date {
  background: linear-gradient(135deg, var(--howard-blue) 0%, var(--howard-red) 100%);
  color: var(--howard-white);
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.event-date .date-day {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.event-date .date-month {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--howard-dark);
}

.event-card p {
  color: var(--howard-gray);
  margin-bottom: 5px;
  font-size: 0.95rem;
}

/* Programs Section */
.howard-programs {
  padding: 30px 0;
  background: linear-gradient(135deg, var(--howard-light) 0%, #e9ecef 100%);
}

.program-card {
  background: var(--howard-white);
  border-radius: 16px;
  padding: 50px 35px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border-top: 4px solid transparent;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 71, 171, 0.15);
  border-top-color: var(--howard-gold);
}

.program-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--howard-blue) 0%, var(--howard-red) 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: var(--howard-white);
  transition: all 0.4s ease;
}

.program-card:hover .program-icon {
  transform: scale(1.1) rotate(5deg);
}

.program-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--howard-dark);
}

.program-card p {
  color: var(--how-gray);
  font-size: 1.05rem;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* Alumni Section */
.howard-alumni {
  padding: 30px 0;
  background-color: var(--howard-white);
}

.alumni-card {
  background: var(--howard-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
}

.alumni-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 71, 171, 0.15);
}

.alumni-image-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.alumni-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.alumni-card:hover .alumni-image {
  transform: scale(1.08);
}

.alumni-content {
  padding: 30px 25px;
}

.alumni-content h4 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--howard-dark);
}

.alumni-content .alumni-class {
  font-size: 1rem;
  font-weight: 700;
  color: var(--howard-blue);
  margin-bottom: 10px;
}

.alumni-content p {
  color: var(--howard-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.alumni-content .alumni-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--howard-blue);
  font-weight: 700;
  text-decoration: none;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.alumni-content .alumni-link:hover {
  color: var(--howard-red);
  gap: 10px;
}

/* Campus Experience Section */
.howard-campus {
  padding: 30px 0;
  background: linear-gradient(135deg, var(--howard-blue) 0%, var(--howard-red) 100%);
  color: var(--howard-white);
}

.campus-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  transition: all 0.4s ease;
}

.campus-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.campus-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--howard-gold);
}

.campus-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.campus-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--howard-gold);
  color: var(--howard-dark);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.campus-link:hover {
  background-color: var(--howard-white);
  color: var(--howard-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Final CTA Section */
.howard-final-cta {
  padding: 25px 0;
  background-color: var(--howard-white);
  text-align: center;
}

.howard-final-cta h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--howard-dark);
  margin-bottom: 15px;
}

.howard-final-cta p {
  font-size: 1.15rem;
  color: var(--howard-gray);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: linear-gradient(135deg, var(--howard-blue) 0%, var(--howard-red) 100%);
  color: var(--howard-white);
  padding: 16px 40px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 71, 171, 0.4);
  color: var(--howard-white);
}

.cta-btn-secondary {
  background-color: transparent;
  color: var(--howard-blue);
  padding: 16px 40px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border: 2px solid var(--howard-blue);
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  background-color: var(--howard-blue);
  color: var(--howard-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 71, 171, 0.25);
}

.cta-btn-tertiary {
  background-color: var(--howard-gold);
  color: var(--howard-dark);
  padding: 16px 40px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
}

.cta-btn-tertiary:hover {
  background-color: var(--howard-dark);
  color: var(--howard-gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Center actions (Give/Apply) */
.center-actions {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.center-actions a {
  color: var(--howard-dark);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.center-actions a:hover {
  color: var(--howard-blue);
}

/* Right section */
.right-section {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .navbar-collapse {
    width: 80%;
  }
}
/* Howard What's Happening Section */
.howard-whats-happening {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--howard-blue) 0%, #002d6e 100%);
}

/* Featured News */
.howard-featured-news {
  position: relative;
}

.howard-featured-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.howard-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.howard-featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  padding: 40px 30px 30px;
}

.howard-featured-content {
  color: white;
}

.howard-featured-date {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.howard-featured-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.3;
}

.howard-featured-title a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.howard-featured-title a:hover {
  color: var(--howard-gold);
}

.howard-featured-excerpt {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.95;
  margin: 0;
}

.howard-featured-more {
  display: inline-block;
  background-color: var(--howard-gold);
  color: var(--howard-dark);
  padding: 15px 30px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0;
}

.howard-featured-more:hover {
  background-color: var(--howard-white);
  transform: translateY(-2px);
}

/* Recent News Sidebar */
.howard-recent-news-sidebar {
  background-color: transparent;
}

.howard-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 12px 20px;
  margin-bottom: 20px;
}

.howard-news-label {
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.howard-view-all-small {
  color: white;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.howard-view-all-small:hover {
  color: var(--howard-gold);
}

.howard-recent-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.howard-recent-item {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.howard-recent-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.howard-recent-date {
  color: var(--howard-gold);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.howard-recent-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.howard-recent-title a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.howard-recent-title a:hover {
  color: var(--howard-gold);
}

@media (max-width: 576px) {
  .navbar-collapse {
    width: 85%;
  }
  .center-actions {
    gap: 15px;
  }
  .login-link span {
    display: none;
  }
  .howard-whats-happening {
    padding: 60px 0;
  }
  .howard-whats-happening-header h2 {
    font-size: 1.8rem;
  }
  .howard-news-title {
    font-size: 1.3rem;
  }
}

/* Howard Pagination */
.howard-pagination {
    margin-top: 60px;
    text-align: center;
}

.howard-pagination .pagination-bx {
    display: inline-flex;
    justify-content: center;
    gap: 8px;
}

.howard-pagination a,
.howard-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 8px 16px;
    background: var(--howard-white);
    color: var(--howard-gray);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.howard-pagination a:hover,
.howard-pagination span.active,
.howard-pagination span.current {
    background: var(--howard-blue);
    color: var(--howard-white);
    border-color: var(--howard-blue);
}

.howard-pagination span.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
