* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
.container {
  width: 95%;
  margin: auto;
}

/* Header Start +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.top-header {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
}

.top-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo-box img {
  height: 80px;
}

.school-title {
  text-align: center;
  flex: 1;
}

.school-title h1 {
  font-size: 30px;
  color: #b7292f;
  font-weight: bold;
}

.school-title p {
  font-size: 14px;
  color: #555;
}
/* Logo + H1 together */
.title-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.title-logo {
  height: 60px;
  width: auto;
}

.school-title h1 {
  margin: 0;
}

.social-icon a {
  color: #b7292f;
  font-size: 20px;
  border: 2px solid;
  border-radius: 50%;
  padding: 8px 10px;
}
.main-nav {
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
}

.menu {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* MENU LINKS */
.menu > li {
  position: relative;
}

.menu > li > a {
  display: block;
  padding: 16px 16px;
  text-decoration: none;
  color: #b7292f;
  font-weight: 600;
  font-size: 15px;
}

.menu > li > a:hover {
  border-bottom: 2px solid #b7292f;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #b7292f;
  min-width: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 999;
}

.dropdown-menu li a {
  padding: 12px 18px;
  display: block;
  color: white;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li a:hover {
  background: darkred;
  color: white;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

.highlight a {
  background: #b7292f;
  color: #fff !important;
}
.notice-bar {
  width: 100%;
  overflow: hidden;
  background: #003366;
  padding: 10px 0;
}

.notice-bar p {
  white-space: nowrap;
  color: #fff;
  font-size: 16px;
  position: relative;
  left: 100%;
}
/* Make banner/video a reference point */
.fullscreen-video {
  position: relative;
}

/* Box section overlaps banner */
.box-section {
  position: relative;
  margin-top: -90px; /* 👈 THIS pulls boxes upward */
  z-index: 5;
  padding-bottom: 80px;
}

/* Box container */
.info-boxes {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Individual box */
.info-box {
  flex: 1;
  min-height: 300px;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* vedio section start ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.fullscreen-video {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  max-height: 750px;
  overflow: hidden;
}

.fullscreen-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*+++++++++++++++++++++Admission section +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* BOX SECTION */
.box-section {
  position: relative;
  margin-top: -120px; /* 👈 video par overlap */
  padding-bottom: 60px;
}

/* BOX CONTAINER */
.info-boxes {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 30px;
}

.info-box {
  flex: 1;
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

/*+++++++++++++++++++++Welcome section++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.welcome-section {
  background: url("images/welcome-bg.jpg") center/cover no-repeat;
  position: relative;
}
.welcome-section {
  background-size: cover; /* image full cover kare */
  background-position: center; /* center me rahe */
  background-repeat: no-repeat;
}
.welcome-overlay {
  background: linear-gradient(180deg, #b7292f94 0%, #3a3b3ebf 100%),
    url(/images/backgroud1.png) center/cover no-repeat;

  padding: 40px;
  overflow: hidden;
  min-height: 60vh;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.welcome-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
  color: #fff;
}

.welcome-content h2 {
  font-size: 42px;
  font-weight: 600px;
  margin-bottom: 30px;
}

.welcome-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #f1f1f1;
}
/*Gallary Seaction ++++++++++++++++++++++++++++++++++++++++++++++++*/
.rg-gallery-wrap {
  padding: 80px 0;
  background: #fff;
}

.rg-gallery-title {
  text-align: center;
  margin-bottom: 50px;
}

.rg-gallery-title h2 {
  font-size: 36px;
  font-weight: 600;
  color: #333;
}

.rg-gallery-title span {
  display: block;
  width: 60px;
  height: 3px;
  background: #e63946;
  margin: 10px auto 0;
}

.rg-gallery-grid {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.rg-card {
  background: #f5f5f5;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.rg-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.rg-caption {
  background: #b7292f;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 15px;
  font-weight: 500;
}

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

@media (max-width: 600px) {
  .rg-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/*+++++++++++++++++++++++++++++++++infrastructure +++++++++++++++++++++++++++++*/
.infrastructure {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  text-align: center;
}

.infrastructure h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #b7292f;
}

.infra-desc {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.8;
}

.read-more-btn {
  display: inline-block;
  margin: 25px 0 50px;
  padding: 12px 28px;
  border: 2px solid #f5b400;
  border-radius: 30px;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

/* GALLERY */
.infra-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
}

.infra-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.infra-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.infra-card span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 10px;
  border-radius: 6px;
}

.infra-card.large {
  grid-column: span 2;
  grid-row: span 2;
  height: 380px;
}

.infra-card.small {
  height: 180px;
}

/*Map Section ++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.map-section {
  width: 100%;
  overflow: hidden;
}
/*+++++++++++++++++++++++++side buttons ++++++++++++++++++++++++++*/
.side-panel {
  position: fixed;
  top: 30%;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

/* Common button */
.panel-btn {
  background: #b7292f;
  color: #fff;
  text-decoration: none;
  padding: 14px 18px;
  margin-bottom: 4px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.panel-btn.active {
  padding: 14px 30px;
  font-weight: 600;
}

.panel-btn:hover {
  background: #8a1f23;
}

/*+++++++++++++++++++++++++++Footer Section+++++++++++++++++++++++++++++++++++++++++++++++++++ */
.school-footer {
  background: rgb(160, 71, 71);
  color: #fff;
  padding: 60px 40px 30px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* LOGO */
.footer-logo img {
  width: 90px;
  margin-bottom: 15px;
}

.footer-logo h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 5px;
}

.footer-logo .tagline {
  font-size: 12px;
  opacity: 0.8;
}

.footer-address {
  flex: 1;
}

.campus {
  margin-bottom: 35px;
}

.campus h4 {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.campus p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}
.footer-action {
  display: flex;
  align-items: flex-start;
}

.inquire-btn {
  background: rgb(138, 56, 56);
  color: #fff;
  padding: 16px 36px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
}
.footer-bottom {
  text-align: left;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.footer-bottom a {
  margin-right: 30px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
}
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-center {
  flex: 1;
  text-align: center;
  position: relative;
}

.footer-center span {
  background: rgb(160, 71, 71);
  padding: 0 12px;
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.footer-center::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%);
  z-index: 0;
}
/* USEFUL LINKS ++++++++++++++++++++++++++++++++*/
.footer-links {
  min-width: 180px;
}

.footer-links h4 {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin-left: auto;
}

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

.footer-links ul li a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  opacity: 0.9;
}

.footer-links ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}
.dev-link {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  background: rgb(160, 71, 71);
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.dev-link:hover {
  text-decoration: underline;
}

/*************************************************facilites***************************************/
.Facilities-banner {
  position: relative;
  width: 100%;
  height: 400px;
  background: url("images/Gallary/Gallay-banner.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.Facilities-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.Facilities-banner h1 {
  position: relative;
  color: white;
  font-size: 50px;
  font-weight: 600;
}
.facilities-section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.facility-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.facility-row.reverse {
  flex-direction: row-reverse;
}

.facility-img img {
  width: 100%;
  height: 300px;
  max-width: 450px;
  border-radius: 6px;
  object-fit: cover;
}

.facility-content {
  flex: 1;
}

.facility-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #b7292f;
}

.facility-content p {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
}
/**********************contants us ************************************************************/
.contact-cards {
  max-width: 1100px;
  margin: 60px auto;
  display: flex;
  gap: 30px;
  padding: 0 20px;
}

.contact-card {
  flex: 1;
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.contact-card .icon {
  font-size: 28px;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
}
.contact-section {
  padding: 80px 20px;
  background: #f7f7f7;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.contact-form {
  flex: 1;
}

.contact-form h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #b7292f;
}

.contact-form p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form textarea {
  height: 140px;
  resize: none;
  margin-bottom: 25px;
}

.contact-form button {
  background: #b7292f;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

/* RIGHT */
.contact-map {
  flex: 1;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
  border-radius: 12px;
}
/******************************About us************************************/
.gallery-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.full-width-img {
  width: 100%;
  height: 300px; /* change height if needed */
  object-fit: cover;
  display: block;
}

.principal-message {
  padding: 80px 0;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.message-content {
  flex: 1;
  position: relative;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  position: relative;
}

.quote-mark {
  font-size: 120px;
  color: #eee;
  position: absolute;
  left: -40px;
  top: -40px;
  z-index: -1;
}

.quote-text {
  font-size: 22px;
  color: #b7292f;
  font-weight: 500;
  margin-bottom: 25px;
}

.quote-text span {
  color: #333;
  font-weight: 400;
}

.message-text {
  max-height: 210px;
  overflow-y: auto;
  padding-right: 15px;
  border-right: 4px solid #b7292f;
}

.message-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.read-more-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  border: 2px solid #003366;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.read-more-btn:hover {
  background: #b7292f;
  color: #fff;
}

.principal-name {
  margin-top: 15px;
  font-weight: 600;
  color: #b7292f;
}

.message-image {
  flex: 0.8;
}

.message-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
/******************vision ****************/
.vision-section {
  padding: 80px 20px;
}

.vision-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE AREA */
.vision-image {
  position: relative;
  flex: 1.2;
}

.vision-image img {
  width: 100%;
  max-width: 520px;
  display: block;
  position: relative;
  height: 300px;
  object-fit: cover;
  z-index: 2;
  max-height: 700px;
}

/* BLUE SHAPES */
.blue-vert {
  position: absolute;
  left: -20px;
  top: 60px;
  width: 40px;
  height: 260px;
  background: #b7292f;
  z-index: 1;
}

.blue-horz {
  position: absolute;
  bottom: -30px;
  left: 60px;
  width: 360px;
  height: 40px;
  background: #b7292f;
  z-index: 1;
}

/* CONTENT */
.vision-content {
  flex: 1;
}

.vision-content h3 {
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.vision-content .line {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: #b7292f;
  margin-bottom: 18px;
}

.vision-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}
/*******************mission ********/
.mission-section {
  padding: 80px 20px;
}

.mission-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* CONTENT */
.mission-content {
  flex: 1;
}

.mission-content h3 {
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.mission-content .line {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: #b7292f;
  margin-bottom: 18px;
}

.mission-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* IMAGE AREA */
.mission-image {
  position: relative;
  flex: 1.2;
}

.mission-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

/* BLUE BLOCKS */
.blue-horz {
  position: absolute;
  bottom: -20px;
  left: 60px;
  width: 360px;
  height: 40px;
  background: #b7292f;
  z-index: 1;
}

.blue-vert {
  position: absolute;
  right: -20px;
  top: 60px;
  width: 40px;
  height: 260px;
  background: #b7292f;
  z-index: 1;
}
/*founder massage */
.founder-section {
  background: #ffffff;
}

/* TOP HEADER BAR */
.founder-header {
  background: #b7292f;
  padding: 30px 60px;
}

.founder-header h2 {
  color: #fff;
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.founder-header .underline {
  display: block;
  width: 60px;
  height: 3px;
  background: #b7292f;
}

/* MAIN CONTENT */
.founder-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: flex;
  gap: 50px;
}

/* LEFT TEXT */
.founder-text {
  flex: 2;
}

.founder-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

/* RIGHT PROFILE */
.founder-profile {
  flex: 1;
}

.founder-profile img {
  width: 100%;
  border-radius: 6px;
}

.founder-info {
  background: #b7292f;
  color: #fff;
  padding: 16px;
  text-align: center;
}

.founder-info h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.founder-info p {
  font-size: 14px;
}
/**************************************************Gallery*************************************/

/* ======== GALLERY BANNER ======== */
.gallery-banner {
  position: relative;
  width: 100%;
  height: 400px;
  background: url("images/Gallary/Gallay-banner.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.gallery-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.gallery-banner h1 {
  position: relative;
  color: white;
  font-size: 50px;
  font-weight: 600;
}

/* ======== GALLERY SECTION ======== */
.breadcrumb-banner {
  position: relative;
  height: 350px;
  padding: 0;
}

.full-width-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* Dark overlay */
.breadcrumb-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.breadcrumb-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
}

.breadcrumb-overlay h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.breadcrumb-overlay p {
  font-size: 16px;
  letter-spacing: 1px;
}

.breadcrumb-overlay span {
  margin: 0 8px;
  color: #b7292f;
}

/* ======== CARD ======== */
.gallery-card {
  border: 1px solid #ddd;
  padding: 10px;
  background: white;
  text-align: center;
}

.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border: 1px solid #ccc;
}

.gallery-card h3 {
  font-size: 18px;
  margin-top: 15px;
  font-weight: 600;
}

.gallery-card p {
  font-size: 14px;
  margin-top: 5px;
  color: #666;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 900px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }
}
/****************************************Events*************************************************/
.infrastructure {
  width: 100%;
  padding: 80px 50px;
  text-align: center;
  position: relative;
}

.infrastructure h2 {
  font-size: 50px;
  margin-bottom: 10px;
}

.infrastructure p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  color: #666;
}

.read-btn {
  display: inline-block;
  margin: 30px 0 60px;
  padding: 12px 35px;
  border: 2px solid #b7292f;
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
}

/* Grid */
.infra-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 25px;
}

/* Cards */
.infra-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.infra-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.infra-card span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
}

/* Big & Tall */
.large {
  grid-column: span 2;
  grid-row: span 2;
}

.tall {
  grid-row: span 2;
}
.infrastructure {
  margin: 60px auto;
  padding: 40px;
  max-width: 1200px;
  background: #fff;
  border-radius: 10px;
}
/* 1st section – Founder’s Day */
.infrastructure:nth-of-type(1) {
  border: 3px solid #b7292f;
}

/* 2nd – Teacher’s Day */
.infrastructure:nth-of-type(2) {
  border: 3px dashed #b7292f;
}

/* 3rd – Annual Day */
.infrastructure:nth-of-type(3) {
  border: 3px dotted #b7292f;
}

/* 4th – Cultural Fest */
.infrastructure:nth-of-type(4) {
  border-left: 6px solid #b7292f;
  border-right: 6px solid #b7292f;
}

/* 5th – Dance Carnival */
.infrastructure:nth-of-type(5) {
  border-top: 5px solid #b7292f;
  border-bottom: 5px solid #b7292f;
}

/* 6th – Art & Craft */
.infrastructure:nth-of-type(6) {
  border: 2px solid #b7292f;
  box-shadow: 0 0 0 5px #b7292f;
}

/* 7th – Science Exhibition */
.infrastructure:nth-of-type(7) {
  border: 3px double #b7292f;
}
/************************************ Whatapp ka buttons ********************************/
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 99999;
}

.wa-float img {
  width: 28px;
  height: 28px;
}

.wa-float:hover {
  background: #25d366;
}
