/* home page content */
.am-content {
  padding: 30px;
}

.am-tag {
  display: inline-block;
  background: #eef0ff;
  color: #2b3a8f;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.am-name {
  font-size: 35px;
  margin-bottom: 16px;
  color: #000;
}

.am-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}

/* BUTTON */
.am-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #2b7242, #4b5320);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s;
}

.am-btn:hover {
  color: #fff500;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgb(43 114 66 / 80%);
}

/* DESKTOP VIEW */
@media (min-width: 768px) {
  .am-vc-card {
    grid-template-columns: 360px 1fr;
    align-items: center;
  }

  .am-image {
    padding: 40px 20px;
  }

  .am-content {
    padding: 10px;
  }
}

/*Start Slider*/
/* Basic Slider Styling */
.srs-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.srs-slider .slide {
  display: none;
}

.srs-slider .slider-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* Ensures full image without distortion */
}

/* Arrows Styling */
.srs-slider .slider-arrows button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  z-index: 1000;
}

.srs-slider .slider-arrows .prev {
  left: 10px;
}

.srs-slider .slider-arrows .next {
  right: 10px;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .why-us-counter .title {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 25px;
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .srs-slider .slider-img {
    object-position: center;
    /* Adjust for mobile and tablet views */
  }

  .why-us-counter .title {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 25px;
    color: #fff;
  }
}

@media screen and (max-width: 576px) {
  .srs-slider .slider-arrows button {
    font-size: 16px;
    padding: 8px;
  }

  .why-us-counter .title {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 25px;
    color: #fff;
  }
}

.srs-slider {
  position: relative;
}

/* ARROWS CONTAINER */
.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 999;
}

.slider-arrows button {
  pointer-events: all;
  position: absolute;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  cursor: pointer;

  font-size: 28px;
  line-height: 1;
  padding: 0;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrows .prev {
  left: 20px;
}

.slider-arrows .next {
  right: 20px;
}

@media screen and (max-width: 768px) {

  .srs-slider {
    height: 100vh;
    /* Full screen */
    width: 100%;
  }

  .srs-slider .slide {
    height: 100%;
  }

  .srs-slider {
    width: 100%;
    height: 70%;
    object-fit: cover;
    /* 🔥 NO COMPRESS */
    object-position: center;
    display: block;
  }

  .slider-arrows {
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 999;
  }
}


/*NEWS & EVENTS start*/

/* Layout */
.amm-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Card */
.amm-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Header */
.amm-title {
  padding: 14px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
}

.red {
  background: #f05564;
}

.blue {
  background: #0277bd;
}

.green {
  background: #2d6f3f;
}

/* Body */
.amm-body {
  height: 280px;
  overflow: hidden;
  padding: 18px;
}

/* Scroll */
.amm-body ul {
  list-style: none;
  animation: ammScroll 7s linear infinite;
}

.amm-body:hover ul {
  animation-play-state: paused;
}

/* Items */
.amm-body li {
  padding: 10px 0 10px 18px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  border-bottom: 1px dashed #ddd;
}

/* Dot */
.amm-dot {
  width: 7px;
  height: 7px;
  background: #f05564;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 18px;
}

/* Date */
.amm-date {
  background: #ffc107;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 4px;
  margin-right: 6px;
}

/* Tag */
.amm-tag {
  background: #ff9800;
  color: #fff;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 3px;
  margin-right: 6px;
}

.viva {
  background: #2d6f3f;
}

/* Footer link */
.amm-link {
  text-align: right;
  padding: 12px 16px;
  font-size: 13px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

/* Animation */
@keyframes ammScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .amm-board {
    grid-template-columns: 1fr;
  }
}

/* COLLEGE INTERNAL START*/
.hp-section {
  background: #fffff0;
  padding: 20px;
}

/* ===== TITLE ===== */
.hp-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

.hp-title span:first-child {
  color: #4b5320;
}

.hp-title span:last-child {
  color: #2d6f3f;
}

/* ===== GRID ===== */
.hp-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* ===== CARD ===== */
.hp-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  border: 2px solid #c9ddd4;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* hover gradient effect */
.hp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a9d8f, #e9c46a);
  opacity: 0;
  z-index: 0;
  transition: 0.35s;
}

.hp-card:hover::before {
  opacity: 0.12;
}

.hp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 3px 31px rgb(45 111 63);
}

