@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");

/* ==================== CORE DESIGN TOKENS ==================== */
:root {
  --primary-blue: #034B9F;
  --primary-orange: #B84110;
  --accent-yellow: #EDB600;
  --cream-bg: #FFF4EA;
  --text-dark: #262626;
  --text-muted: #666666;
  --white: #FFFFFF;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-dark);
}

/* ==================== TYPOGRAPHY ==================== */
.head {
  font-family: "Source Sans 3", sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .head {
    font-size: 32px;
  }
}

.subhead {
  font-family: "Source Sans 3", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-blue);
}

.text {
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.7;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange) 0%, var(--accent-yellow) 100%);
  border-radius: 2px;
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
  background: url("../img/breadcrumb-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

.breadcrumb h1 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 44px;
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
  text-transform: uppercase;
}

/* ==================== UTILITIES ==================== */
.bg-cream {
  background: var(--cream-bg);
}

.bg-white {
  background: var(--white);
}

/* ==================== OBJECTIVES SECTION ==================== */
.obj-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 500px;
  /* Centered and not too big */
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.obj-image-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.obj-image-accent {
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--primary-orange) 100%);
  border-radius: 20px;
  z-index: -1;
}

.obj-image-accent-right {
  left: auto;
  right: -15px;
}

.obj-standard-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.obj-list-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.obj-bullet {
  width: 26px;
  height: 26px;
  background: var(--primary-blue);
  /* All bullets blue as requested */
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 4px;
}

/* ==================== MODERN MINIMALIST TABS (Blue, White, Orange) ==================== */
.tab-navigation-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}

.tab-navigation-wrapper .nav-pills {
  background: transparent;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  border: none;
}

.tab-navigation-wrapper .nav-link {
  border-radius: 50px !important;
  padding: 14px 35px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--primary-blue) !important;
  background: var(--white) !important;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-blue) !important;
  /* Distinct border for clickability */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
  cursor: pointer;
}

.tab-navigation-wrapper .nav-link i {
  font-size: 18px;
  color: var(--primary-orange);
  transition: all 0.3s ease;
}

/* Active State */
.tab-navigation-wrapper .nav-link.active {
  background: var(--primary-blue) !important;
  color: var(--white) !important;
  border-color: var(--primary-blue) !important;
  box-shadow: 0 10px 20px rgba(3, 75, 159, 0.15) !important;
}

.tab-navigation-wrapper .nav-link.active i {
  color: var(--white) !important;
}

/* Hover State */
.tab-navigation-wrapper .nav-link:hover:not(.active) {
  border-color: var(--primary-orange) !important;
  color: var(--primary-orange) !important;
  transform: translateY(-2px);
}

/* ==================== INTEGRATED TAB CONTENT (Non-Card) ==================== */
.tab-integrated-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
  gap: 50px;
}

.list-item-clean {
  position: relative;
  padding-left: 30px;
}

.list-item-clean::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #eee;
  border-radius: 2px;
}

.list-item-clean:hover::before {
  background: var(--primary-orange);
}

.list-item-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
  display: block;
}

.list-item-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
}

.tab-navigation-wrapper .nav-link:hover:not(.active) {
  color: var(--primary-orange) !important;
}

/* ==================== REFINED TAB CONTENT ==================== */
.content-integration-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
}

.integration-item {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  height: 100%;
}

