/* Custom CSS for Lav Vidya Peeth Website */

/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700&family=Raleway:wght@400;600;700&display=swap");

/* Custom CSS for Lav Vidya Peeth Website */

/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700&family=Raleway:wght@400;600;700&display=swap");

/* Root Variables */
:root {
  --primary-color: #2c5aa0;
  --secondary-color: #f8b500;
  --accent-color: #e74c3c;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --white: #ffffff;
}

/* Logo Styles */
.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
}

/* .logo-img {
  width: 110px;
  height: 110px;
  transition: transform 0.3s ease;
} */

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

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  text-align: left;
}

.logo-text .main-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Raleway", sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.logo-text .hindi-text {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent-color);
  margin: 0;
  line-height: 1.2;
  font-family: "Noto Sans Devanagari", sans-serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.logo-text .tagline {
  font-size: 1.1rem;
  color: var(--dark-color);
  margin: 0;
  font-style: italic;
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.5px;
}

/* Footer Logo Styles */
.footer-logo {
  text-align: center;
  margin-bottom: 20px;
}

.footer-logo .logo-img {
  width: 60px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

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

.footer-logo h4 {
  font-size: 1.8rem;
  color: var(--white);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Raleway", sans-serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-logo .hindi-text {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin: 5px 0;
  font-family: "Noto Sans Devanagari", sans-serif;
}

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

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

/* Top Strip */
.top-strip {
  background: var(--dark-color);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.9rem;
}

.contact-info span {
  margin-right: 20px;
}

.contact-info i {
  margin-right: 5px;
  color: var(--secondary-color);
}

.social-icons a {
  color: var(--white);
  margin-left: 10px;
  font-size: 1rem;
  transition: var(--transition);
}

.social-icons a:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

/* Header */
.header {
  background: var(--white);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}

.logo-img {
  width: 110px;
  height: 110px;
  transition: transform 0.3s ease;
  object-fit: contain;
  flex-shrink: 0;
}

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

.logo-text {
  text-align: left;
}

.logo-text h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Raleway", sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-text .hindi-text {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-color);
  margin: 5px 0;
  line-height: 1.3;
  font-family: "Noto Sans Devanagari", sans-serif;
}

.logo-text p {
  font-size: 1rem;
  color: var(--dark-color);
  margin: 0;
  font-style: italic;
  font-family: "Raleway", sans-serif;
}

.logo-text h3 {
  color: var(--primary-color);
  font-weight: 700;
  margin: 0;
  font-size: 1.5rem;
}

.logo-text p {
  color: var(--gray);
  margin: 0;
  font-size: 0.9rem;
}

.header-contact {
  display: flex;
  align-items: center;
  color: var(--primary-color);
}

.header-contact i {
  font-size: 2rem;
  margin-right: 15px;
  color: var(--secondary-color);
}

.header-contact span {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
}

.header-contact strong {
  font-size: 1.1rem;
  color: var(--primary-color);
}

/* Navigation */
.navbar {
  background: var(--primary-color) !important;
  padding: 15px 0;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 10px;
  padding: 10px 15px !important;
  border-radius: 5px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: var(--secondary-color);
  color: var(--dark-color) !important;
  transform: translateY(-2px);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.dropdown-item {
  padding: 10px 20px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--secondary-color);
  color: var(--dark-color);
}

/* News Ticker */
.news-ticker {
  background: var(--secondary-color);
  padding: 10px 0;
  overflow: hidden;
}

.ticker-wrapper {
  display: flex;
  align-items: center;
}

.ticker-label {
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: 600;
  margin-right: 20px;
  white-space: nowrap;
}

.ticker-content {
  flex: 1;
  overflow: hidden;
}

.ticker-item {
  display: flex;
  animation: scroll 30s linear infinite;
}

.ticker-item span {
  margin-right: 50px;
  white-space: nowrap;
  font-weight: 500;
  color: var(--dark-color);
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Hero Slider */
.hero-slider {
  position: relative;
}

.carousel-item {
  height: 600px;
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.carousel-caption p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: var(--light-color);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-indicators button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 5px;
}

/* About Us Section */
.about-us {
  padding: 80px 0;
}

.about-content {
  padding-right: 30px;
}

.about-features {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.about-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Vision & Mission */
.vision-mission {
  padding: 80px 0;
}

.vision-card,
.mission-card {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.card-icon i {
  font-size: 2rem;
  color: var(--white);
}

.vision-card h3,
.mission-card h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 80px 0;
}

.stat-item {
  text-align: center;
  padding: 30px;
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  backdrop-filter: blur(10px);
}

.stat-icon i {
  font-size: 2rem;
  color: var(--white);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
}

.gallery-grid {
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 90, 160, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: var(--white);
}

/* Footer */
.footer {
  background: var(--dark-color) !important;
  padding: 60px 0 20px;
}

.footer-widget h4,
.footer-widget h5 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light-color);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--light-color);
}

