
/* Banner Section Styling */

.home__banner {
  position: relative;
  background: linear-gradient(to bottom, rgb(22 28 76 / 88%),rgb(255 255 255)), url(assets/img/banner.jpg) no-repeat center center / cover;
  height: 90vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000; /* White text for contrast */
}

/* Animation */
.fade-in-text {
    font-size: 3rem;
    font-weight: bold;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 2s ease forwards;
}

/* Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner {
  position: relative;
  background: linear-gradient(to bottom, rgb(22 28 76 / 88%),rgb(255 255 255)), url(assets/img/banner.jpg) no-repeat center center / cover;
  height: 70vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000; /* White text for contrast */
}

.banner-content {
  text-align: center;
}

.banner__slide-content {
  text-align: center; /* Center-align the text */
  color: #000000;
}

.banner__slide-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.banner__slide-content span.subtitle__one {
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.banner__slide-content-button {
  margin-top: 20px;
}

.banner__slide-content-button a {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.theme-banner-btn {
  background-color: #007bff;
  color: #fff;
}

.theme-banner-btn:hover {
  background-color: #0056b3;
}

.theme-border-btn {
  border: 2px solid #007bff;
  color: #007bff;
}

.theme-border-btn:hover {
  background-color: #007bff;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .banner__slide-content h1 {
      font-size: 36px;
  }

  .banner__slide-content span.subtitle__one {
      font-size: 16px;
  }

  .banner__slide-content-button a {
      font-size: 14px;
      padding: 8px 16px;
  }
}

@media (max-width: 768px) {
  .banner__slide-content h1 {
      font-size: 28px;
  }

  .banner__slide-content span.subtitle__one {
      font-size: 14px;
  }
}


.about__banner {
  position: relative;
  background: linear-gradient(to bottom, rgb(22 28 76 / 88%),rgb(255 255 255)), url(assets/img/about-us.png) no-repeat center center / cover;
  height: 80vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000; /* White text for contrast */
}


   
    /*.about__three {
      padding: 60px 0;
  }*/
  
  .half_column_image img {
      width: 100%;
      height: auto;
      /*border-radius: 10px;*/
      object-fit: cover;
      margin-top: 12px;
  }
  
  .half_column_content_2 {
      padding: 20px;
  }
  
  .half_column_content_2 h2 {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 15px;
      color: #000000;
  }
  
  .half_column_content_2 p {
      font-size: 18px;
      line-height: 1.6;
      margin-bottom: 20px;
      color: #000000;
  }
  
  .button_two {
      display: inline-block;
      padding: 10px 20px;
      background-color: #d56666;
      color: #fff;
      text-decoration: none;
      /*border-radius: 5px;*/
      transition: background-color 0.3s ease;
  }
  
  .button_two:hover {
      background-color: #0056b3;
  }
  
  @media (max-width: 768px) {
      .half_column_content_2 {
          text-align: center;
          padding: 0;
      }
  
      .half_column_content_2 h2 {
          font-size: 24px;
      }
  
      .button_two {
          margin-top: 15px;
      }
  }

  
 
  .site-footer {
    background-color: #0d1028;
    padding: 40px 0;
    color: #fffcfc;
}

.site-footer__menu-heading {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.site-footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__nav-list li {
    margin-bottom: 10px;
}

.site-footer__nav-list li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer__nav-list li a:hover {
    color: #007bff;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.social-follow__list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-follow__list li a {
    font-size: 18px;
    color: #ffffff;
    transition: color 0.3s;
}

.social-follow__list li a:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .site-footer__row--navigation {
        text-align: center;
    }

    .social-follow__list {
        justify-content: center;
    }
}

/*i.fas.fa-smile.fa-3x {
  color: #ffffff;
}
i.fas.fa-graduation-cap.fa-3x {
  color: #ffffff;
}*/



/* Card Wrapper Styling */
.our-teachers-wrapper {
  /*border-radius: 10px;*/
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-teachers-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Card Content Styling */
.single-team {
  background-color: #000000;
  /*border-radius: 10px;*/
  overflow: hidden;
}

.member-image-2 img {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #ddd;
}

.member-info-4 {
  padding: 20px;
  text-align: center;
}

.member-info-4 h5 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.member-info-4 span {
  font-size: 14px;
  color: #777;
}

/* Responsive Design */
@media (max-width: 992px) {
  .col-lg-4 {
      margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .section-title-2 h2 {
      font-size: 28px;
  }

  .section-title-2 h4 {
      font-size: 16px;
  }

  .member-info-4 h5 {
      font-size: 18px;
  }

  .member-info-4 span {
      font-size: 13px;
  }
}

/*footer style*/
.row.site-footer__row.site-footer__row--navigation {
  color: #f3f4f4;
  font-family: GT America Standard Bold;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 16px;
  text-align: center;
}







.testimonial-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

/* Image Container */
.image-container {
  flex: 1 1 40%;
  text-align: center;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Testimonial Content */
.testimonial-content {
  flex: 1 1 60%;
  text-align: center;
}

.testimonial-content h3.name {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
}

.testimonial-content p.designation {
  font-size: 1rem;
  color: #777;
  margin-bottom: 15px;
}

.testimonial-content p.quote {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

/* Navigation Buttons */
.arrow-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.arrow-button {
  background-color: #007bff;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.arrow-button svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}

.arrow-button:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-grid {
    flex-direction: column;
  }

  .image-container {
    margin-bottom: 20px;
  }

  .testimonial-content h3.name {
    font-size: 1.5rem;
  }

  .testimonial-content p.quote {
    font-size: 1rem;
  }
}







h2, h3 {
  color: #000000;
}

.about-section {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 30px;
}

.about-section p {
  max-width: 70%;
  font-size: 14px;
  line-height: 1.6;
}

.org-chart-btn {
  background-color: #000000;
  border: 1px solid #ccc;
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.profile {
  text-align: left;
}

.profile img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 4px;
}

.profile p {
  margin-top: 10px;
  font-size: 14px;
}




/* General Reset */


/* Grid Container */
.grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

/* Profile Card */
.profile {
  display: flex;
  align-items: center;
  gap: 15px;
  /*background: #fff;*/
  /*border: 1px solid #ddd;*/
  /*border-radius: 8px;*/
  padding: 15px;
  /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
}

.profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-info p {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

.profile-info strong {
  font-size: 1.1rem;
  color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile {
    flex-direction: column;
    text-align: center;
  }

  .profile img {
    margin-bottom: 10px;
  }
}




/* Grid Container */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}

/* Profile Card *
.profile {
  text-align: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}*/

.profile img {
  width: 100px;
  height: 100px;
  border-radius: 1%;
  margin-bottom: 10px;
}

.profile p {
  font-size: 1rem;
  color: #333;
  font-size: 1.1rem;
  color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}










.description {
  max-width: 700px;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: none;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

.cta-button span {
  display: inline-block;
  margin-right: 0.5rem;
  background: #4a555f;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

hr {
  border: 1px solid #1a1a1a;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .description {
    font-size: 0.95rem;
  }

  nav {
    gap: 0.75rem;
  }
}








.hero-section {
  background-image: url('assets/img/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 80vh;
  position: relative;
  color: rgb(0, 0, 0);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgb(22 28 76 / 88%),rgb(255 255 255));
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}

.left-text h1 {
  font-size: 3rem;
  font-weight: bold;
  font-family: emoji;
}

.right-text {
  max-width: 50%;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #000;
}







.navbar {
  background-color: hsl(0, 0%, 100%)0%, 100%;
  padding: 1rem 2rem;
  border-bottom: 1px solid #dcdcdc;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: #333;
  align-items: center;
  margin-left: 67px;
}

.content-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3rem 2rem;
}

.heading h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.description {
  max-width: 55%;
  font-size: 1rem;
  line-height: 1.7;
}

.directory-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  text-decoration: none;
  font-weight: bold;
  color: #1a1a1a;
}

.arrow {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1.2rem;
  background-color: #444d4a;
  color: white;
  padding: 0.5rem;
  border-radius: 50%;
}

.divider {
  border: none;
  height: 4px;
  background-color: #333;
  width: 90%;
  margin: 2rem auto;
}


/* 📱 Mobile adjustments */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column; /* stack vertically */
    gap: 5px;
  }

  .navbar li {
    font-size: 14px;
  }

  .content-section .heading h1 {
    font-size: 22px;
    text-align: center;
  }

  .content-section {
    padding: 15px;
  }
}

/* General styles for the section */
.section {
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
    box-sizing: border-box;
}

.section__header {
    text-align: left;
    margin-bottom: 20px;
}

.section-header__title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.section__content {
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
}

.intro-block {
    margin-bottom: 20px;
    font-size: 20px;
    color: #555;
    line-height: 1.5;
    /*max-width: 800px;*/
}

.link-list {
    width: 100%;
}

.link-list__section {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
}

/* Responsive styles */
@media (max-width: 768px) {
    .section-header__title {
        font-size: 1.5rem;
    }

    .intro-block {
        font-size: 0.9rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .section-header__title {
        font-size: 1.2rem;
    }

    .intro-block {
        font-size: 0.8rem;
    }
}



.page-content {
            padding: 20px;
            max-width: 1000px;
        }

        h5 {
            margin-top: 20px;
            margin-bottom: 20px;
            font-weight: bold;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }

        table th, table td {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: center;
        }

        table th {
            background-color: #f4f4f4;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            table {
                font-size: 14px;
            }

            h5 {
                font-size: 16px;
            }
        }




    /* General page wrapper and spacing */
.page-wrapper.section-pt {
    padding: 60px 0 0 0;
    background: #ffffff;
}

/* Contact Form Styles */
.contact-from-wrapper-2 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 40px 30px;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #222;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form .form-control {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 12px 16px;
    font-size: 1rem;
    background: #f9f9f9;
    transition: border-color 0.2s;
}

.contact-form .form-control:focus {
    border-color: #007bff;
    background: #fff;
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form button[type="submit"] {
    background: #0d1028;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 10px;
}

.contact-form button[type="submit"]:hover {
    background: #0056b3;
}

/* Contact Info Styles */
.highlights-section {
    background: #0d1028;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    color: #000000;
    margin-top: 0;
}

.highlights-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.highlights-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.highlights-section ul li {
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.highlights-section ul li i {
    margin-right: 10px;
    font-size: 1.1rem;
    margin-left: 12px;
}

.social-links ul {
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.social-links ul li a {
    color: #fff;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
}

.social-links ul li a:hover {
    background: #fff;
    color: #007bff;
}

/* Map Area Styles */
.map-area.section-ptb-3 {
    margin-top: 40px;
}

.embeded-map-area {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.gmap_canvas iframe {
    width: 100%;
    max-width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .contact-from-wrapper-2,
    .highlights-section {
        padding: 24px 16px;
    }
    .map-area.section-ptb-3 {
        margin-top: 24px;
    }
}

@media (max-width: 767.98px) {
    .section-heading {
        font-size: 1.5rem;
    }
    .contact-form button[type="submit"] {
        width: 100%;
    }
}



/* Add this at the end of your style.css file */

.blog__area-item-image img {
    transition: transform 0.5s ease;
}

.blog__area-item-image:hover img {
    transform: rotate(10deg) scale(1.05);
}










.slideshow-container-css {
  position: relative;
  width: 100%;
  height: 250px; /* Adjust as needed */
  overflow: hidden;
}
.slide-img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0; top: 0;
  opacity: 0;
  object-fit: cover;
  animation: fade 16s infinite;
}
.slide-img:nth-child(1) { animation-delay: 0s; }
.slide-img:nth-child(2) { animation-delay: 4s; }
.slide-img:nth-child(3) { animation-delay: 8s; }
.slide-img:nth-child(4) { animation-delay: 12s; }

@keyframes fade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  25%  { opacity: 1; }
  30%  { opacity: 0; }
  100% { opacity: 0; }
}







.image-row {
  display: flex;
  justify-content: center; /* Or use space-between/space-around if needed */
  gap: 20px; /* Adjust spacing between images */
  flex-wrap: nowrap; /* Prevent wrapping */
}

.image-row img {
  width: 300px;  /* Increase width as needed */
  height: auto;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .left-text h1 {
    font-size: 32px;
  }

  .image-row {
    flex-direction: column;
    align-items: center;
  }

  .image-row img {
    width: 90%;
    margin-bottom: 15px;
  }
}




/*.table-container {
  width: 70%;
  max-width: 1000px;
  overflow-x: auto; /* scroll on small screens *
  /*background: #fff;*
  padding: 15px;
  border-radius: 8px;
  /*box-shadow: 0 2px 8px rgba(0,0,0,0.1);*
  margin: 0 auto; /* ✅ Centers horizontally *
}


    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 600px;
    }

    th, td {
      border: 1px solid #333;
      padding: 10px;
      text-align: left;
    }

    th {
      background-color: #e6e6e6;
      font-weight: bold;
      text-align: center;
    }

    td {
      vertical-align: top;
    }

    tr:nth-child(even) {
      background-color: #fafafa;
    }*/


/* Responsive CSS for the IQAC table (mobile-friendly) */


/* --- Base / Desktop styles --- */
.table-container {
  width: 70%;
  margin: 0 auto;   /* centers the table */
  padding: 0.5rem;
  overflow-x: auto; /* desktop: allow scroll if table grows */
}

.table-container table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.table-container thead th {
  text-align: left;
  padding: 12px 14px;
  background: #000;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(0,0,0,0.1);
}

.table-container tbody td {
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.1);
  vertical-align: middle;
  font-size: 0.95rem;
  color: #222;
}

h5.text-center {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* --- Mobile Responsive: convert to stacked cards --- */
@media (max-width: 768px) {
  .table-container {
    width: 100%;
    padding: 0.5rem;
    overflow-x: hidden; /* prevent scrolling */
  }

  .table-container table,
  .table-container thead,
  .table-container tbody,
  .table-container th,
  .table-container td,
  .table-container tr {
    display: block;
    width: 100%;
  }

  /* hide header */
  .table-container thead {
    display: none;
  }

  /* row becomes a card */
  .table-container tbody tr {
    margin: 0 0 12px 0;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
  }

  /* cell styling */
  .table-container tbody td {
    display: flex;
    padding: 8px 6px;
    border: none;
  }

  /* add labels */
  .table-container tbody td::before {
    content: "";
    flex: 0 0 40%;
    max-width: 40%;
    font-weight: 600;
    color: #444;
    padding-right: 10px;
    font-size: 0.88rem;
  }

  /* Labels by column */
  .table-container tbody tr td:nth-child(1)::before { content: "SR. NO"; }
  .table-container tbody tr td:nth-child(2)::before { content: "Particular Name"; }
  .table-container tbody tr td:nth-child(3)::before { content: "Designation"; }

  /* Fix long names wrapping */
  .table-container tbody td:nth-child(2) { word-break: break-word; }
}

/* Zebra stripe on desktop */
@media (min-width: 769px) {
  .table-container tbody tr:nth-child(odd) td { background: rgba(15,98,254,0.02); }
}





 .under-construction {
  text-align: center;       /* Center align text */
  padding: 50px 20px;       /* Add spacing */
}

.under-construction h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: fadeIn 2s ease-in-out;
}

.under-construction p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.loader {
  margin: 0 auto;           /* Center the loader */
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #ffcc00;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .under-construction h1 { font-size: 2rem; }
  .under-construction p { font-size: 1rem; }
}




.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.table th, .table td {
    padding: 8px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .table th, .table td {
        font-size: 12px;
        padding: 6px;
        word-break: break-word;
    }
}



/* Marquee Container */
.marquee {
  width: 100%;
  background: #f6ab3d;
  overflow: hidden;
  white-space: nowrap;
  /*box-sizing: border-box;*/
  padding: 8px 0;
  position: relative;
}

/* Marquee Text */
.marquee-content {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%; /* Push text outside right */
  animation: marquee 20s linear infinite;
  font-size: 16px;
  color: #fff;
}

/* Marquee Links */
.marquee-content a {
  color: rgb(255, 255, 255);
  margin: 0 10px;
  font-weight: bold;
  text-decoration: none;
}
.marquee-content a:hover {
  text-decoration: underline;
}

/* Keyframes */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}




/* Constrain content on large screens */
/*@media (min-width: 992px){
  .container {
    max-width: var(--max-width);
  }
}*/

/* Card appearance */
.card{
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

/* Header */
.card header h2{
  margin: 0 0 0.25rem 0;
  font-size: 1.25rem;
  letter-spacing: -0.2px;
}
.card .intro{
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Content */
.content p { margin: 0.75rem 0; color: var(--muted); font-size: 0.97rem; }

/* Ordered list styling */
.report-list{
  margin: 0.5rem 0 1rem 0;
  padding-left: 1.15rem; /* keeps numbers aligned */
  color: #222;
}
.report-list li{
  margin: 0.5rem 0;
  padding-left: 0.25rem;
}

/* Contact block */
.report-contact p { margin: 0.35rem 0; }
.report-contact a {
  color: var(--accent);
  text-decoration: none;
  word-break: break-all;
}
.report-contact a:hover,
.report-contact a:focus { text-decoration: underline; outline: none; }

/* Two-column layout on wider screens */
@media (min-width: 768px) {
  .card {
    padding: 1.5rem;
  }
  .content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.25rem;
    align-items: start;
  }
  .report-list { grid-column: 1 / 2; }
  .report-contact { grid-column: 2 / 3; background: #f9fbff; padding: 0.8rem; border-radius: 8px; }
}

/* Accessibility: focus outline for keyboard users */
a:focus { box-shadow: 0 0 0 3px rgba(11,92,255,0.15); border-radius:4px; }

/* Small tweaks for very narrow screens */
@media (max-width: 420px){
  .card header h2 { font-size: 1.05rem; }
  .report-contact { font-size: 0.95rem; }
}






.kargil-section {
    padding: 40px 0;
    background: #f8f9fa;
  }

 

  .item {
    display: block;
    background: #ffffff;
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 10px;
    color: #222;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: 0.2s ease;
  }

  .item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  }

  /* Mobile Responsive */
  @media (max-width: 480px) {
    .item {
      font-size: 0.95rem;
      padding: 14px 16px;
    }
  }




  /* main card */
.card{background:linear-gradient(180deg,var(--card),rgba(8,12,20,0.9));padding:16px;border-radius:12px;border:1px solid rgba(255,255,255,0.02)}


.section-title{display:flex;align-items:center;gap:10px;margin-bottom:10px}
.badge{font-weight:700;padding:6px 10px;border-radius:999px;background:var(--glass);color:var(--accent-2);font-size:13px}


.schedule{display:flex;flex-direction:column;gap:8px}
.event-row{display:flex;align-items:center;justify-content:space-between;padding:12px;border-radius:10px;background:linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));border:1px solid rgba(255,255,255,0.02)}
.event-left{display:flex;gap:12px;align-items:center}
.game-icon{width:52px;height:52px;border-radius:10px;display:grid;place-items:center;font-weight:700}
.game-title{font-weight:700}
.muted{color:var(--muted);font-size:13px}


