    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background: #f9f9f9;
      color: #333;
    }

    /* Main Section */
    .about-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 30px;
      gap: 20px;
    }

    /* Left Content Box */
    .content-box {
      flex: 1;
      min-width: 100px;
      background: #fff;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .content-box h2 {
      color: rgb(0, 64, 129);
      margin-bottom: 8px;
    }
    .content-box p {
      font-size: 14px;
      margin-bottom: 15px;
      line-height: 1.6;
    }
    .btn {
      display: inline-block;
      padding: 10px 20px;
      background: #3a0101;
      color: #fff;
      border-radius: 5px;
      text-decoration: none;
      transition: background 0.3s;
    }
    .btn:hover {
      background: rgb(0, 64, 129);
    }

    /* Right Image Slider */
    .slider {
      flex: 1.5;
      min-width: 300px;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    .slides img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .dots {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
    }
    .dots span {
      height: 10px;
      width: 10px;
      margin: 0 5px;
      background: #ccc;
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
    }
    .dots span.active {
      background: rgb(0, 64, 129);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .about-section {
        flex-direction: column;
        text-align: center;
      }
      .content-box {
        order: 2;
      }
      .slider {
        order: 1;
      }
    }
     /* Top Bar */
.top-bar {
  background: #3a0101;
  color: #fff;
  padding: 7px 15px; /* chhoti height */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  font-size: 13px;
}

.top-bar a:hover {
  text-decoration: underline;
}

/* Social icons */
.social-icons a {
  margin: 0 5px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  .top-bar-left,
  .top-bar-right {
    justify-content: center;
  }
}


   /* Header Section */
.header {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  color: #fff;

  /* Background image with black shade */
  background: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("image/hero.JPG");
  background-size: cover;
  background-position: center;
}

.header img {
  height: 80px;
  margin-bottom: 10px;
}

.header h1 {
  margin: 10px 0;
  font-size: 28px;
  color: #ffffff; /* White for contrast */
}

.header p {
  margin: 5px 0;
  font-size: 16px;
  color: #ddd; /* Light gray text */
}

.header .tagline {
  color: rgb(0, 191, 255); /* Highlight tagline in blue */
  font-weight: bold;
  font-size: 18px;
}

.campus-buttons {
  margin: 15px 0;
}

.campus-buttons button {
  background: #3a0101;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.campus-buttons button:hover {
  background: #0056b3; /* Lighter blue on hover */
}

/* Navbar */
nav {
  background: #3a0101;
  padding: 12px 0;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffcc00; /* Golden hover effect */
}

    /* Focus Areas Section */
.focus-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.focus-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.focus-section .highlight {
  color: #28a745; /* Green highlight */
}

.focus-section .subtitle {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.focus-grid .card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.focus-grid .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-color: #28a745;
}

.focus-grid .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.focus-grid h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.focus-grid p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
/* #our gallery */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
}

.gallery-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.gallery-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}

/* Tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tab {
  padding: 10px 20px;
  border: none;
  background: #eee;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
}

.tab.active {
  background: #007bff;
  color: #fff;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  display: none;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.1);
}

.gallery-item.show {
  display: block;
}

/* Get Involved Section  */
/* Get Involved Section */
.get-involved {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #0a1f44, #0d2a5c);
  color: white;
}

.get-involved h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

.get-involved h2 span {
  color: #34d399; /* green highlight */
}

.get-involved p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #cbd5e1;
}

/* Cards */
.get-involved .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.get-involved .card {
  background: rgba(202, 212, 230, 0.6);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.get-involved .card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 20px rgba(231, 12, 12, 0.958);
}

