/* Disable text selection */
body {
  -webkit-user-select: none; /* Chrome, Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
  user-select: none;
}

/* PAGE TITLE BAR */
.page-title-bar {
  background: #ff2c45;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 12px;
  font-size: 14px;
}

/* PAGE CONTAINER */
.page-container {
  max-width: 1000px;
  margin: 20px auto;
  background: #fff;
  padding: 15px;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

/* TEXT */
.about-text p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* INFO SECTION */
.info-title {
  background: #ff2c45;
  color: #fff;
  padding: 8px;
  font-weight: bold;
  margin-top: 20px;
  font-size: 13px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.info-table td {
  border: 1px solid #ccc;
  padding: 8px;
  vertical-align: top;
}

.info-table td:first-child {
  width: 45%;
  background: #f5f5f5;
}

/* DISCLOSURE */
.disclosure-section {
  margin-top: 20px;
}

.disclosure-item {
  background: #ff2c45;
  color: #fff;
  padding: 10px;
  margin-bottom: 5px;
  font-size: 13px;
  cursor: pointer;
}
/* TOP HEADER */
.top-header {
  background: #f4f4f4;
  border-bottom: 1px solid #dcdcdc;
}

.top-header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
}

/* BRANDING */
.branding {
  display: flex;
  align-items: center;
}

.branding img {
  height: 70px;
  margin-right: 12px;
}

.title-text h1 {
  margin: 0;
  font-size: 26px;
  color: #d71920; /* EXACT SOMERVILLE RED */
  font-family: "Times New Roman", serif;
  font-weight: bold;
}

.title-text h1 span {
  font-size: 20px;
}

.title-text p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #555;
}

/* BUTTONS */
.header-buttons {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}

.btn.primary {
  background: #e11c2a;
}

.btn.secondary {
  background: #ff3b3b;
}

.main-nav {
  background: #646479; /* same grey tone */
}
/* MAIN NAV */
.main-nav .menu {
  display: flex;
  justify-content: center;   /* 🔑 THIS CENTERS MENU */
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.main-nav ul > li {
  position: relative;
}

.main-nav ul > li > a {
  display: block;
  padding: 14px 16px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

/* ACTIVE / HOVER */
.main-nav ul > li:hover > a,
.main-nav ul > li.active > a {
  background: #ff2c45;
}

/* DROPDOWN */
.main-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: #ff2c45;
  display: none;
  padding: 0;
  margin: 0;
  z-index: 9999;
}

.main-nav li:hover > .dropdown {
  display: block;
}

.main-nav .dropdown li {
  width: 100%;
}

.main-nav .dropdown li a {
  padding: 12px 14px;
  color: #fff;
  display: block;
}

.main-nav .dropdown li a:hover {
  background: #e51f36;
}

/* DROPDOWN PANEL */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 230px;
  background: #ff2c45; /* EXACT RED */
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 9999;
}
.hero-slider {
  position: relative;
  width: 100%;
   height: 950px;
  overflow: hidden;
  background: #000;
}

/* SLIDES */
.slides img {
  position: absolute;
  width: 100%;
 
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide { opacity: 0; }
.slide.active { opacity: 1; }

.slider-text {
  position: absolute;
  bottom: 30px;
  left: 40px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  padding: 12px 18px;
  font-family: "Times New Roman", serif;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.slider-text.fade-out {
  opacity: 0;
}

.slider-text span {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
}

.slider-text strong {
  display: block;
  font-size: 24px;
  color: #ff2c45;
}

/* THUMBNAILS */
.thumbnails {
  position: absolute;
  right: 20px;
  bottom: 80px;
  display: flex;
  gap: 10px;
}

.thumbnails img {
  width: 90px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid #fff;
}

/* NAV BUTTONS */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.slider-nav button {
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 22px;
  padding: 6px 14px;
  margin: 0 8px;
  cursor: pointer;
  border-radius: 50%;
}

/* PROGRESS BAR */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ccc;
}

@keyframes progressAnim {
  from { width: 0; }
  to { width: 100%; }
}

.progress {
  height: 100%;
  width: 0;
  background: #ff2c45;
  animation: progressAnim 6000ms linear;
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* SECTION */
/* SECTION BACKGROUND */
.desk-slider {
  background: #f2f2f2;
  padding: 40px 0;
}

.desk-title {
  text-align: center;
  color: #ff2c45;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}

.desk-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.desk-image img {
  width: 320px;
  border-radius: 6px;
}

.desk-name {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
}

.desk-content {
  flex: 1;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 30px;
  border-radius: 6px;
}

.desk-role {
  background: #0a1fbf;
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 15px;
  font-weight: bold;
}

.desk-text {
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
}

.desk-nav {
  margin-top: 20px;
}

.desk-nav button {
  background: #ff2c45;
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 6px 12px;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 50%;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* SECTION BACKGROUND */
.desk-section {
  position: relative;
  background-image: url("../images/school.jpg"); /* FIX PATH */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 520px;
}

/* GREY OVERLAY */
.desk-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(120, 120, 120, 0.85);
  z-index: 1;
}

/* ALL CONTENT ABOVE OVERLAY */
.desk-section > * {
  position: relative;
  z-index: 2;
}

.desk-header {
  position: relative;
  padding: 20px 60px;
}

.desk-header h2 {
  color: #FFFFFF;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}

/* SLIDER */
.desk-slider {
  position: relative;
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  padding: 40px;
  z-index: 2;
}

/* LEFT */
.desk-left img {
  width: 320px;
  border-radius: 6px;
}

.desk-name {
  text-align: center;
  margin-top: 10px;
  color: #000000;
  font-weight: bold;
}

/* RIGHT */
.desk-right {
  flex: 1;
  color: #f2f5f1;
}

/* ROLE BAR */
.desk-role-bar {
  background: #0b1cc1;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.desk-role-bar span {
  font-weight: bold;
}

.desk-arrows button {
  background: #ff2c45;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

/* TEXT */
.desk-text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 1;
  transition: opacity 0.4s ease;
}

/* PLUS */
.desk-plus,
.about-plus {
  width: 36px;
  height: 36px;
  background: #ff2c45;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-size: 22px;
  margin-top: 15px;
}


/* EXPAND */
.expand-btn {
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ff2c45;
  color: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .desk-card {
    grid-template-columns: 1fr;
  }

  .expand-btn {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ABOUT SCHOOL */
.about-school {
  background: #fff;
  max-width: 900px;
  margin: -80px auto 40px;
  padding: 40px;
  border-radius: 12px;
  position: relative;
}

.about-school h3 {
  text-align: center;
  margin-bottom: 20px;
}
/* WRAPPER */
.about-wrapper {
  position: relative;
  background: rgba(130, 130, 130, 0.85);
  padding-bottom: 220px; /* 👈 ADD THIS */
}
.footer {
  position: relative;
  z-index: 10;
  background: #1e1e1e;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}


/* SCHOOL BUILDING IMAGE */
.about-bg img {
  width: 100%;
  display: block;
}

/* FLOATING WHITE CARD */
.about-card {
  background: #ffffff;
  max-width: 1000px;
  margin: -500px auto 0;   /* 👈 THIS MAKES IT SIT ON IMAGE */
  padding: 10px;
  border-radius: 44px;
  position: relative;
  z-index: 5;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

/* TITLE */
.about-card h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
}

/* TEXT */
.about-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

/* PLUS ICON */
.about-plus {
  position: absolute;
  left: 40px;
  bottom: -18px;
  width: 36px;
  height: 36px;
  background: #ff2c45;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-size: 22px;
}

.aboutus-page {
  background: #1f1f1f;
  padding: 5px 0;
}

.aboutus-container {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  padding: 35px;
}

/* TOP LABEL */
.page-label {
  background: #ff2c45;
   position: relative;
  color: #fff;
  display: inline-block;
  padding: 10px 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* IMAGE */
.aboutus-image img {
  width: 100%;
  margin-bottom: 20px;
}


/* TEXT */
.aboutus-text p {
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* HEADINGS */
.section-heading {
  background: #ff2c45;
  color: #fff;
  padding: 10px;
  font-size: 16px;
  margin: 25px 0 10px;
}

/* TABLE */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}

.info-table td {
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 14px;
}

/* DISCLOSURE LIST */
.disclosure-list {
  margin-bottom: 25px;
}

.disclosure-item {
  background: #ff2c45;
  color: #fff;
  padding: 10px 15px;
  margin-bottom: 5px;
  font-size: 14px;
  cursor: pointer;
}
.page-title-wrapper {
  display: flex;
  justify-content: center;   /* horizontal center */
  margin: 30px 0;
}

.page-title {
  background: #ff2c45;
  color: #fff;
  padding: 10px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 3px;
}
.about-title {
  margin: 0 auto 25px;
  display: inline-block;
}


/* CERTIFICATE */
.certificate img {
  width: 100%;
  border: 1px solid #ccc;
}
@media (max-width: 768px) {
  .aboutus-container {
    padding: 20px;
  }

  .page-label {
	   position: relative;
    font-size: 14px;
  }
}
.accordion {
  margin: 5px 0;
  border-radius: 4px;
  overflow: hidden;
}

/* HEADER */
.accordion-header {
  width: 100%;
  background: #05052d;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 20px;
  border: none;
  cursor: pointer;

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

.accordion-header .icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.disclosure-accordion {
  margin-bottom: 30px;
}

.accordion-item {
  margin-bottom: 6px;
}

/* HEADER */
.accordion-header {
  width: 100%;
  background: #ff2c45;
  color: #fff;
  border: none;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* PLUS ICON */
.accordion-header span {
  font-size: 20px;
  transition: transform 0.3s;
}
/* BODY */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
}

/* OPEN STATE */
.accordion.active .accordion-body {
  max-height: 700px; /* enough for PDF */
}

.accordion.active .icon {
  transform: rotate(45deg); /* + to × */
}
/* CONTENT */
.accordion-content {
  display: none;
  background: #f9f9f9;
  padding: 15px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.accordion-content a {
  color: #ff2c45;
  text-decoration: none;
  font-weight: 600;
}

/* ACTIVE STATE */
.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .accordion-header span {
  transform: rotate(45deg); /* + becomes × */
}


.about-wrapper,
.desk-section {
  overflow: visible;
}

.photo-gallery-section {
  background: url("images/ground.jpg") center/cover no-repeat;
  padding: 70px 0 90px;
  position: relative;
  text-align: center;
}

.photo-gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.photo-gallery-section * {
  position: relative;
  z-index: 2;
}

/* TITLE */
.gallery-title {
  color: #fff;
  font-size: 28px;
  margin-bottom: 40px;
}

/* WRAPPER */
.gallery-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

/* NAV ARROWS */
.gallery-nav {
  background: #ff2c45;
  border: none;
  color: #fff;
  font-size: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
}

/* CARDS */
.gallery-cards {
  display: flex;
  gap: 35px;
}

.gallery-card {
  background: #fff;
  width: 300px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.gallery-card img {
  width: 100%;
  display: block;
}

.gallery-card h3 {
  color: #ff2c45;
  font-size: 15px;
  margin: 15px 0 8px;
}

.gallery-card p {
  color: #ff2c45;
  font-size: 14px;
  margin-bottom: 8px;
}

.gallery-card span {
  color: #000;
  font-size: 13px;
}

/* PLUS BUTTON */
.gallery-plus {
  width: 42px;
  height: 42px;
  background: #ff2c45;
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  line-height: 42px;
  margin: 40px auto 0;
}
@media (max-width: 900px) {
  .gallery-cards {
    flex-direction: column;
  }

  .gallery-nav {
    display: none;
  }
}
.video-gallery-section {
  background: url("images/video-bg.jpg") center/cover no-repeat;
  padding: 70px 0 90px;
  position: relative;
  text-align: center;
}

.video-gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.video-gallery-section * {
  position: relative;
  z-index: 2;
}

/* TITLE */
.gallery-title {
  color: #fff;
  font-size: 28px;
  margin-bottom: 40px;
}

/* CENTERED VIDEO */
.fullscreen-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* VIDEO */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2;
}

/* TEXT CONTENT */
.video-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.video-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.video-content h1 {
  font-size: 44px;
  font-weight: bold;
  color: #ff2c45;
  margin-bottom: 15px;
}

.video-content p {
  max-width: 700px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* BUTTON */
.video-btn {
  background: #ff2c45;
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.video-btn:hover {
  background: #e6002c;
}
@media (max-width: 768px) {
  .video-content h1 {
    font-size: 28px;
  }

  .video-content h2 {
    font-size: 20px;
  }

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


.site-footer {
  background: #1f1f1f;
  color: #fff;
  padding: 50px 0 0;   /* 🔑 reduced */
}

/* CONTENT GRID */
.footer-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 30px;
}

/* REMOVE HEIGHT FORCE */
.site-footer,
.footer-content {
  height: auto;
  min-height: unset;
}

/* TEXT */
.footer-col h3 {
  color: #ff2c45;
  margin-bottom: 5px;
}

.footer-col h3 span {
  color: #fff;
}

.footer-col h4 {
  color: #ff2c45;
  margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
  color: #ddd;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

/* BUTTON */
.prospectus-btn {
  display: inline-block;
  margin-top: 15px;
  background: #ff2c45;
  color: #fff;
  padding: 12px 26px;
  border-radius: 25px;
  font-size: 13px;
}

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

/* BOTTOM BAR */
.footer-bottom {
  background: #111;
  text-align: center;
  padding: 15px 10px;
  font-size: 13px;
}

.footer-bottom span {
  color: #ff2c45;
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
}
/* PAGE TITLE */
.page-title-wrapper {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.page-title {
  background: #ff2c45;
  color: #fff;
  padding: 10px 36px;
  font-weight: 600;
  border-radius: 3px;
}

/* ACCORDION */
.infra-accordion {
  margin: 20px auto;
  max-width: 1200px;
  border: 1px solid #000033;
}

/* HEADER */
.infra-header {
  width: 100%;
  background: linear-gradient(to right, #020024, #02004f);
  color: #fff;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;

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

.infra-header .icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* BODY */
.infra-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: #fff;
}

/* OPEN STATE */
.infra-accordion.active .infra-body {
  max-height: 1200px;
}

.infra-accordion.active .icon {
  transform: rotate(45deg);
}

/* IMAGE GRID */
.infra-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 30px;
}

.infra-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}




@keyframes pulse {
  0% { transform: scale(0.95); }
  100% { transform: scale(1); }
}




/* PARENT */
.has-mega {
  position: relative;
}

/* MEGA MENU BOX */
.mega-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(20px);

  width: 900px;
  background: #ff2c45;
  padding: 30px;

  display: flex;
  gap: 40px;

  opacity: 0;
  pointer-events: none;

  transition: all 0.35s ease;
  z-index: 999;
}

/* SHOW ON HOVER */
.has-mega:hover .mega-menu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.mega-column {
  flex: 1;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.35s ease;
}

.mega-column h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 6px;
}

.mega-column a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 6px 0;
  font-size: 14px;
}

.mega-column a:hover {
  text-decoration: underline;
}
.has-mega:hover .mega-column {
  opacity: 1;
  transform: translateY(0);
}

.mega-column:nth-child(1) { transition-delay: 0.1s; }
.mega-column:nth-child(2) { transition-delay: 0.2s; }
.mega-column:nth-child(3) { transition-delay: 0.3s; }


/* SECTION BACKGROUND */
.vision-mission-section {
  background: #1f1f1f;
  padding: 30px 0 60px;
}

/* TITLE */
.page-title-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.page-title {
  background: #ff2c45;
  color: #fff;
  padding: 10px 36px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 3px;
}

/* CONTAINER */
.vision-mission-container {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  padding: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* BOX */
.vm-box img {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

/* HEADINGS */
.vm-heading {
  color: #ff2c45;
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXT */
.vm-box p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .vision-mission-container {
    grid-template-columns: 1fr;
  }
}
.mission-points {
  margin: 10px 0 15px 20px;
  padding: 0;
}

.mission-points li {
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 6px;
  color: #333;
}
.expand-btn {
  width: 42px;
  height: 42px;
  background: #ff2c45;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Hover effect */
.expand-btn:hover {
  background: #e6002c;
  transform: scale(1.08);
}
/* NAV BAR */
.main-nav {
  background: #6b6b80; /* your grey */
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* MENU */
.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu li a {
  display: block;
  padding: 14px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.menu li.active a,
.menu li a:hover {
  background: #ff2c45;
}

/* SOCIAL ICONS */
.menu-social {
  display: flex;
  gap: 10px;
  padding-right: 10px;
}

.menu-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: transform 0.3s ease, background 0.3s ease;
}

/* PLATFORM COLORS */
.menu-social .youtube { background: #ff0000; }
.menu-social .instagram { background: #e1306c; }
.menu-social .facebook { background: #1877f2; }
.menu-social .linkedin { background: #0a66c2; }

.menu-social a:hover {
  transform: scale(1.15);
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-inner {
    flex-direction: column;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu-social {
    margin: 10px 0;
  }
}