.contact-item i {
  width: 20px;
  margin-right: 15px;
  color: var(--secondary-color);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--light-color);
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0 20px;
}

/* Buttons */
.btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--secondary-color);
  color: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .about-features {
    flex-direction: column;
    gap: 15px;
  }

  .contact-info span {
    display: block;
    margin-bottom: 5px;
  }

  .social-icons {
    margin-top: 10px;
  }

  .header-contact {
    justify-content: center;
    margin-top: 20px;
  }

  .ticker-label {
    margin-right: 10px;
    font-size: 0.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .about-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  /* Mobile Logo Styles */
  .logo {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .logo-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 10px 0;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .logo-text {
    align-items: center;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .logo-text .main-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
    white-space: normal;
    line-height: 1.1;
    text-align: center;
    margin: 0;
  }

  .logo-text .hindi-text {
    font-size: 1.5rem;
    white-space: normal;
    line-height: 1.1;
    text-align: center;
    margin: 0;
  }

  .logo-text .tagline {
    font-size: 0.9rem;
    margin: 5px 0 0 0;
    text-align: center;
  }

  .logo-img {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto;
    display: block;
  }

  /* Mobile Header Styles */
  .header {
    padding: 10px 0;
  }

  .header .row {
    flex-direction: column;
    gap: 15px;
  }

  .header .col-md-3,
  .header .col-md-6,
  .header .col-md-3 {
    width: 100%;
    text-align: center;
  }

  .header-contact {
    justify-content: center;
    margin-top: 10px;
    font-size: 0.9rem;
  }

  .header-contact strong {
    font-size: 0.9rem;
  }

  /* Mobile Top Strip */
  .top-strip {
    padding: 8px 0;
  }

  .top-strip .row {
    flex-direction: column;
    gap: 10px;
  }

  .top-strip .col-lg-6,
  .top-strip .col-md-6 {
    width: 100%;
    text-align: center !important;
  }

  .contact-info {
    text-align: center;
    margin-bottom: 10px;
  }

  .contact-info span {
    display: block;
    margin-bottom: 5px;
    font-size: 0.85rem;
  }

  .social-icons {
    margin-top: 10px;
    justify-content: center;
    display: flex;
  }

  .social-icons a {
    margin: 0 5px;
  }

  /* Mobile Footer Styles */
  .footer {
    text-align: center;
  }

  .footer-widget {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer-widget h4,
  .footer-widget h5 {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-logo {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-logo img {
    margin-right: 0;
    margin-bottom: 10px;
    width: 60px;
    height: 60px;
  }

  .footer-logo h4 {
    margin: 10px 0 5px 0;
    text-align: center;
  }

  .footer-logo h5 {
    margin: 5px 0 0 0;
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links li {
    text-align: center;
  }

  .contact-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 20px;
  }

  .contact-item i {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .hours-item {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 15px;
  }

  .social-links {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .social-links a {
    margin-right: 0;
  }

  /* Mobile Footer Bottom */
  .footer .row:last-child {
    text-align: center;
  }

  .footer .row:last-child .col-md-6 {
    text-align: center !important;
  }

  .footer .row:last-child .col-md-6:last-child {
    text-align: center !important;
    margin-top: 10px;
  }

  /* Mobile Header Layout Fix */
  .header .row {
    justify-content: center;
  }

  .header .col-lg-3,
  .header .col-md-4 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    text-align: center;
  }

  .header-contact {
    text-align: center;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .header-contact i {
    margin-bottom: 5px;
  }

  .header-contact div {
    text-align: center;
  }
}

/* Tablet and Medium Devices */
@media (max-width: 992px) and (min-width: 769px) {
  .logo-text .main-title {
    font-size: 2.2rem;
    letter-spacing: 1.5px;
  }

  .logo-text .hindi-text {
    font-size: 1.8rem;
  }

  .logo-text .tagline {
    font-size: 1rem;
  }

  .logo-img {
    width: 90px !important;
    height: 90px !important;
  }

  .header-contact {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    height: 400px;
  }

  .carousel-caption {
    padding: 20px;
  }

  .carousel-caption h1 {
    font-size: 1.5rem;
  }

  /* Extra Small Mobile Logo Styles */
  .logo-text .main-title {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    text-align: center;
    margin: 0;
  }

  .logo-text .hindi-text {
    font-size: 1.2rem;
    text-align: center;
    margin: 0;
  }

  .logo-text .tagline {
    font-size: 0.8rem;
    text-align: center;
    margin: 5px 0 0 0;
  }

  .logo-img {
    width: 70px !important;
    height: 70px !important;
    margin: 0 auto;
    display: block;
  }

  /* Small Mobile Header */
  .header-contact {
    font-size: 0.8rem;
  }

  .header-contact i {
    font-size: 0.9rem;
  }

  .contact-info span {
    font-size: 0.8rem;
  }

  .social-icons a {
    font-size: 0.9rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  /* Navigation adjustments */
  .navbar {
    padding: 10px 0;
  }

  .navbar-nav {
    text-align: center;
    width: 100%;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding: 12px 15px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  .dropdown-menu {
    text-align: center;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    margin-top: 0;
  }

  .dropdown-item {
    font-size: 0.9rem;
    padding: 10px 15px;
    text-align: center;
  }

  /* Small Mobile Footer Styles */
  .footer-logo img {
    width: 50px;
    height: 50px;
  }

  .footer-logo h4 {
    font-size: 1.3rem;
  }

  .footer-logo h5 {
    font-size: 1.1rem;
  }

  .footer-widget h5 {
    font-size: 1.1rem;
  }

  .contact-item {
    font-size: 0.9rem;
  }

  .hours-item {
    font-size: 0.9rem;
  }

  .social-links a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 0.9rem;
  }

  .navbar-toggler {
    border: 2px solid white;
    padding: 6px 10px;
  }

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

  .about-features {
    text-align: center;
  }

  .feature-item {
    justify-content: center;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Additional Styles for About Page and Other Pages */

/* Page Header */
.page-header {
  position: relative;
  color: white;
}

.breadcrumb {
  background: none;
  padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
  text-decoration: none;
}

/* About Content */
.about-content {
  background: var(--white);
}

.content-wrapper {
  padding-right: 30px;
}

.philosophy-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  transition: var(--transition);
}

.philosophy-item:hover {
  background: var(--light-color);
  transform: translateY(-5px);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.icon-wrapper i {
  font-size: 1.5rem;
  color: var(--white);
}

.custom-list {
  list-style: none;
  padding: 0;
}

.custom-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-color);
}

.custom-list li:last-child {
  border-bottom: none;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.achievement-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: var(--light-color);
  border-radius: 10px;
  transition: var(--transition);
}

.achievement-item:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.achievement-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
}

/* Sidebar */
.sidebar {
  padding-left: 30px;
}

.sidebar-widget {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.sidebar-widget h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.fact-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-color);
}

.fact-item:last-child {
  border-bottom: none;
}

.fact-label {
  font-weight: 500;
  color: var(--gray);
}

.fact-value {
  font-weight: 600;
  color: var(--primary-color);
}

.accreditation-list {
  list-style: none;
  padding: 0;
}

.accreditation-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.accreditation-list i {
  color: var(--success);
  margin-right: 10px;
}

.hours-list .hours-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-color);
}

.hours-list .hours-item:last-child {
  border-bottom: none;
}

/* Contact Page Styles */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  border: 2px solid var(--light-color);
  border-radius: 10px;
  padding: 12px 15px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

.contact-info-card {
  background: var(--primary-color);
  color: var(--white);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
}

.contact-info-item {
  margin-bottom: 30px;
}

.contact-info-item i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.contact-info-item h5 {
  margin-bottom: 10px;
}

/* Gallery Page Styles */
.gallery-filter {
  text-align: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--light-color);
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 25px;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Admission Page Styles */
.admission-process {
  background: var(--light-color);
  padding: 80px 0;
}

.process-step {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 30px;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
}

.admission-form {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Facilities Page Styles */
.facility-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  margin-bottom: 30px;
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.facility-image {
  height: 200px;
  overflow: hidden;
}

.facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.facility-card:hover .facility-image img {
  transform: scale(1.1);
}

.facility-content {
  padding: 25px;
}

.facility-content h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* News and Events Styles */
.news-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  margin-bottom: 30px;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.news-image {
  height: 200px;
  overflow: hidden;
}

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

.news-content {
  padding: 25px;
}

.news-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--gray);
  font-size: 0.9rem;
}

.news-meta i {
  margin-right: 5px;
}

.news-meta span {
  margin-right: 15px;
}

.news-title {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.news-title a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.news-title a:hover {
  color: var(--secondary-color);
}

/* Message Pages Styles */
.message-section {
  padding: 80px 0;
}

.message-card {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.message-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 30px;
  overflow: hidden;
  border: 5px solid var(--secondary-color);
}

.message-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-title {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.message-subtitle {
  color: var(--gray);
  margin-bottom: 30px;
  font-style: italic;
}

.message-content {
  text-align: left;
  line-height: 1.8;
}

.message-quote {
  background: var(--light-color);
  padding: 20px;
  border-left: 4px solid var(--primary-color);
  margin: 20px 0;
  font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .content-wrapper,
  .sidebar {
    padding-left: 0;
    padding-right: 0;
  }

  .sidebar {
    margin-top: 40px;
  }

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

  .philosophy-item {
    margin-bottom: 20px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-info-card {
    padding: 20px;
    margin-top: 30px;
  }

  .message-card {
    padding: 20px;
  }

  .message-photo {
    width: 120px;
    height: 120px;
  }
}

/* Admission Page Specific Styles */
.date-card {
  background: var(--light-color);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  transition: var(--transition);
}

.date-card:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.date-card h5 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.date-card i {
  margin-right: 10px;
}

.fee-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-color);
}

.fee-item:last-child {
  border-bottom: none;
}

.fee-item span:last-child {
  font-weight: 600;
  color: var(--primary-color);
}

/* Gallery Page Specific Styles */
.gallery-item-wrapper {
  transition: all 0.3s ease;
}

.gallery-overlay h5 {
  color: var(--white);
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 500;
}

.filter-buttons {
  margin-bottom: 30px;
}

.filter-btn {
  background: var(--light-color);
  border: none;
  padding: 10px 20px;
  margin: 0 5px 10px;
  border-radius: 25px;
  transition: var(--transition);
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Enhanced Gallery Item Styles */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(44, 90, 160, 0.9),
    rgba(248, 181, 0, 0.9)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  text-align: center;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 10px;
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .gallery-item {
    height: 250px;
    margin-bottom: 20px;
  }

  .filter-btn {
    margin: 0 2px 10px;
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .gallery-overlay h5 {
    font-size: 0.9rem;
  }

  .gallery-overlay i {
    font-size: 2rem;
  }
}

/* Facilities Page Specific Styles */
.facility-features {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.facility-features li {
  padding: 5px 0;
  color: var(--gray);
  position: relative;
  padding-left: 20px;
}

.facility-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.campus-tour-cta {
  position: relative;
}

.cta-content h2 {
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-box {
  background: var(--white);
  padding: 40px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.feature-box:hover .feature-icon {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--white);
}

.feature-box h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-box p {
  color: var(--gray);
  line-height: 1.6;
}

/* Message Pages Specific Styles */
.message-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.message-card {
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.message-photo {
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--primary-color);
}

.message-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 10px;
}

.message-subtitle {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.message-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--primary-color);
  background: var(--light-gray);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  position: relative;
}

.message-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--secondary-color);
  position: absolute;
  top: -10px;
  left: 20px;
}

.message-content {
  text-align: left;
}

.message-content p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--gray);
}

