@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background-size: contain; /* Prevents cropping */
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #000000;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 0.9rem;
}

.announcement-bar a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.announcement-bar a:hover {
  color: #e40808;
}

.header {
  position: top;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  background: rgb(53, 51, 51);
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 100;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}
.header:hover::before {
  left: 100%;
}

/*
.logo {
  color: red;
  font-size: 25px;
  text-decoration: none;
  font-weight: 600;
  cursor: default;
}

*/

/*New added */
.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 2px solid #e40808;
  object-fit: cover;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: rotate(10deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.site-name {
  font-size: 1.5rem;
  color: #e40808;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.5px;
}


.tagline {
  font-size: 0.8rem;
  color: white;
  margin: 0;
  font-style: italic;
  max-width: 300px;
}



/*New Ended*/

.navbar a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  margin-left: 3px;
  transition: 0.3s;
  padding: 2px;
}
.navbar a:hover {
  color: #f00;
}
#menu-icon {
  font-size: 36px;
  color: red;
  display: none;
}

.section {
  padding: 80px 0px;
  text-align: center;
  color: white;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('Images/bg.jpg') no-repeat center center/cover;
  height: 80vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
}

.hero-content h1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-block;
  padding: 15px 30px;
  background-color: #e40808;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background-color: #c40707;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-secondary {
  display: inline-block;
  padding: 15px 30px;
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ABOUT US Section */
.about-section {
  background: white;
  padding: 80px 20px;
  color: #222;
  height: 85px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.about-content h2 {
  font-size: 2.5rem;
  color: #e40808;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.about-content h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #e40808;
  position: absolute;
  bottom: -10px;
  left: 0;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}

.about-highlights {
  margin-top: 20px;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.about-highlights li {
  background: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-highlights li i {
  color: #e40808;
  font-size: 1.2rem;
}

.about-highlights li:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }
}


/* Quick Info Cards */
.quick-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 20px;
  background: linear-gradient(to right, #050505, #ebecee);
  transform: translateY(-50px);
  margin: 0 0cm;
  border-radius: 0px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.info-card {
  text-align: center;
  padding: 30px 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  width: 250px;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-card i {
  font-size: 2.5rem;
  color: #e40808;
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #002244;
}

.info-card p {
  color: #777;
  font-size: 0.9rem;
}

/* Manifesto Section Styling */
#manifesto.section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  min-height: 30vh;
  padding: 60px 20px;
  background: linear-gradient(to right, #4e4d4d, #ebecee);
  color: rgb(243, 52, 52);
}

.manifesto-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.manifesto-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color:black
}

.manifesto-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: rgb(243, 52, 52);
  color: white;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.manifesto-button:hover {
  background-color: #c40707;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Stylish Timeline with Icons and Labels */
#history {
  background: linear-gradient(to right, #4e4d4d, #ebecee);
  padding: 100px 20px;
  color: rgb(243, 52, 52);
  text-align: center;
  height:fit-content;
  padding-bottom: 5px;
}

#history h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  text-transform: uppercase;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding-left: 40px;
  border-left:0 px solid #000000;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  gap: 20px;
  animation: fadeInUp 1s ease-in-out both;
}

.timeline-icon {
  position: absolute;
  left: -40px;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #eeeeee;
  border-radius: 50%;
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 3px solid white;
  box-shadow: 0 0 10px rgba(0,255,255,0.3);
}

.timeline-content {
  flex: 1;
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: rgb(243, 52, 52);
}

.timeline-content p {
  font-size: 1rem;
  color: #111111;
  line-height: 1.6;
}

.timeline-label {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 4px 12px;
  font-size: 0.85rem;
  border-radius: 20px;
  color: #000000;
  margin-bottom: 10px;
}

/* ============================= */

.cinema{position:relative}
.cinema{scroll-snap-type:y mandatory;overflow-y:visible}

.cinema .cinema-rail{position:sticky;top:80px;left:0;width:6px;height:70vh;margin-left:10px;border-radius:999px;background:rgba(255,255,255,.08);z-index:5}
.cinema .cinema-rail .rail-fill{display:block;width:100%;height:0;background:#e40808;border-radius:999px;transition:height .2s linear}

.scene{position:relative;min-height:auto;padding:80px 0;display:grid;place-items:center;color:#fff;scroll-snap-align:start;isolation:isolate}
.scene .scene-bg.img{position:absolute;inset:0;background-image:var(--bg);background-size:cover;background-position:center;filter:grayscale(12%) contrast(105%);transform:scale(1.04);transition:transform .8s ease}
.scene .scene-bg .bg-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:grayscale(12%) contrast(105%)}
.scene .overlay{position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35) 40%, rgba(0,0,0,.65));z-index:0}
.scene .overlay.dark{background:linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.75))}
.scene .scene-content{position:relative;z-index:2;text-align:center;padding:0 18px;max-width:900px;transform:translateY(20px);opacity:0;transition:opacity .8s ease, transform .8s ease}
.scene .kicker{letter-spacing:.15em;text-transform:uppercase;font-weight:700;color:#f0f0f0;opacity:.85;margin-bottom:8px}
.scene .title{font-size:clamp(2rem, 6vw, 4rem);line-height:1.05;text-shadow:0 6px 30px rgba(0,0,0,.45)}
.scene .subtitle{margin-top:10px;font-size:clamp(1rem, 2.3vw, 1.2rem);opacity:.92}

.scene::before{content:attr(data-year);position:absolute;left:24px;top:24px;background:rgba(0,0,0,.55);border:1px solid rgba(255,255,255,.15);padding:6px 10px;border-radius:999px;font-size:.8rem;letter-spacing:.05em}

/* Reveal when in view */
.scene.in-view .scene-content{opacity:1;transform:translateY(0)}
.scene.in-view .scene-bg.img{transform:scale(1.02)}

/* Credits button style reuse */
.scene .hero-cta{display:inline-block;margin-top:18px;padding:12px 16px;border-radius:12px;background:#e40808;color:#fff;text-decoration:none;border:1px solid #e40808}
.scene .hero-cta:hover{filter:brightness(1.05)}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce){
  .scene .scene-content,.scene .scene-bg.img,.cinema .cinema-rail .rail-fill{transition:none}
}

/* Responsive */
@media (max-width: 768px) {
  .timeline {
    padding-left: 20px;
  }

  .cta-button {
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
    width: 100%;
  }

  .timeline-icon {
    left: -25px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .timeline-content h3 {
    font-size: 1.2rem;
  }

  .timeline-content p {
    font-size: 0.95rem;
  }
}

/* Responsive */
@media (max-width:900px){
  .about-container{grid-template-columns:1fr}
  .team-grid{grid-template-columns:repeat(2,1fr)}
  .cinema .cinema-rail{display:none}
  .scene::before{left:12px;top:12px}
}
@media (max-width:600px){
  .team-grid{grid-template-columns:1fr}
  .newsletter-form{flex-direction:column}
  .newsletter-form input{min-width:unset;width:100%}
}

/* Desktop video scene adjustment */
@media (min-width: 1024px) {
  .scene-video {
  min-height: calc(100vh - 70px); /* 70px = approx navbar height */
}

.scene-video .bg-video {
  height: calc(100vh - 70px);
  object-fit: cover;
} /* thoda extra height for cinematic look */
  
  .scene-video .bg-video {
    object-fit: cover;
    height: 100vh;
  }
}

#vision {
  background: white;
  text-align: center;
  height:fit-content;
  padding-bottom: 5px;
  padding-top: 10px;
 
}

#vision h2 {
  font-size: 2.5rem;
  margin-bottom: 6px;
  color: rgb(243, 52, 52);
  text-transform: uppercase;
}