.integration-item:hover {
  border-color: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.item-badge {
  display: inline-block;
  padding: 4px 12px;
  background: #E8F1FA;
  color: var(--primary-blue);
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.item-main-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
  line-height: 1.3;
}

.integration-item:hover .item-main-title {
  color: var(--primary-orange);
}

.item-desc {
  font-size: 16px;
  color: var(--text-dark);
  margin: 0;
}

/* ==================== ACCORDION REFINEMENT (For Committee Data) ==================== */
.committee-accordion .accordion-item {
  border: 1px solid #eee;
  margin-bottom: 12px;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.committee-accordion .accordion-button {
  padding: 20px 25px;
  font-weight: 600;
  color: var(--primary-blue);
  background: var(--white);
}

.committee-accordion .accordion-button:not(.collapsed) {
  background: var(--cream-bg);
  color: var(--primary-orange);
  box-shadow: none;
}

.committee-accordion .accordion-button::after {
  filter: sepia(100%) hue-rotate(190deg) saturate(500%);
}

/* ==================== VANGUARD MINIMALIST SHOWCASE (CLEAN, UNIQUE, TYPOGRAPHY-FIRST) ==================== */
.holistic-header {
  margin-bottom: 60px;
  text-align: center;
}

.holistic-vanguard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

@media (max-width: 991px) {
  .holistic-vanguard-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .holistic-vanguard-grid {
    grid-template-columns: 1fr;
  }
}

.vg-item {
  position: relative;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  height: 100%;
}

.vg-image-card {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vg-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Large Phantom Background Numbering - Removed */
.vg-number {
  display: none;
}

.vg-item:nth-child(even) .vg-number {
  color: rgba(184, 65, 16, 0.04);
  /* Subtle Orange Tint */
}

/* Clean Card Surface */
.vg-card {
  position: relative;
  z-index: 2;
  padding: 30px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Precision Icon Accent */
.vg-icon-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.vg-icon-dot {
  width: 12px;
  height: 12px;
  background: var(--primary-orange);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(184, 65, 16, 0.3);
}

.vg-item:nth-child(even) .vg-icon-dot {
  background: var(--primary-blue);
  box-shadow: 0 0 15px rgba(3, 75, 159, 0.3);
}

.vg-icon-head i {
  font-size: 24px;
  color: var(--primary-blue);
  opacity: 0.8;
}

.vg-item:nth-child(even) .vg-icon-head i {
  color: var(--primary-orange);
}

/* High-End Typography */
.vg-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 15px;
  letter-spacing: -0.8px;
  line-height: 1.1;
  font-family: 'Source Sans 3', sans-serif;
}

.vg-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
  max-width: 95%;
  font-weight: 400;
  font-family: 'Source Sans 3', sans-serif;
}

/* Interaction: Elegant & Subtle */
.vg-item:hover {
  transform: translateY(-8px);
}

.vg-item:hover .vg-card {
  border-bottom-color: var(--primary-orange);
}

.vg-item:nth-child(even):hover .vg-card {
  border-bottom-color: var(--primary-blue);
}

/* Number hover styles removed */

.vg-item:hover .vg-title {
  color: var(--primary-orange);
}

.vg-item:nth-child(even):hover .vg-title {
  color: var(--primary-orange);
}

.vg-item:hover .vg-icon-dot {
  transform: scale(1.2);
}

/* Yellow Finish */
.vg-accent-yellow {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-yellow);
  transition: all 0.6s ease;
}

.vg-item:hover .vg-accent-yellow {
  width: 100px;
}

@media (max-width: 991px) {
  .holistic-vanguard-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 575px) {
  .vg-title {
    font-size: 22px;
  }

  .vg-text {
    font-size: 16px;
  }

  .vg-number {
    font-size: 70px;
  }
}

/* ==================== SAFETY SENTINEL LAYOUT (CAMPUS HEALTH & SAFETY) ==================== */
.safety-intro-text {
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 1.8;
  color: #4b5563;
  text-align: center;
}

/* Core Pillars Area */
.safety-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.pillar-card {
  background: var(--white);
  padding: 40px 35px;
  border-radius: 20px;
  border-left: 4px solid var(--accent-yellow);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  background: rgba(3, 75, 159, 0.03);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.pillar-icon i {
  font-size: 26px;
  color: var(--primary-blue);
}

.pillar-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-family: 'Source Sans 3', sans-serif;
}

.pillar-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
  font-weight: 400;
  font-family: 'Source Sans 3', sans-serif;
}

/* Pillar Hover States */
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-orange);
}

.pillar-card:hover .pillar-icon {
  background: var(--primary-orange);
}