.get-involved .card-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.get-involved .card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.get-involved .card p {
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Buttons */
.get-involved .btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.get-involved .blue { background: #2563eb; }
.get-involved .blue:hover { background: #1d4ed8; }

.get-involved .orange { background: #f97316; }
.get-involved .orange:hover { background: #ea580c; }

.get-involved .green { background: #16a34a; }
.get-involved .green:hover { background: #15803d; }

.get-involved .gradient {
  background: linear-gradient(to right, #2563eb, #16a34a);
}
.get-involved .gradient:hover {
  background: linear-gradient(to right, #1d4ed8, #15803d);
}

/* CTA */
.get-involved .cta h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.get-involved .cta p {
  color: #cbd5e1;
  margin-bottom: 20px;
}
/* Stories Section */
.stories {
  padding: 70px 20px;
  background: #f8f9fa;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.story-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.story-icon {
  font-size: 50px;
  color: #0077cc;
  margin-bottom: 15px;
}

.story-content {
  text-align: left;
}

.story-content h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.story-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.read-more {
  text-decoration: none;
  color: #0077cc;
  font-weight: 600;
  transition: color 0.3s;
}

.read-more:hover {
  color: #0056a3;
}
/* #mission  */
body {

  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9fafb;
  color: #111827;
}

/* Section Layout */
.mvvi-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

/* Cards */
.card {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  flex: 1 1 220px;
  max-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Icons */
.card i {
  font-size: 32px;
  margin-bottom: 15px;
}

/* Headings */
.card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #111827;
}

/* Paragraphs */
.card p {
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
}

/* Icon Colors */
.mission i { color: #2563eb; } /* Blue */
.vision i { color: #16a34a; }  /* Green */
.values i { color: #f97316; }  /* Orange */
.impact i { color: #8b5cf6; }  /* Purple */
/* #contact form  */
:root {
  --primary: #3a0101;
  --dark: #0f172a;
  --muted: #6b6b76;
  --bg: #f7f7fb;
  --card: #ffffff;
  --shadow: 0 8px 28px rgba(16,24,40,0.1);
  --radius: 18px;
  --max-width: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
}

.contact-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}
.contact-header h1 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
}
.contact-header p {
  color: var(--muted);
  font-size: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.contact-card {
  background: var(--card);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.contact-card h2 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary);
}
.contact-card p, .contact-card a {
  color: var(--dark);
  font-size: 15px;
  text-decoration: none;
}
.contact-card a:hover {
  color: var(--primary);
}

/* Contact Form */
.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
}
.contact-form button {
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background .3s ease;
  width: 100%;
}
.contact-form button:hover {
  background: #3a0101;
}

/* Responsive */
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* #footer  */
/* :root {
  --primary: #ff6b6b;
  --dark: #0f172a;
  --muted: #9ca3af;
  --bg: #111827;
  --light: #f9fafb;
} */

.footer {
  background: var(--bg);
  color: var(--light);
  padding: 50px 20px 20px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}

.footer h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--primary);
}
.footer h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary);
}

.footer p, 
.footer a {
  font-size: 14px;
  color: var(--light);
  text-decoration: none;
}
.footer a:hover {
  color: var(--primary);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 8px;
}

.footer-social .social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.footer-social a {
  background: #fcfdff;
  padding: 10px;
  border-radius: 50%;
  display: inline-flex;
  font-size: 16px;
  transition: background .3s ease, transform .3s ease;
}
.footer-social a:hover {
  background: var(--primary);
  transform: scale(1.1);
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(148, 2, 2, 0.929);
  padding-top: 15px;
  font-size: 13px;
  color: var(--muted);
}

/* Responsive Layout */
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
  }
  .footer-social .social-icons {
    justify-content: flex-start;
  }
}
/* #whatsapp icon  */
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #3a0101;
  color: #fff;
  font-size: 28px;
  padding: 14px 16px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float:hover {
  background: #20b358;
  transform: scale(1.1);
}

 /* Notice slider */
  .notice-wrap {
  width: 680px;               /* adjust width as needed */
  max-width: 45vw;
  overflow: hidden;
  position: relative;
  background: #fffbf0;
  color: #7c2d12;
  border-radius: 6px;
  padding: 10px 0;
  margin-right: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  border-top: 2px solid #ffcc00;
  border-bottom: 2px solid #ffcc00;
}

.notice-slider {
  display: flex;
  width: 100%;
}

.notice-track {
  display: inline-flex;
  white-space: nowrap;
  animation: slideNotice 20s linear infinite;
}

.notice-track a {
  display: inline-block;
  margin-right: 50px;
  text-decoration: none;
  color: inherit; /* inherits #7c2d12 */
  font-weight: 600;
}

.notice-track a span {
  font-weight: 700;
}

/* Hover to pause animation */
.notice-wrap:hover .notice-track {
  animation-play-state: paused;
}

/* Keyframes for sliding */
@keyframes slideNotice {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* seamless loop: content duplicated */
}