/* ===== ICON ===== */
.hp-icon {
  font-size: 42px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

/* ===== TEXT ===== */
.hp-text {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  position: relative;
  z-index: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .hp-grid {
    grid-template-columns: 1fr;
  }
}

.hp-naac-icon img {
  width: 42px;
  height: auto;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

/* flash news start*/
.ft-unique-wrapper {
  max-width: 1300px;
  margin: 20px auto;
  padding: 8px;
}

.ft-unique-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eafff2, #ffffff);
  border: 2px solid #0a7c47;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Logo */
.ft-unique-logo {
  background: #0a7c47;
  padding: 6px;
  border-radius: 6px;
}

.ft-unique-logo img {
  width: 48px;
}

/* Slider */
.ft-unique-slider {
  flex: 1;
  overflow: hidden;
}

.ft-unique-track {
  display: flex;
  transition: transform 0.7s ease;
}

.ft-unique-item {
  min-width: 100%;
  font-size: 15px;
  color: #044c2b;
  font-weight: 600;
  display: flex;
  align-items: center;
}

/* Controls */
.ft-unique-controls {
  display: flex;
  gap: 8px;
}

.ft-unique-controls span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0a7c47;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.ft-unique-controls span:hover {
  background: #044c2b;
}

/* Responsive */
@media (max-width: 768px) {
  .ft-unique-item {
    font-size: 14px;
  }

  .ft-unique-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, #eafff2, #ffffff);
    border: 2px solid #0a7c47;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    flex-direction: column;
  }

  .ft-unique-logo img {
    width: 60px;
  }
}

/*Courses Offered start*/

/* ===== WRAPPER ===== */
.ap-wrapper {
  background: #03143a;
  padding: 40px 20px;
}

/* ===== GRID ===== */
.ap-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 25px;
  align-items: stretch;
}

/* ===== LEFT PANEL ===== */
.ap-left {
  color: #fff;
}

.ap-title {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
}

.ap-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #fff800;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.ap-list {
  list-style: none;
  margin-top: 25px;
}

.ap-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed rgb(242 242 242);
  font-size: 15px;
}

.ap-list i {
  color: #fff800;
  margin-right: 8px;
}

.ap-list span {
  background: #a71313;
  color: #ffffff;
  padding: 3px 10px;
  font-size: 15px;
  border-radius: 20px;
}

/* link */
.ap-link {
  margin-top: 25px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  transition: 0.3s;
}

.ap-link:hover {
  letter-spacing: 0.5px;
}