.pillar-card:hover .pillar-icon i {
  color: var(--white);
}

/* Shield Grid (Institutional Cells) */
.safety-shield-wrapper {
  background: #fdfdfd;
  padding: 80px 40px;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.shield-header {
  text-align: center;
  margin-bottom: 60px;
}

.shield-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.shield-item {
  display: flex;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.shield-marker {
  width: 8px;
  height: 8px;
  background: var(--accent-yellow);
  border-radius: 50%;
  margin-top: 10px;
  flex-shrink: 0;
}

.shield-content h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 8px;
  font-family: 'Source Sans 3', sans-serif;
}

.shield-content p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
  font-weight: 400;
  font-family: 'Source Sans 3', sans-serif;
}

.shield-item:hover {
  border-bottom-color: var(--primary-blue);
}

/* Wellness Banner Full Width */
.wellness-hero-banner {
  margin-top: 80px;
  background: linear-gradient(135deg, var(--primary-blue), #023a7d);
  padding: 60px;
  border-radius: 35px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  overflow: hidden;
}

.wellness-hero-banner::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.wellness-info {
  flex: 1;
}

.wellness-tag {
  display: inline-block;
  background: var(--primary-orange);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.wellness-info h3 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
}

.wellness-info p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.9;
  font-weight: 400;
  font-family: 'Source Sans 3', sans-serif;
}

@media (max-width: 1199px) {
  .safety-pillars-grid {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .safety-pillars-grid {
    grid-template-columns: 1fr;
  }

  .shield-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .wellness-hero-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .safety-shield-wrapper {
    padding: 40px 20px;
  }

  .wellness-info h3 {
    font-size: 26px;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
  .content-grid-list {
    grid-template-columns: 1fr;
  }

  .content-integration-wrapper {
    grid-template-columns: 1fr;
  }

  .tab-integrated-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .tab-navigation-wrapper .nav-pills {
    flex-direction: column;
    width: 100%;
  }

  .tab-navigation-wrapper .nav-link {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ===== MOBILE VIEW FIXES ===== */
@media (max-width: 767px) {

    /* OBJECTIVES SECTION: Image aati hai pehle, content baad mein - reverse karo */
    .row .col-12.col-lg-5.mb-5.mb-lg-0 {
        order: 2;
    }
    .row .col-12.col-lg-7.ps-lg-5 {
        order: 1;
    }

    /* HOLISTIC TAB GRID: Images ko cards ke baad dikhao */
    .holistic-vanguard-grid {
        display: flex;
        flex-direction: column;
    }

    /* ROW 1: Card1(1), Card2(2), Image(3) - sahi order already */
    .holistic-vanguard-grid .vg-item:nth-child(1) { order: 1; }
    .holistic-vanguard-grid .vg-item:nth-child(2) { order: 2; }
    .holistic-vanguard-grid .vg-item:nth-child(3) { order: 3; } /* image - sahi hai */

    /* ROW 2: Image(4), Card(5), Card(6) - image ko end mein bhejo */
    .holistic-vanguard-grid .vg-item:nth-child(4) { order: 6; } /* image - end mein */
    .holistic-vanguard-grid .vg-item:nth-child(5) { order: 4; }
    .holistic-vanguard-grid .vg-item:nth-child(6) { order: 5; }

    /* ROW 3: Card(7), Card(8), Image(9) - sahi order already */
    .holistic-vanguard-grid .vg-item:nth-child(7) { order: 7; }
    .holistic-vanguard-grid .vg-item:nth-child(8) { order: 8; }
    .holistic-vanguard-grid .vg-item:nth-child(9) { order: 9; } /* image - sahi hai */

    /* ROW 4: Image(10), Card(11), Card(12) - image ko end mein bhejo */
    .holistic-vanguard-grid .vg-item:nth-child(10) { order: 12; } /* image - end mein */
    .holistic-vanguard-grid .vg-item:nth-child(11) { order: 10; }
    .holistic-vanguard-grid .vg-item:nth-child(12) { order: 11; }
}