body{
    margin: 0px;
    padding: 0px;    
}

 .navbar {
    background-color: #eb0303 !important;
    padding: 0.3rem 1rem;
}
.navbar-nav {
    margin: 0 auto; /* center items */
}
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 450;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
    font-size: 12.5px;
    letter-spacing: 0.7px;
    position: relative;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}
.navbar-nav .nav-link:hover {
    color: #ffd700 !important;
}
/* Dropdown hover */
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: slideDown 0.3s ease forwards;
}
.dropdown-menu {
    border-radius: 8px;
    border: 2px solid transparent;
    transform-origin: top center;
    opacity: 0;
}
.dropdown-menu .dropdown-item {
    transition: all 0.3s ease;
    padding: 5px 20px;
    font-family: 'Roboto', sans-serif;
}
.dropdown-menu .dropdown-item:hover {
    border-left: 3px solid #eb0303;
    background-color: #f8f9fa;
    color: #eb0303;
    padding-left: 25px; /* little slide effect */
}
.navbar .nav-item, .dropdown-menu .dropdown-item{
    letter-spacing: 0.5px;
    font-size: 14.7px;
    font-family: 'Roboto', sans-serif;
}
/* Animation for dropdown */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
        border-color: transparent;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        border-color: #eb0303;
    }
}
.slider-container {
    width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;       /* Full width & height, crop thoda chalega */
    background-position: center;  /* Center align */
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active {
    opacity: 1;
}
/* Arrow icons */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: white;
    background-color: rgba(0,0,0,0.4);
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    user-select: none;
    z-index: 10;
}
.arrow.left {
    left: 20px;
}
.arrow.right {
    right: 20px;
}
/* Caption */
.caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    background-color: rgba(0,0,0,0.5);
    padding: 5px 10px;
    font-size: 0.9rem; /* chhota caption */
    border-radius: 3px;
    z-index: 5;
}
/* Shimmer gradient text */
.shimmer-text {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: #EB0303!important;
  background: linear-gradient(90deg, #EB0303, #eb0303, #ff8000);
  background-size: 100% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  font-weight: bold;
}

@keyframes shimmer {
  0% { background-position: -150% center; }
  100% { background-position: 150% center; }
}

/* Glow behind heading */
.glow-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 150%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #EB0303 0%, transparent 70%);
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}
.news{
    height: 400px;
    background-color: #fef3c7;
    padding: 10px 10px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}