/* sidebar */
aside{position:relative}
.sidebar-card{padding:16px;border-radius:12px;background:linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));border:1px solid rgba(255,255,255,0.02)}
.price{font-size:28px;font-weight:800;margin:0}
.small{font-size:13px;color:var(--muted)}


.cta-row{display:flex;gap:10px;margin-top:12px}
.btn{appearance:none;border:0;padding:10px 12px;border-radius:10px;font-weight:700;cursor:pointer}
.btn-primary{background:linear-gradient(90deg,var(--accent),#ff9b9b);color:#08121a}
.btn-ghost{background:transparent;border:1px solid rgba(255,255,255,0.06);color:inherit}


.list{display:grid;gap:8px;margin-top:10px}
.list-item{padding:10px;border-radius:8px;background:rgba(255,255,255,0.01);border:1px solid rgba(255,255,255,0.02)}


footer{/*margin-top:16px;*/color:var(--muted);font-size:13px;display:flex;justify-content:space-between;align-items:center;gap:8px}


/* responsive */
@media (max-width:880px){
.grid{grid-template-columns:1fr;}
.logo{width:64px;height:64px}
.game-icon{width:44px;height:44px}
}


@media (max-width:420px){
body{padding:16px}
h1{font-size:18px}
.container{padding:14px}
}


/* small helpers */
.muted-2{color:#9fb3c8}
.highlight{color:var(--accent);font-weight:800}



  
.video-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.banner-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