/* News Page Specific Styles */
.news-section {
  padding: 80px 0;
}

.featured-news {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-news .news-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.featured-news .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.news-content {
  padding: 30px;
}

.news-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.news-date,
.news-category {
  font-size: 0.9rem;
  color: var(--gray);
}

.news-category {
  background: var(--light-gray);
  padding: 3px 10px;
  border-radius: 15px;
}

.news-title {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.news-excerpt {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  height: 100%;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.news-card .news-image {
  height: 200px;
  overflow: hidden;
}

.news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-card .news-content {
  padding: 20px;
}

.news-card .news-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--secondary-color);
}

/* Sidebar Styles */
.sidebar {
  padding-left: 30px;
}

.sidebar-widget {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid var(--light-gray);
  padding-bottom: 10px;
}

.recent-news-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--light-gray);
}

.recent-news-item:last-child {
  border-bottom: none;
}

.recent-news-date {
  background: var(--primary-color);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 50px;
  text-align: center;
}

.recent-news-content h6 {
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.recent-news-content p {
  color: var(--gray);
  font-size: 0.85rem;
  margin: 0;
}

.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list a {
  color: var(--gray);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  transition: var(--transition);
}

.category-list a:hover {
  color: var(--primary-color);
}

.category-list span {
  background: var(--light-gray);
  color: var(--gray);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
}

.newsletter-widget {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
}

.newsletter-widget .widget-title {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-control {
  border: none;
  border-radius: 25px 0 0 25px;
}

.newsletter-form .btn {
  border-radius: 0 25px 25px 0;
  background: var(--white);
  color: var(--primary-color);
  border: none;
}

/* Events Page Specific Styles */
.events-section {
  padding: 80px 0;
}

.event-filters {
  margin-bottom: 50px;
}

.event-filters .btn {
  margin: 5px;
  border-radius: 25px;
  padding: 10px 25px;
}

.event-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.event-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  z-index: 2;
  min-width: 60px;
}

.event-day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-month {
  font-size: 0.8rem;
  font-weight: 600;
}

.event-image {
  height: 200px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.event-card:hover .event-image img {
  transform: scale(1.1);
}

.event-content {
  padding: 25px;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}

.event-time,
.event-location {
  font-size: 0.9rem;
  color: var(--gray);
}

.event-title {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

.event-description {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-category {
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

.event-category.academic {
  background: #007bff;
}

.event-category.sports {
  background: #28a745;
}

.event-category.cultural {
  background: #dc3545;
}

.event-category.community {
  background: #ffc107;
  color: var(--dark);
}

/* Calendar Widget */
.calendar-widget {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-header h4 {
  color: var(--primary-color);
  margin: 0;
}

.calendar-nav {
  display: flex;
  gap: 10px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
}

.calendar-day {
  background: var(--white);
  padding: 15px 5px;
  text-align: center;
  font-size: 0.9rem;
  position: relative;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-day.header {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  min-height: 40px;
}

.calendar-day.event-day {
  background: var(--light-gray);
  color: var(--primary-color);
  font-weight: 600;
}

.event-dot {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 6px;
  height: 6px;
  background: var(--secondary-color);
  border-radius: 50%;
}

/* Responsive Design for Additional Pages */
@media (max-width: 768px) {
  .message-card {
    padding: 30px 20px;
  }

  .message-photo {
    width: 150px;
    height: 150px;
  }

  .sidebar {
    padding-left: 0;
    margin-top: 50px;
  }

  .event-meta {
    font-size: 0.8rem;
  }

  .calendar-day {
    padding: 10px 2px;
    font-size: 0.8rem;
    min-height: 40px;
  }

  .calendar-day.header {
    min-height: 35px;
  }
}

/* Latest News & Founder's Message Section */
.news-founder-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.latest-news-card,
.founder-message-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-height: 650px;
  height: 650px;
  display: flex;
  flex-direction: column;
}

.latest-news-card .card-header,
.founder-message-card .card-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 20px;
  text-align: center;
  flex-shrink: 0;
}

.news-icon,
.founder-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
}

.latest-news-card h3,
.founder-message-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 10px;
}

.latest-news-card .card-header p,
.founder-message-card .card-header p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* News Container Styles */
.news-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.news-scroll {
  height: 100%;
  overflow-y: auto;
  padding: 0;
  animation: verticalScroll 30s linear infinite;
}

@keyframes verticalScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.news-scroll:hover {
  animation-play-state: paused;
}

.news-item {
  padding: 20px;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  background: white;
  border-radius: 10px;
  margin: 10px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.news-item:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-item:last-child {
  margin-bottom: 10px;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.news-date {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-date i {
  font-size: 0.8rem;
}

.news-badge {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.news-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 0 10px;
  line-height: 1.3;
}

.news-excerpt {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  text-align: justify;
}

/* Founder's Message Styles */
.founder-content {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.founder-image {
  text-align: center;
  padding: 20px 20px 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.founder-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}

.founder-image h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
}

.founder-title {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 5px 0 0;
}

.founder-message {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.message-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

.message-text:last-of-type {
  margin-bottom: 20px;
}

.btn-founder {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-founder:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
  color: white;
}

.btn-founder i {
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 991px) {
  .latest-news-card,
  .founder-message-card {
    height: auto;
    max-height: 550px;
    margin-bottom: 30px;
  }

  .news-container {
    max-height: 450px;
  }

  .news-scroll {
    animation: none;
  }

  .founder-content {
    height: auto;
  }
}

@media (max-width: 767px) {
  .latest-news-card h3,
  .founder-message-card h3 {
    font-size: 1.3rem;
  }

  .news-icon,
  .founder-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .founder-image img {
    width: 70px;
    height: 70px;
  }

  .news-item {
    padding: 15px;
    margin: 8px;
  }

  .founder-message {
    padding: 15px;
  }

  .latest-news-card,
  .founder-message-card {
    max-height: 500px;
  }

  .news-badge {
    width: 25px;
    height: 25px;
    font-size: 0.7rem;
  }
}