.news .inner-news{
    height: auto;
    position: relative;
    background-color: #fff;
    border: 2px solid #ffd700;
    border-radius: 10px;
    padding: 10px;
}
.news .inner-news::before,
.news .inner-news::after,
.news .inner-news span::before,
.news .inner-news span::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 30px;
    border-radius: 50%;
    box-shadow: inset -3px -4px 6px rgba(0,0,0,0.2);
}
/* top-left */
.news .inner-news::before {
    top: -20px;
    left: -20px;
    background: #ff6b6b; /* red balloon */
}
/* top-right */
.news .inner-news::after {
    top: -20px;
    right: -20px;
    background: #6bc5ff; /* blue balloon */
}
/* bottom-left */
.news .inner-news span::before {
    bottom: -20px;
    left: -20px;
    background: #6bff95; /* green balloon */
}
/* bottom-right */
.news .inner-news span::after {
    bottom: -20px;
    right: -20px;
    background: #f7b731; /* yellow balloon */
}
.news .inner-news p{
    font-weight: 600;
    color: #EB0303;
    letter-spacing: 0px;
    padding: 5px 5px 0px 5px;
}
.news .inner-news span{
    display: block;
    margin-top: -13px;
    padding: 0px 5px 5px 5px;
    border-left: 5px solid #EB0303;
    margin-left: 5px;
}
.mission h3{
    font-family: "Epunda Slab", serif;
    padding: 10px;
}
.mission-vission{
    height: auto;
    padding: 10px;
    background-color: #fce9d9;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}
.mission .mission-vission p{
    padding: 0px 10px;
    text-align: justify;
}
.mission-vission:hover{
    box-shadow: #EB0303 0px 25px 20px -20px;
}
.events{
    height: 350px;
    border-radius: 10px;
    box-shadow: #EB0303 0px 6px 12px -2px, #f7b731 0px 3px 7px -3px;
    border: 2px solid #EB0303;
}
.events marquee a img{
    border-radius: 10px;
}

.governance{
    height: auto;
    padding-bottom: 20px;
    background-color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 8px;
    border-bottom: 2px solid #eb0303;
    margin-top: 8px;
}
.governance .img-g{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}
.governance .img-g img{
    border-radius: 50%;
    border: 2px solid #eb0303;
    object-fit: cover;
}
.governance .g-name{
    display: flex;
    justify-content: center;
    padding-top: 20px;
}
.governance .g-name p{
    font-weight: 500;
    font-family: "Epunda Slab", serif;
    font-size: 18px;
}
.governance .designation{
    display: flex;
    justify-content: center;
}
.governance .designation span{
    background-color: #eb0303;
    color: #fff;
    font-size: 14px;
    padding: 1px 15px 2px 15px;
    border-radius: 3px;
    margin-top: -5px;
}
.governance:hover{
    box-shadow: #eb0303 0px 13px 27px -5px, #eb0303 0px 8px 16px -8px;
}

.governance1{
    height: 280px;
    padding-bottom: 20px;
    background-color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 8px;
    border-bottom: 2px solid #eb0303;
    margin-top: 8px;
}
.governance1 .img-g{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}
.governance1 .img-g img{
    border-radius: 50%;
    border: 2px solid #eb0303;
    object-fit: cover;
}
.governance1 .g-name{
    display: flex;
    justify-content: center;
    padding-top: 20px;
}
.governance1 .g-name p{
    font-weight: 500;
    font-family: "Epunda Slab", serif;
    font-size: 18px;
}
.governance1 .designation{
    display: flex;
    justify-content: center;
}
.governance1 .designation span{
    font-size: 14px;
    font-weight: 600;
    padding: 1px 15px 2px 15px;
    border-radius: 3px;
    margin-top: -15px;
    color: #868b97;
    display: block;
    text-align: center;
}
.governance1:hover{
    box-shadow: #eb0303 0px 13px 27px -5px, #eb0303 0px 8px 16px -8px;
}
@keyframes pulse {
  0% {
    transform: translateY(0px);
    box-shadow: #f7b731 0px 1px 4px;
  }
  50% {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 8px;
  }
  100% {
    transform: translateY(0px);
    box-shadow: #f7b731 0px 1px 4px;
  }
}
.address {
    height: 70px;
    background-color: #fff;
    border-radius: 5px;
    border: 2px solid #EB0303;
    display: flex;
    align-items: center;
    padding: 0 15px;
    animation: pulse 2s infinite; /* continuous animation */
}

.address i {
    color: #EB0303;
    font-size: 24px;
    margin-right: 12px;
}

.contact-text {
    font-size: 14px;
    line-height: 1.2;
}

.contact-text span {
    display: block;
    font-weight: 500;
}
.contact-text a{
    text-decoration: none;
    color: #313131;
}
/* Responsive */
@media (max-width: 768px) {
  .star-text { font-size: 7vw; }
  .phrases p { font-size: 4vw; }
}
@media (max-width: 480px) {
  .star-text { font-size: 9vw; }
  .phrases p { font-size: 5vw; }
}
.about-us p{
    font-family: sans-serif;
    letter-spacing: 1px;
    font-size: 14.8px;
}
.about-us h3 {
  font-size: 22px;
  font-weight: bold;
  color: #d32f2f; 
  text-decoration: underline;
  text-align: left;
  margin: 20px 0;
  letter-spacing: 0.7px;
  font-family: "Epunda Slab", serif;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  gap: 12px; 
}

.about-us h3 img {
  width: 20px;   /* size adjust kar lo */
  height: 20px;
}
.about-us ul {
  list-style: none; /* default bullets hatayenge */
  padding: 0;
  margin: 0;
}

.about-us ul li {
  position: relative;
  padding-left: 35px; /* space checkbox ke liye */
  margin-bottom: 12px;
  line-height: 1.6;
  font-family: sans-serif;
  letter-spacing: 1px;
  font-size: 14.8px;
  text-align: justify;
}

.about-us ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 2px solid #EB0303; /* checkbox border */
  border-radius: 4px; /* square ya thoda rounded */
  background-color: #fff;
}