/* ===== CENTER IMAGE ===== */
.ap-center {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.ap-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ap-center::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.ap-center:hover img {
  transform: scale(1.08);
}

/* ===== RIGHT PANEL ===== */
/* .ap-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
} */

.ap-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.ap-icon-box {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 22px 10px;
  text-align: center;
  color: #fff;
  transition: 0.35s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.ap-icon-box i {
  font-size: 28px;
  color: #fff800;
  margin-bottom: 10px;
}

.ap-icon-box span {
  font-size: 14px;
  font-weight: 500;
}

.ap-icon-box:hover {
  background: #2b3154;
  transform: translateY(-6px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .ap-container {
    grid-template-columns: 1fr;
  }

  .ap-center {
    order: -1;
    max-height: 320px;
  }
}

@media (max-width: 480px) {
  .ap-right {
    grid-template-columns: 1fr;
  }

  .ap-title {
    font-size: 20px;
  }
}

.ap-icon-box:hover {
  background: #4b5320b3;
  transform: translateY(-6px);
}

/* Hover only for devices that support hover (desktop/laptop) */
@media (hover: hover) and (pointer: fine) {
  .ap-icon-box:hover {
    background: #4b5320b3;
    transform: translateY(-6px);
  }
}

.ap-list li:last-child i {
  color: #f4d03f;
}

.ap-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* 🔥 MAIN FIX */
  height: 100%;
  gap: 20px;
}

.ap-right-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ap-icon-box {
  background: #0992c9;
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.ap-icon-box i {
  font-size: 28px;
  color: #ffeb3b;
}

.ap-icon-box span {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .ap-right {
    justify-content: flex-start;
    margin-top: 20px;
  }
}

/* REMOVE DEFAULT UL SPACE */
.ap-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

/* MOBILE VIEW FIX */
@media (max-width: 480px) {
  .ap-left {
    padding: 0;
  }

  .ap-list li {
    padding: 8px 0;
    /* 🔥 space reduce */
    font-size: 14px;
  }

  .ap-list span {
    font-size: 12px;
    padding: 3px 8px;
  }
}

@media (max-width: 360px) {
  .ap-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .ap-left {
    display: block;
  }

  .ap-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

/*FACILITIES START*/

/* ===== SECTION ===== */
.as-section {
  padding: 20px;
}

/* ===== HEADER ===== */
.as-header {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.as-header h2 {
  color: #5b63c7;
  font-size: 32px;
}

.as-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.as-btn {
  background: #6b72d6;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 4px;
}

/* arrows */
.as-arrow {
  width: 38px;
  height: 38px;
  border: none;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

/* ===== SLIDER ===== */
.as-slider {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

/* hide scrollbar */
.as-slider::-webkit-scrollbar {
  display: none;
}

/* ===== CARD ===== */
.as-card {
  min-width: 280px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.as-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.as-content {
  padding: 15px;
}

.as-tag {
  background: #eef0ff;
  color: #4a56c0;
  padding: 4px 10px;
  font-size: 13px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 8px;
}

.as-content p {
  font-size: 14px;
  line-height: 1.6;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .as-header {
    flex-direction: column;
    gap: 15px;
  }
}

.as-slider {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

/* desktop */
.as-card {
  min-width: 280px;
  flex-shrink: 0;
}

/* mobile fix */
@media (max-width: 600px) {
  .as-card {
    min-width: 85%;
  }
}



/* ===== SLIDER START NEW CODE===== */
.sr-slider-outer {
  position: relative;
  width: 100%;
}

.sr-slider-wrapper {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.sr-slider {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.sr-slide {
  min-width: 100%;
}

.sr-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* arrows */
.sr-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
}

.sr-left {
  left: 15px;
}

.sr-right {
  right: 15px;
}

/* ===== FLASH LOGO ===== */
.sr-flash-logo {
  position: absolute;
  left: 15px;
  bottom: -35px;
  z-index: 10;
}

.sr-flash-logo img {
  width: 90px;
  border-radius: 10px;
  border: 3px solid #a90935;
  animation: srFlashPulse 2s infinite;
}

/* flash animation */
@keyframes srFlashPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 234, 77, 0.98);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(31, 138, 87, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(31, 138, 87, 0);
  }
}

/* ===== NOTICE BAR ===== */
.sr-notice-bar {
  position: absolute;
  bottom: -95px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: #fff;
  border: 2px solid #a61b37;
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: sans-serif;
}

.sr-notice-viewport {
  flex: 1;
  overflow: hidden;
}

.sr-notice-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.sr-notice-item {
  min-width: 100%;
  font-size: 15px;
  color: #121212;
  ;
  line-height: 1.5;
}

.sr-notice-arrow {
  cursor: pointer;
  font-size: 22px;
  color: #1f8a57;
  margin-left: 12px;
  user-select: none;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
  .sr-slider-wrapper {
    height: 60vh;
  }

  .sr-slider-outer {
    padding-bottom: 20px;
  }

  /* flash logo slider keela */
  .sr-flash-logo {
    position: static;
    margin: 15px auto 10px;
    text-align: center;
  }

  .sr-flash-logo img {
    width: 75px;
  }

  /* notice bar flash logo keela */
  .sr-notice-bar {
    position: static;
    transform: none;
    width: 95%;
    margin: 0 auto 15px;
  }
}

@media(max-width:575px) {
  .sr-notice-item {
    font-size: 14px;
  }
}

/* ================================
   LOGO LINK WITH USER HINT
================================ */

.sr-logo-link-box {
  text-align: center;
  max-width: 520px;
  margin: 30px auto;
}

.sr-logo-link img {
  /* max-width:120px; */
  height: auto;
  cursor: pointer;
  transition: 0.3s ease;
}

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

/* Hint text */
.sr-logo-note {
  margin-top: 8px;
  font-size: 13px;
  color: #666;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width:769px) {
  /* .sr-logo-link img{
        max-width:90px;
    } */

  .sr-logo-note {
    font-size: 12px;
  }
}


/* ================================
   COLOUR SCHEME SECTION
================================ */

.sr-colour-scheme {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.sr-scheme-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #222;
}

/* Grid layout */
.sr-scheme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Card base */
.sr-scheme-card {
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.sr-scheme-card:hover {
  transform: translateY(-5px);
}

/* Headings */
.sr-scheme-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

/* Text */
.sr-scheme-card p {
  font-size: 18px;
  line-height: 1.6;
}

/* ================================
   INDIVIDUAL COLOUR THEMES
================================ */

.sr-sun {
  background: linear-gradient(135deg, #f5b400, #e74c3c);
  color: #fff;
}

.sr-college {
  background: #e6f4ea;
  color: #1f3d2b;
}

.sr-torch {
  background: linear-gradient(135deg, #c0392b, #f1c40f);
  color: #fff;
}

.sr-knowledge {
  background: #bfc2c7;
  color: #fff;
}

.sr-lotus {
  background: linear-gradient(135deg,
      #e63946,
      #a8dadc,
      #2a9d8f);
  color: #fff;
}

.sr-border {
  background: #000;
  color: #fff;
}

.sr-motto {
  background: #3a7f3a;
  color: #fff;
  border: 2px solid #4b0082;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width:769px) {

  .sr-scheme-title {
    font-size: 24px;
  }

  .sr-scheme-card {
    padding: 18px;
  }

  .sr-scheme-card p {
    font-size: 13px;
  }
}

/* ================================
   VISION & MISSION SECTION
================================ */

.sr-vision-mission {
  background: linear-gradient(180deg, #f8faf8, #eef4ee);
  padding: 60px 20px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.sr-vm-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Card base */
.sr-vm-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: 0.3s ease;
}

.sr-vm-card:hover {
  transform: translateY(-6px);
}

/* Decorative bar */
.sr-vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  border-radius: 18px 18px 0 0;
}

/* Vision theme */
.sr-vision::before {
  background: #2f7d32;
  /* pleasing green */
}

/* Mission theme */
.sr-mission::before {
  background: #4b0082;
  /* dignified violet */
}

/* Title */
.sr-vm-title {
  font-size: 26px;
  margin-bottom: 18px;
  color: #1f2d1f;
}

/* Vision text */
.sr-vm-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* Mission list */
.sr-vm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sr-vm-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* Custom bullet */
.sr-vm-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #2f7d32;
  font-weight: bold;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width:769px) {

  .sr-vision-mission {
    padding: 40px 15px;
  }

  .sr-vm-card {
    padding: 25px 22px;
  }

  .sr-vm-title {
    font-size: 22px;
  }

  .sr-vm-text,
  .sr-vm-list li {
    font-size: 14px;
  }
}

/* ================================
   HISTORY / HERITAGE SECTION
================================ */

.sr-history-section {
  padding: 50px 20px;
  font-family: "Times New Roman", serif;
  background: #ffffff;
}

.sr-history-wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* Image block */
.sr-history-img {
  flex: 0 0 260px;
}

.sr-history-img img {
  width: 100%;
  height: auto;
  border: 1px solid #000;
  padding: 6px;
  background: #f5f5f5;
}

/* Content block */
.sr-history-content {
  flex: 1;
}

.sr-history-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  /* TEXT BLACK */
  margin-bottom: 18px;
  text-align: justify;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width:992px) {

  .sr-history-wrap {
    flex-direction: column;
  }

  .sr-history-img {
    max-width: 220px;
    margin: auto;
  }

  .sr-history-content p {
    font-size: 14px;
  }
}


/*Start Profile*/
/* WRAPPER */
.sr-profile-wrap {
  /* min-height:100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* CARD */
.sr-profile-card {
  width: 320px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
}

.sr-profile-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.sr-profile-img {
  padding: 20px;
  background: #eef3ff;
}

.sr-profile-img img {
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
  border: 3px solid #dbe4ff;
}

/* CONTENT */
.sr-profile-content {
  padding: 20px;
}

.sr-profile-content h2 {
  font-size: 20px;
  color: #222;
  margin-bottom: 6px;
}

.sr-profile-content h2 span {
  color: #1f7afc;
}

.sr-profile-content h4 {
  font-size: 15px;
  color: #555;
  margin-bottom: 8px;
}

.sr-role {
  font-size: 14px;
  font-weight: 600;
  color: #0a9d5c;
  margin-bottom: 6px;
}

.sr-date {
  font-size: 13px;
  color: #777;
}

/* RESPONSIVE */
@media(max-width:480px) {
  .sr-profile-card {
    width: 100%;
    max-width: 340px;
  }

  .sr-profile-content h2 {
    font-size: 18px;
  }
}

/*Start Table*/
.gc-wrapper {
  max-width: 1100px;
  margin: 30px auto;
  padding: 10px;
  font-family: Arial, sans-serif;
}

.gc-title {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}

.gc-table {
  display: grid;
  grid-template-columns: 1fr;
}

.gc-row {
  display: grid;
  grid-template-columns: 80px 2fr 3fr 2fr;
  border: 1px solid #ddd;
}

.gc-row div {
  padding: 12px;
  font-size: 14px;
}

.gc-head {
  background: #2b7141;
  color: #fff;
  font-weight: bold;
}

.gc-row:nth-child(even):not(.gc-head) {
  background: #f9f9f9;
}

/* ---------- Mobile Responsive ---------- */
@media (max-width: 768px) {
  .gc-row {
    grid-template-columns: 1fr;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
  }

  .gc-head {
    display: none;
  }

  .gc-row div {
    border-bottom: 1px solid #eee;
  }

  .gc-row div::before {
    font-weight: bold;
    display: block;
    color: #555;
    margin-bottom: 4px;
  }

  .gc-row div:nth-child(1)::before {
    content: "S.No";
  }

  .gc-row div:nth-child(2)::before {
    content: "Category";
  }

  .gc-row div:nth-child(3)::before {
    content: "Name & Designation";
  }

  .gc-row div:nth-child(4)::before {
    content: "Role";
  }
}


.pra-global * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

.pra {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

/* container */

.pra-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1100px;
}

/* card */

.pra-box {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  transition: 0.4s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-top: 6px solid #2d6f3f;
}

/* hover */

.pra-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* icon */

.pra-box img {
  width: 70px;
  height: 70px;
  padding: 12px;
  background: #2d6f3f54;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 15px;
}

/* title */

.pra-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #2d6f3f;
  letter-spacing: 1px;
}

/* text */

.pra-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* tablet */

@media (max-width:991px) {

  .pra-container {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* mobile */

@media (max-width:600px) {

  .pra-container {
    grid-template-columns: 1fr;
  }

  .pra-box {
    padding: 30px 20px;
  }

}

/*accordion start*/


.accordion {
  margin: auto;
  max-width: 1200px;
}

.accordion-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 20px;
  color: #a23b2c;
}

.accordion-content {
  padding: 0 20px 20px 20px;
  display: none;
  color: #333;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-icon {
  font-size: 30px;
  font-weight: bold;
  color: #a23b2c;
  transition: transform 0.3s ease;
}

@media (max-width: 600px) {
  .accordion-header {
    font-size: 20px;
    padding: 15px;
  }

  .accordion-icon {
    font-size: 25px;
  }
}

.table-container {
  max-width: 100%;
  overflow-x: auto;
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.responsive-table th,
.responsive-table td {
  padding: 10px 12px;
  text-align: left;
  border: 1px solid #ddd;
  font-size: 17px;
  color: black;
}

.responsive-table th {
  background-color: #2d6f3f;
  color: white;
}

.responsive-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* ===== GRID ===== */
.act-container {
	max-width: 1800px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
}

/* ===== CARD ===== */
.act-card {
	background: #ffff;
	padding: 40px 20px;
	text-align: center;
	border-radius: 18px;
	box-shadow: 0 8px 20px rgb(0 0 0 / 19%);
	border: 2px solid #2d6f3f;
	transition: all 0.3s ease;
	cursor: pointer;
	/* min-height: 200px; */
}

.act-card i {
	font-size: 40px;
	color: #bb2855;
	margin-bottom: 20px;
}

.act-card span {
	display: block;
	font-size: 18px;
	font-weight: 600;
	color: #000000;
}


/* Hover */
.act-card:hover {
	background-color: #2d6f3f66;
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
	.act-card {
		padding: 30px 15px;
		/* min-height: 170px; */
	}

	.act-card i {
		font-size: 32px;
	}

	.act-card span {
		font-size: 16px;
	}
}
/* === Equal height without affecting image === */
.act-container{
	align-items: stretch;
}

.act-card{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

/* Keep image size fixed */
.act-card img{
	/* width: 90px;
	height: 90px; */
	object-fit: contain;
	margin-bottom: 15px;
}

/* Keep text aligned */
.act-card span{
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}