#mission {
  background: linear-gradient(to right, #4e4d4d, #ebecee);
  text-align: center;
  height:fit-content;
  padding-bottom: 0px;
  padding-top: 10px;
  height: auto;
  margin-bottom: 0px;
}

#mission h2 {
  font-size: 2.5rem;
  margin-bottom: 0px;
  color: rgb(243, 52, 52);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  text-transform: uppercase;
}

/* Section heading styles */
.section h1 {
  font-size: 50px;
  margin-bottom: 10px;
  text-align: ce;
}

.section p {
  font-size: 18px;
}

/*Founding Members*/
#team {
  margin-top: 30px;
  color: rgb(243, 52, 52);
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 50px;
}

.team-card {
  text-align: center;
  background-color: #f9f9f9;
  border: 1px solid #aaa;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s;
  justify-content: center;
  align-items: center;
}

.team-card:hover {
  transform: scale(1.03);
}

.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #aaa;
  margin-bottom: 10px;
}

.team-card h3 {
  margin: 5px 0;
  font-size: 1.1em;
  color: #333;
}

.team-card p {
  font-size: 0.9em;
  color: #555;
}

/* References */

/* Newsletter Section */
.newsletter {
  background: linear-gradient(to right, #4e4d4d, #ebecee);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.newsletter-content {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color:rgb(243, 52, 52)
}

.newsletter p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: #050505;
}