.about-us ul li.checked::before {
  background-color: #EB0303;
  border-color: #EB0303;
}

.about-us ul li.checked::after {
  content: "✓";
  position: absolute;
  left: 3px;
  top: 0px;
  font-size: 14px;
  color: white;
  font-weight: bold;
}
footer {
    height: auto;
    padding-bottom: 10px;
    margin-top: 100px!important;
    background-color: #111; /* dark blackish background */
    background-image: 
        repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 2px, transparent 20px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 2px, transparent 20px);
    background-size: 5px 5px; /* spacing between dots/squares */
}
footer .footer-about p{
    text-align: justify;
    color: #fff;
}
footer .footer-about .footer-icons a{
    text-decoration: none;
}
footer .footer-about .footer-icons a i{
    background-color: #fff;
    padding: 7px;
    border-radius: 50%;
    color: #EB0303;
}
footer .footer-about .footer-form {
    position: relative;
    margin-top: -80px!important;
    background-color: #2a2a2a;
    padding: 2px 10px 10px 10px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #EB0303;
}

footer .footer-about .footer-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #f7b731;
    border-radius: 10px;
    animation: rotateBorder 3s linear infinite;
    box-sizing: border-box;
}

footer .footer-about .footer-form > * {
    position: relative; /* taaki content static rahe */
    z-index: 1;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

footer .footer-about .footer-form input[type="text"]::placeholder{
    color: #EEE;
}
footer .footer-about .footer-form textarea::placeholder{
    color: #EEE;
}
/* responsive area start */
@media (max-width: 768px) {
    .logo-container {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .navbar .nav-item .nav-link{
        text-align: left!important;
    }
.address{
    margin-top: 15px;
}
.logo-area{
    height: auto!important;
}
.logo-title{
    font-size: 17px!important;
}
footer .footer-about .footer-form{
    margin-top: 10px!important;
}
.button-group {
    margin-top: 10px;
    justify-content: center;
    }
    .top-header{
        display: none;
    }
}
@media (max-width: 1440px) {
    .logo-title {
        font-size: 1.5rem!important;
    }
    .button-group .btn-custom{
        padding: 6px 10px!important;
    }
}
@media (max-width: 768px) {
    .slider-container {
        height: 250px; /* chhota height kar diya */
    }
    .slide {
        background-size: contain; /* pura image dikhayega */
        background-color: #000;   /* ya koi background color */
    }
    .slide .caption{
        font-size: 11px!important;
    }
    .logo-title{
        font-size: 18px!important;
    }
}

/* for popup */
/* Transparent background for modal */
    .modal-backdrop.show {
      opacity: 0.1 !important; /* light transparent background */
      background-color: #000 !important;
    }

    /* Modal Animation */
    .modal.fade .modal-dialog {
      transform: translateY(-100px);
      opacity: 0;
      transition: all 0.6s ease;
    }

    .modal.fade.show .modal-dialog {
      transform: translateY(0);
      opacity: 1;
    }

    /* Modal Content Styling */
    .modal-content {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      width: 500px; /* fixed smaller width */
      margin: auto;
      background: #fff;
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
      animation: slideDown1 0.6s ease;
      position: relative;
    }

    @keyframes slideDown1 {
      0% {
        transform: translateY(-120px);
        opacity: 0;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .modal-body img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      display: block;
    }

    /* Custom Close Button */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #ffffff;
      border: none;
      color: #000;
      font-size: 1.3rem;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      line-height: 35px;
      text-align: center;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(0,0,0,0.25);
      transition: all 0.3s ease;
      z-index: 10;
    }

    .close-btn:hover {
      background: #dc3545;
      color: #fff;
      transform: rotate(90deg);
    }
    .popup-btn {
        display: inline-block;
        background: linear-gradient(135deg, #ff3b3b, #ff9900);
        color: #fff;
        padding: 10px 25px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        box-shadow: 0 0 10px rgba(255, 120, 0, 0.5);
        transition: all 0.3s ease-in-out;
        }

    .popup-btn:hover {
        background: linear-gradient(135deg, #00d4ff, #007bff);
        box-shadow: 0 0 20px rgba(0, 195, 255, 0.7);
        transform: scale(1.05);
    }