@import url("fonts.css");
/* ==========================================================================
   SIB SHInE - Global Stylesheet
   ========================================================================== */
:root {
  --footer-bg: #0b1a32;
  --light-bg: #e3effae7;
  --scroll-bg: #575757c5;
}
/* ---------------------------------------------------
   1. Base & Typography
   --------------------------------------------------- */
html{
  max-width: 100%;
  overflow-x: hidden;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  color: #333;
  padding-top: 76px; /* Offset to prevent content hiding behind fixed navbar */
}
section.bg-light {
  --background-color: #e3effae7;
  background-color: var(--background-color) !important;
}
section.bg-glow {
  --background-color: #f3f3f386;
  background-color: var(--background-color) !important;
}
ul.bg-glow {
  --background-color: #f3f3f386;
  background-color: var(--background-color) !important;
}
.row.bg-light {
  --background-color: #e3effae7;
  background-color: var(--background-color) !important;
}
.card.bg-light {
  --background-color: #e3effae7;
  background-color: var(--background-color) !important;
}
/* ---------------------------------------------------
   2. Layout & Spacing
   --------------------------------------------------- */
.section-padding,
.content-section,
.batch-section {
  padding: 80px 0;
}

/* ---------------------------------------------------
   3. Navigation & Footer
   --------------------------------------------------- */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.footer-base {
  background-color: #0b1a32; /* Deep Navy Blue from image */
  color: #e0e0e0;
  padding: 60px 0 20px;
  border-top: 3px solid #0d6efd;
}

.footer-base h5,
.footer-base p,
.footer-base a {
  color: #ffffff !important;
  text-decoration: none;
}

.footer-base a:hover {
  color: #c5c5c5 !important;
  text-decoration: underline;
}

.footer-base small {
  color: #b0b0b0 !important;
}
.social-group a {
  color: #6c757d;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-group a:hover {
  color: #0d6efd;
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 30px;
  bottom: 30px;
  z-index: 99999;
  background-color: var(--scroll-bg);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  text-decoration: none;
  color: var(--light-bg);
}

.scroll-top i {
  font-size: 16px;

  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--light-bg);
  color: var(--footer-bg);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/* ---------------------------------------------------
   4. Hero & Page Headers
   --------------------------------------------------- */
.hero-section,
.page-header {
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-section {
  background-attachment: fixed;
  padding: 100px 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/home/home_banner.webp");
}

.page-header {
  padding: 80px 0;
}

/* Page-Specific Header Backgrounds */
.header-about,
.header-program,
.header-ecosystem {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/ecosystem/iitk_kgmus_innivation_ecosystem_banner.webp");
}

.header-members {
  padding: 100px 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/members/members_banner.webp");
}

.header-apply {
  padding: 100px 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/apply/apply_banner.webp");
}

/* ---------------------------------------------------
   5. Cards & UI Containers
   --------------------------------------------------- */
.feature-card,
.ecosystem-card,
.member-card,
.program-card,
.metric-card,
.why-card,
.selection-card,
.impact-card,
.index-card {
  border: none;
  border-radius: 12px;
  background-color: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover,
.ecosystem-card:hover,
.member-card:hover,
.program-card:hover,
.metric-card:hover,
.why-card:hover,
.selection-card:hover,
.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
  background-color: var(--light-bg);
}

.status-card {
  border: none;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.partner-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.partner-card img {
  transition: transform 0.3s ease;
  max-height: 140px;
  object-fit: contain;
  padding: 20px;
}

.partner-card:hover img {
  transform: scale(1.05);
}
.partner-card:hover {
  background-color: var(--light-bg);
}
.cohort-card,
.follow-up-card,
.gallery-card,
.voice-card {
  border: none;
  border-radius: 12px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.cohort-card:hover,
.follow-up-card:hover,
.voice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
}
.gallery-card:hover,
.index-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
  background-color: var(--light-bg);
}

/* ---------------------------------------------------
   6. Images & Icons
   --------------------------------------------------- */
.feature-icon,
.ecosystem-icon {
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 20px;
}

.img-featured {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.img-featured:hover {
  transform: translateY(-5px);
}

.philosophy-img,
.why-us-img {
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.member-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #e9ecef;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* ---------------------------------------------------
   7. Buttons & Elements
   --------------------------------------------------- */
.circle-button {
  border-radius: 50px !important; /* Forces the pill shape */
  padding: 10px 25px !important;
  white-space: nowrap; /* Prevents text inside the button from wrapping */
  transition: transform 0.3s ease;
}

/* Optional: Make buttons full-width on very small phones */
/* @media (max-width: 480px) {
  .circle-button {
    display: block;
    width: 100%;
    margin-bottom: 50px;
  }
} */

.btn-closed {
  background-color: #6c757d;
  color: white;
  font-weight: bold;
  padding: 12px 35px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  pointer-events: none; /* Disables click interactions */
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #0d6efd;
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.btn {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
/* Corrected selector: Removes the extra space */
.footer-base .btn-outline-light:hover {
  background-color: #ffffff !important; /* Use a hardcoded color if variable isn't working */
  color: #0b1a32 !important; /* Deep Navy */
  text-decoration: none !important;
  border-color: #ffffff !important;
}
.btn:hover {
  /* transform: translateY(-8px); */
}
/* ---------------------------------------------------
   8. Timeline Component (Program Page)
   --------------------------------------------------- */
.timeline-container {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("../images/bg_img/hd-3.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

.custom-timeline {
  position: relative;
  padding-left: 30px;
  list-style: none;
}

.custom-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 3px;
  background-color: #0d6efd;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -42px;
  top: 0;
  background: #0d6efd;
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  border: 3px solid #fff;
}

/* ---------------------------------------------------
   9. GAllERY Component (Program Page)
   --------------------------------------------------- */
.gallery-accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 8px !important;
  overflow: hidden;
}
.gallery-accordion .accordion-button {
  background-color: #fff;
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 20px;
  border-radius: 8px !important;
}
.gallery-accordion .accordion-button:not(.collapsed) {
  background-color: var(--footer-bg);
  color: var(--light-bg);
  box-shadow: none;
}
/* This targets the arrow icon inside the expanded button */
.gallery-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.portfolio-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
  background: #000;
}
.portfolio-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.portfolio-wrap:hover img {
  transform: scale(1.05);
  opacity: 0.7;
}
.portfolio-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}
.portfolio-links i {
  color: #fff;
  font-size: 2rem;
}
.gallery-section-title {
  border-left: 4px solid #0d6efd;
  padding-left: 15px;
  margin-top: 40px;
}
.goi_price {
  background-color: var(--footer-bg);
}