.newsletter-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.newsletter-form input {
  flex: 1;                /* input jitna space bache le */
  min-width: 0;           /* shrink hone de */
  padding: 15px;
  border: none;
  border-radius: 30px 0 0 30px;
  font-size: 0.9rem;
}

.newsletter-form button {
  flex: 0 0 auto;         /* button shrink na ho */
  padding: 15px 20px;
  background-color: #e40808;
  color: #fff;
  border: none;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background-color: #c40707;
}

/* Mobile fix */
@media (max-width:600px){
  .newsletter-form {
    flex-direction: column;   /* input upar, button neeche */
    max-width: 100%;          /* poora screen use kare */
  }
  .newsletter-form input {
    border-radius: 30px;
    margin-bottom: 10px;
    width: 100%;
  }
  .newsletter-form button {
    border-radius: 30px;
    width: 100%;
  }
}
/* Footer Styles */
footer {
  background-color: #1d1a1a;
  color: #fff;
  padding: 60px 0 0;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #e40808;
}

.footer-section p {
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #e40808;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #e40808;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}


/* BREAKPOINTS */
@media (max-width: 992px) {
  .header {
    padding: 1.25rem 4%;
  }
}
@media (max-width: 768px) {
  #menu-icon {
    display: block;
  }
  .logo-section {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-bottom: 15px;
  }

  .navbar {
    position: fixed;
    top:100%;
    left: 0;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1000px);
    z-index: 100;
    padding: 0.5rem 4%;
    display: none;
    justify-content: space-between;
 
  }

  .nav-menu {
    position: fixed;
    top: 120px;
    left: -100%;
    width: 80%;
    max-width: 300px;
    background: #fff;
    flex-direction: column;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
    padding: 20px 0;
    z-index: 999;
    
  }
  
  .nav-menu.active {
    left: 0;
  }
  .navbar.active {
    display: block;
  }
  .navbar a {
    display: block;
    margin: 1.5rem 0;
    color: black;
  }
  .nav-bg {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 435px;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    z-index: 99;
    display: none;
  }
  .nav-bg.active {
    display: block;
  }
}

/* Responsive section padding and text */
@media (max-width: 768px) {
  .section {
    padding: 100px 15px;
  }

  .site-name {
  font-size: 0.9rem;
  color: #e40808;
  margin: 0;
  font-weight: 4000;
  letter-spacing: 0px;
}


.tagline {
  font-size: 0.6rem;
  color: white;
  margin: 0;
  font-style: italic;
  max-width: 300px;
}

  .section h1 {
    font-size: 28px;
  }

  .section p {
    font-size: 16px;
  }

  .logo {
    font-size: 20px;
  }

  .navbar a {
    font-size: 16px;
    margin-left: 0;
  }

  .header {
    padding: 15px 20px;
  }

  .home-section,
  .manifesto-section,
  .grievance-section,
  .gallery-section,
  .teams-section,
  .contact-section {
    background-size: cover;
    background-position: center;
  }
  
}

/* Reviews Section */
.reviews-section {
  background: white;
  color: black;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.reviews-section h2 {
  font-size: 2rem;
  color: rgb(243, 52, 52);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reviews-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 30px;
  animation: marquee 25s linear infinite;
  width: max-content;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Auto pause on hover */
.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  min-width: 300px;
  max-width: 350px;
  background: rgba(155, 123, 123, 0.08);
  border: 1px solid rgba(15, 14, 14, 0.2);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: scale(1.05);
  background: rgba(255,255,255,0.15);
}

.review-card p {
  font-style: italic;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
}

.review-card h4 {
  color: #e40808;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Marquee Animation */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Vision & Mission Section */
.vision-mission {
  padding: 80px 20px;
  background: #f9f9f9;   /* Same background for both sections */
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
              url("Images/background.jpeg") center/cover no-repeat;
}

.vm-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.vm-card {
 background: rgba(255, 255, 255, 0.6);  /* semi-transparent white */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: left;
}

.vm-card h2 {
  color: #e40808;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.vm-card p, 
.vm-card ul {
  color: #333;
  line-height: 1.6;
}

.vm-card ul {
  padding-left: 20px;
  list-style: disc;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .vm-container {
    grid-template-columns: 1fr;
  }

  .about-section {
  background: white;
  padding: 80px 20px;
  color: #222;
  height: auto;
}

.vision-mission {
  padding: 80px 20px;
  background: #f9f9f9;   /* Same background for both sections */
  
}


.vm-card {
 background: white;  
 
}

}
