/* ============================================
   SHEETALGANJ PRATAP MAHAVIDYALAYA - MAIN CSS
   ============================================ */

:root {
  --primary-color: #1e3a8a;
  --secondary-color: #f59e0b;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --info-color: #3b82f6;
  --light-bg: #f9fafb;
  --dark-text: #1f2937;
  --border-color: #e5e7eb;
}

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

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

/* ============================================
   TOP INFO BAR
   ============================================ */
.top-info-bar {
  background: linear-gradient(135deg, #bf222f 0%, #a91524 100%);
  color: white;
  padding: 12px 0;
  font-size: 0.9rem;
}

.top-info-bar .info-item {
  margin-right: 30px;
  display: inline-block;
}

.top-info-bar .info-item i {
  margin-right: 8px;
  color: var(--secondary-color);
}

.top-info-bar .btn-sm {
  margin-left: 10px;
  padding: 5px 12px;
  font-size: 0.85rem;
}

/* ============================================
   HEADER SECTION
   ============================================ */
.header-section {
  background: white;
  padding: 30px 0;
  border-bottom: 3px solid var(--secondary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.college-logo {
  font-size: 3rem;
  color: var(--primary-color);
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.college-logo-img {
  max-height: 110px;
  max-width: 110px;
  object-fit: contain;
}

.college-name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #d30015;
  margin: 0;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.college-tagline {
  font-size: 1.6rem;
  color: #3c3a35;
  margin: 0px 0 0 0;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar-custom {
  background: linear-gradient(90deg, #bd1826 0%, #a51221 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar-custom .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
  color: white !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.navbar-custom .dropdown-menu {
  background: white;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  animation: slideDown 0.3s ease;
}

.navbar-custom .dropdown-item {
  color: var(--dark-text);
  padding: 12px 20px;
  transition: all 0.3s ease;
}

.navbar-custom .dropdown-item:hover {
  background-color: var(--light-bg);
  color: var(--primary-color);
  padding-left: 25px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   HERO SLIDER SECTION
   ============================================ */
.hero-slider {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-slide {
  height: 70vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
  font-weight: 600;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
  bottom: 20px;
  margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: transparent;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-slider {
    height: 50vh;
    min-height: 400px;
  }

  .hero-slide {
    height: 50vh;
    min-height: 400px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    width: 200px;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 45vh;
    min-height: 350px;
  }

  .hero-slide {
    height: 45vh;
    min-height: 350px;
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
} /* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   HERO SECTION (Legacy - keep for compatibility)
   ============================================ */
.hero-section {
  background: linear-gradient(rgba(30, 58, 138, 0.7), rgba(30, 58, 138, 0.7)),
    url("https://via.placeholder.com/1200x400") center/cover;
  color: white;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="white" fill-opacity="0.1"/></svg>')
    repeat-x;
  animation: wave 15s linear infinite;
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(1200px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
  font-weight: 600;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
  color: white;
}

.btn-secondary-custom {
  background: var(--secondary-color);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-secondary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  color: white;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 50px;
  text-align: center !important;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 40px;
}

/* ============================================
   SECTION & CARD HEADINGS - colored underline
   Applies to headings used inside content sections and card bodies
   ============================================ */
.content-section h3,
.content-section h4,
.content-section h5,
.card-custom .card-body h3,
.card-custom .card-body h4,
.card-custom .card-body h5 {
  /* color: var(--primary-color); */
  color: #fd4d0a;
  display: inline-block; /* underline matches text width */
  padding-bottom: 6px;
  border-bottom: 3px solid var(--secondary-color);
  margin-top: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.card-custom .card-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 3px solid transparent;
}

/* ============================================
   CARDS
   ============================================ */
.card-custom {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 16%);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-custom .card-header {
  background: linear-gradient(135deg, #b80029 0%, #b3022a 100%);
  color: white;
  border: none;
  padding: 20px;
}

.card-custom .card-body {
  padding: 25px;
}

.card-custom .card-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.card-custom .card-header .card-title {
  color: white !important;
  margin-bottom: 0;
}

.card-custom {
  height: auto;
  min-height: unset;
}

.card-custom .card-text {
  color: #6b7280;
  line-height: 1.8;
}

/* ============================================
   LEADERSHIP TEAM
   ============================================ */
.team-member {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.team-member-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.team-member-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.team-member-title {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-member-desc {
  color: #6b7280;
  font-size: 0.95rem;
}

/* ============================================
   NEWS & UPDATES
   ============================================ */
.news-item {
  padding: 20px;
  border-left: 4px solid var(--secondary-color);
  background: var(--light-bg);
  border-radius: 8px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  /* Permanent card shadow */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.news-item:hover {
  /* Slightly stronger shadow and white background on hover */
  background: white;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.news-date {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

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

.news-content {
  color: #6b7280;
  line-height: 1.6;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.feature-box {
  text-align: center;
  padding: 40px 20px;
  border-radius: 12px;
  background: white;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: var(--light-bg);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-text {
  color: #6b7280;
  line-height: 1.6;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 138, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay-text {
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Notices / Accordion styling to resemble VBSSMV */
.accordion .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}
.accordion-button {
  background: white;
  color: var(--dark-text);
  font-weight: 700;
  padding: 14px 18px;
}
.accordion-button:not(.collapsed) {
  background: linear-gradient(
    90deg,
    var(--secondary-color) 0%,
    rgba(245, 158, 11, 0.06) 100%
  );
  color: var(--primary-color);
}
.accordion-button .fa-angle-right {
  transition: transform 0.25s ease;
  color: var(--secondary-color);
}
.accordion-button:not(.collapsed) .fa-angle-right {
  transform: rotate(90deg);
}
.accordion-body {
  background: var(--light-bg);
  color: #3b3b3b;
  padding: 18px;
  font-size: 0.98rem;
}
.notices-posted {
  font-size: 0.85rem;
  color: #6b7280;
}

/* NOTICE CARDS: make `.notice-item` look like a card with drop shadow */
.notice-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transition: all 0.25s ease;
  border: 1px solid rgba(15, 23, 42, 0.04);
}
.notice-item + .notice-item {
  margin-top: 16px;
}
.notice-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}
.notice-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 8px;
}
.notice-desc {
  color: #4b5563;
  line-height: 1.7;
}

/* Remove the global section-heading underline for notice titles */
.content-section .notice-item .notice-title,
.notice-item .notice-title {
  display: block; /* ensure block layout */
  padding-bottom: 0; /* remove underline spacing */
  border-bottom: none; /* remove the colored underline from .section-title rules */
  margin-top: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
  color: white;
  padding: 60px 0 0;
  margin-top: 80px;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.footer-section p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.social-links {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Fix for Related Pages links in cards */
.card-custom .card-body .footer-links {
  list-style: disc !important;
  padding-left: 20px !important;
}

.card-custom .card-body .footer-links li {
  list-style-type: disc !important;
  margin-bottom: 8px;
}

.card-custom .card-body .footer-links a {
  color: var(--primary-color) !important;
}

.card-custom .card-body .footer-links a:hover {
  color: var(--secondary-color) !important;
  padding-left: 5px;
}

.contact-info {
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.pio-info {
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid var(--secondary-color);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  color: white;
}

/* ============================================
   FORMS
   ============================================ */
.form-control,
.form-select {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-label {
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 8px;
}

/* ============================================
   TABLES
   ============================================ */
.table-custom {
  border-collapse: collapse;
  width: 100%;
}

.table-custom thead {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
  color: white;
}

.table-custom th {
  padding: 15px;
  font-weight: 700;
  text-align: left;
}

.table-custom td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--border-color);
}

.table-custom tbody tr:hover {
  background: var(--light-bg);
}

/* Bordered tables: horizontal and vertical lines */
.table-bordered-custom {
  border-collapse: collapse;
}
.table-bordered-custom th,
.table-bordered-custom td {
  border: 1px solid var(--border-color);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-custom {
  background: var(--light-bg);
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.breadcrumb-custom a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-custom a:hover {
  color: var(--secondary-color);
}

/* ============================================
   ALERTS
   ============================================ */
.alert-custom {
  border: none;
  border-left: 4px solid;
  border-radius: 8px;
  padding: 15px 20px;
}

.alert-custom.alert-info {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--info-color);
  color: var(--info-color);
}

.alert-custom.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--success-color);
  color: var(--success-color);
}

.alert-custom.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.alert-custom.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: var(--danger-color);
  color: var(--danger-color);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .college-name {
    font-size: 1.5rem;
  }

  .college-tagline {
    font-size: 1.3rem;
  }

  .college-logo {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .top-info-bar .info-item {
    display: block;
    margin-bottom: 10px;
    margin-right: 0;
  }

  .top-info-bar .btn-sm {
    margin-left: 0;
    margin-top: 5px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
  }

  .footer-section {
    padding: 40px 0 0;
  }

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

  .footer-bottom .col-md-6 {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .college-name {
    font-size: 1.6rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .team-member-avatar {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .navbar-custom .nav-link {
    padding: 8px 10px;
  }

  /* Mobile Center Alignment */
  .text-center-mobile {
    text-align: center !important;
  }

  .top-info-bar .col-md-6:first-child {
    text-align: center;
    margin-bottom: 10px;
  }

  .top-info-bar .info-item {
    display: block;
    margin: 5px 0;
  }

  .header-section .col-md-2 {
    margin-bottom: 15px;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-primary-custom {
  color: var(--primary-color);
}

.text-secondary-custom {
  color: var(--secondary-color);
}

/* Desktop Logo Right Alignment */
@media (min-width: 768px) {
  .text-end-desktop {
    text-align: right !important;
  }
}

/* Page Header Display Classes Override */
.display-6 {
  font-size: 2.5rem !important;
  line-height: 1.2 !important;
}

@media (max-width: 768px) {
  .display-6 {
    font-size: 2rem !important;
  }
}

@media (max-width: 576px) {
  .display-6 {
    font-size: 1.75rem !important;
  }
}

.bg-primary-custom {
  background: linear-gradient(135deg, #cf5570 0%, #a20024 100%);
  color: white;
}

.bg-light-custom {
  background: var(--light-bg);
}

.shadow-custom {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rounded-custom {
  border-radius: 12px;
}

.transition-smooth {
  transition: all 0.3s ease;
}

/* Full-bleed image utility: makes an image span the full viewport width */
.full-bleed-image {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  /* allow the image to be fully visible (no cropping) */
}
.full-bleed-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100vw;
  object-fit: contain; /* ensure the whole image is shown */
  max-height: 80vh; /* keep image inside viewport height on tall images */
  margin: 0 auto;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.6s ease;
}

/* ============================================
   FOUNDER / HIGHLIGHT STYLES
   ============================================ */
.founder-photo {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border: 4px solid rgba(255, 255, 255, 0.6);
}

.founder-caption {
  font-size: 0.95rem;
  color: #6b7280;
  margin-top: 10px;
}

.highlight {
  background: linear-gradient(
    90deg,
    rgba(245, 158, 11, 0.14),
    rgba(30, 58, 138, 0.06)
  );
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--primary-color);
  font-weight: 700;
}
