

@charset "UTF-8";


:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

:root { 
  --background-color: #f1f5f7; 
  --default-color: #010608; 
  --heading-color: #011e2c; 
  --accent-color: #04415f; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
} 

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
 :root {
  --nav-color: #04415f;  
  --nav-hover-color: #2086b8; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #010608; 
  --nav-dropdown-hover-color: #04415f; 
}
 /* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

 .light-background {
  --background-color: #e6edf0;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}


:root {
  scroll-behavior: smooth;
} 


body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
   color: var(--accent-color); 
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.new-navbar {
  width: 100%;
  background: #000;
  padding: 12px 0;
  box-shadow: 0 3px 20px rgba(255, 255, 0, 0.2);
  color: yellow;
   border-bottom: 4px solid yellow;
}

/* WRAPPER */
.nav-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO AREA */
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-area img {
  height: 55px;
  border-radius: 50%;
  border: 2px solid yellow;
}

.site-title {
  color: yellow;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

/* NAV LINKS */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
}

.nav-links ul li a {
  color: yellow;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}

/* ANIMATION */
.nav-links ul li a::after {
  content: "";
  width: 0%;
  height: 3px;
  background: yellow;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

.nav-links ul li a:hover::after,
.nav-links ul li .active::after {
  width: 100%;
}

.nav-links ul li a:hover {
  color: #fff;
}

/* MOBILE MENU BUTTON */
.menu-btn {
  display: none;
  color: yellow;
  font-size: 34px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .menu-btn {
    display: block;
  }

  

  .nav-links ul.active {
    display: flex;
  }
}
  
/* ============================
   ABOUT SECTION (BLACK-YELLOW)
============================= */
/* ABOUT SECTION TOP BORDER */
.about-section {
  /* border-top: 6px solid #ffcc00;   */
  padding-top: 70px;               /* Space after border */
  background-color: #000;          /* Black Background */
  color: #fff;
}

/* About Tag */
.about-tag {
  background: #ffcc00;
  color: #000;
  padding: 6px 14px;
  font-weight: 700;
  border-radius: 4px;
}

/* Title */
.about-title {
  color: #ffcc00;
  font-size: 32px;
  font-weight: 800;
  margin: 15px 0;
}

/* Description */
.about-desc {
  color: #ddd;
  margin-bottom: 20px;
}

/* Timeline */
.new-timeline {
  border-left: 3px solid #ffcc00;
  padding-left: 25px;
  margin-top: 20px;
}

.time-item {
  margin-bottom: 25px;
  position: relative;
}

.time-icon {
  width: 14px;
  height: 14px;
  background: #ffcc00;
  border-radius: 50%;
  position: absolute;
  left: -25px;
  top: 5px;
}

.time-content h4 {
  color: #ffcc00;
  margin-bottom: 5px;
}

.time-content p {
  color: #ccc;
}

/* Right image */
.about-img {
  width: 100%;
  border: 4px solid #ffcc00;
  border-radius: 8px;
}

/* Mission Vision Cards */
.mv-wrapper {
  margin-top: 25px;
  display: grid;
  gap: 20px;
}

.mv-card {
  background: #111;
  padding: 20px;
  border-left: 4px solid #ffcc00;
  border-radius: 6px;
}

.mv-card h3 {
  color: #ffcc00;
}

.mv-card p {
  color: #ccc;
}

/* ==== MAIN SECTION WRAPPER ==== */
.civil-section {
  /* background: #000; */
  color: #fff;
  padding: 50px 0;
  border-top: 6px solid #ffcc00;    
  margin-top: 0;                    
}

/* Section Header */
.civil-section .section-header h1 {
  color: #ffcc00;
  font-weight: 800;
}

.civil-section .section-header h5 {
  color: #ddd;
  margin-bottom: 30px;
}

/* ==== VISION BOX ==== */
.vision-box {
  background: #0f0f0f;
  border-left: 4px solid #ffcc00;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.vision-box h3 {
  color: #ffcc00;
}
.civil-heading {
  padding: 30px 0;
  background: #f8f9fa;
  margin-bottom: 40px; /* GAP between heading and content */
}

.civil-heading h1 {
  font-size: 36px;
  font-weight: 700;
}

.inner-civil-content {
  margin-top: 20px;
}

/* .about-section {
  margin-top: 10px;
} */

/* ==== TABLE BOX ==== */
.table-box {
  background: #0f0f0f;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid #ffcc00;
  margin-bottom: 20px;
}

.table-box h3 {
  color: #ffcc00;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Responsive Wrapper */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

/* Table */
.custom-table {
  width: 100%;
  min-width: 600px; /* For mobile scroll */
  border-collapse: collapse;
}

.custom-table th {
  background: #ffcc00;
  color: #000;
  padding: 12px;
  text-align: left;
  font-weight: 700;
}

.custom-table td {
  padding: 12px;
  background: #1a1a1a;
  border-bottom: 1px solid #333;
}

.custom-table tr:hover td {
  background: #222;
  transition: 0.2s;
}

/* Mobile Font Resize */
@media (max-width: 480px) {
  .custom-table th,
  .custom-table td {
    font-size: 14px;
    padding: 10px;
  }
}



 .footer {
  background: #000;
  color: #fff;
  padding: 60px 0 20px;
  font-family: 'Poppins', sans-serif;
}

/* LOGO */
.footer .brand-logo {
  font-size: 40px;
  font-weight: 800;
  color: yellow;
  letter-spacing: 1px;
}

.footer .tagline {
  font-size: 15px;
  font-weight: 600;
  margin-top: 6px;
  background: yellow;
  color: #000;
  display: inline-block;
  padding: 3px 12px;
  border-radius: 6px;
}

/* SECTION TITLE */
.footer h4 {
  color: yellow;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
}

.footer h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: yellow;
  position: absolute;
  left: 0;
  bottom: -4px;
}

/* LINKS */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #cfcfcf;
  font-size: 15px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: yellow;
  padding-left: 4px;
}

/* SOCIAL ICONS */
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid yellow;
  color: yellow;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: 0.3s;
}

.social-links a:hover {
  background: yellow;
  color: #000;
}

/* COPYRIGHT */
.footer-bottom {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #222;
  font-size: 14px;
  text-align: center;
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  /* background-color: black; */
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}


.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  padding: 0px;
}

.hero .hero-wrapper {
  padding: 80px;
}

@media (max-width: 992px) {
  .hero .hero-wrapper {
    padding: 100px 0 60px;
    text-align: center;
  }
}

.hero .hero-wrapper .hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-wrapper .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .hero-wrapper .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero .hero-wrapper .hero-content .stats-row {
  display: flex;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-content .stats-row {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.hero .hero-wrapper .hero-content .stats-row .stat-item {
  margin-right: 2.5rem;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-content .stats-row .stat-item {
    margin: 0 1.5rem 1rem;
  }
}

.hero .hero-wrapper .hero-content .stats-row .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.hero .hero-wrapper .hero-content .stats-row .stat-item .stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero .hero-wrapper .hero-content .action-buttons {
  display: flex;
  gap: 15px;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-content .action-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.hero .hero-wrapper .hero-content .action-buttons a {
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .hero .hero-wrapper .hero-content .action-buttons a {
    width: 100%;
  }
}

.hero .hero-wrapper .hero-content .action-buttons .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-wrapper .hero-content .action-buttons .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero .hero-wrapper .hero-content .action-buttons .btn-secondary {
  background: var(--surface-color);
  color: var(--default-color);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.hero .hero-wrapper .hero-content .action-buttons .btn-secondary:hover {
  color: var(--heading-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero .hero-wrapper .hero-media {
  position: relative;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-media {
    margin-top: 3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero .hero-wrapper .hero-media .main-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
}

.hero .hero-wrapper .hero-media .main-image:hover {
  transform: perspective(1000px) rotateY(0);
}

.hero .hero-wrapper .hero-media .image-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-media .image-overlay {
    right: 0;
  }
}

.hero .hero-wrapper .hero-media .image-overlay .badge-accredited {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-wrapper .hero-media .image-overlay .badge-accredited i {
  font-size: 1.3rem;
}

.hero .feature-cards-wrapper {
  margin-top: -40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 10;
}

.hero .feature-cards-wrapper .feature-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.hero .feature-cards-wrapper .feature-card:hover,
.hero .feature-cards-wrapper .feature-card.active {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.hero .feature-cards-wrapper .feature-card.active {
  background: var(--surface-color);
  border-left: 4px solid var(--accent-color);
}

.hero .feature-cards-wrapper .feature-card.active .feature-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .feature-cards-wrapper .feature-card .feature-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.hero .feature-cards-wrapper .feature-card .feature-content {
  flex: 1;
}

.hero .feature-cards-wrapper .feature-card .feature-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.hero .feature-cards-wrapper .feature-card .feature-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.hero .upcoming-event {
  background: var(--heading-color);
  color: var(--contrast-color);
  padding: 0;
  margin: 30px 0 0;
}

.hero .upcoming-event .event-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .hero .upcoming-event .event-content {
    flex-direction: column;
    text-align: center;
  }
}

.hero .upcoming-event .event-content>* {
  position: relative;
  z-index: 1;
}

.hero .upcoming-event .event-content .event-date {
  display: flex;
  flex-direction: column;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  margin-right: 30px;
  min-width: 100px;
}

@media (max-width: 992px) {
  .hero .upcoming-event .event-content .event-date {
    margin: 0 auto 20px;
  }
}

.hero .upcoming-event .event-content .event-date .day {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.hero .upcoming-event .event-content .event-date .month {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero .upcoming-event .event-content .event-info {
  flex: 1;
  margin-right: 30px;
}

@media (max-width: 992px) {
  .hero .upcoming-event .event-content .event-info {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.hero .upcoming-event .event-content .event-info h3 {
  font-size: 1.6rem;
  color: var(--contrast-color);
  margin-bottom: 10px;
  font-weight: 700;
}

@media (max-width: 576px) {
  .hero .upcoming-event .event-content .event-info h3 {
    font-size: 1.3rem;
  }
}

.hero .upcoming-event .event-content .event-info p {
  font-size: 1rem;
  margin: 0;
}

.hero .upcoming-event .event-content .event-action {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .upcoming-event .event-content .event-action .btn-event {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.hero .upcoming-event .event-content .event-action .btn-event:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero .upcoming-event .event-content .event-action .countdown {
  font-size: 0.9rem;
  opacity: 0.8;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
/* GAP ABOVE SECTION */
/* Top gap to separate from upper section */
/* Section */
.mini-testimonials-section{
  background: #f1f1f1;
  padding: 70px 0;
}


.mini-testi-box {
  background: #111;
  border: 2px solid #ffeb3b;
  border-radius: 14px;
  padding: 25px;
  margin-bottom: 30px;
  text-align: center;
  transition: 0.3s;
}

.mini-testi-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #ffeb3b80;
}


.mini-testi-img img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #ffeb3b;
  object-fit: cover;
  margin-bottom: 15px;
}


.mini-testi-text {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}


.mini-testi-name {
  color: #ffeb3b;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.mini-testi-role {
  color: #f7f7f7;
  font-size: 13px;
}




/*--------------------------------------------------------------
# About  Section
--------------------------------------------------------------*/
.history .about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.history .about-content h3 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.history .about-content p {
  margin-bottom: 30px;
}

.history .about-content .timeline {
  position: relative;
  margin-top: 40px;
  padding-left: 30px;
}

.history .about-content .timeline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.history .about-content .timeline .timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.history .about-content .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.history .about-content .timeline .timeline-item .timeline-dot {
  position: absolute;
  left: -35px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.history .about-content .timeline .timeline-item .timeline-content h4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.history .about-content .timeline .timeline-item .timeline-content p {
  margin-bottom: 0;
}

.history .about-image {
  position: relative;
}

.history .about-image img {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 498px;
    /*   */
}

.history .about-image .mission-vision {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .history .about-image .mission-vision {
    grid-template-columns: 1fr;
  }
}

.history .about-image .mission-vision .mission,
.history .about-image .mission-vision .vision {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.history .about-image .mission-vision .mission h3,
.history .about-image .mission-vision .vision h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}

.history .about-image .mission-vision .mission h3:before,
.history .about-image .mission-vision .vision h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 20px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.history .about-image .mission-vision .mission p,
.history .about-image .mission-vision .vision p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.history .core-values {
  margin-top: 30px;
}

.history .core-values h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.history .core-values .value-card {
  background-color: var(--surface-color);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.history .core-values .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.history .core-values .value-card .value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
}

.history .core-values .value-card .value-icon i {
  font-size: 32px;
  color: var(--accent-color);
}

.history .core-values .value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.history .core-values .value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
} */
/* new */
/* HISTORY SECTION */
.history-section {
  padding: 60px 0;
}

/* Left content */
.about-content {
  margin-top: -20px;
}

.page-title-custom {
  font-weight: 700;
  margin-bottom: 20px;
}

.about-description {
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Timeline */
.timeline {
  border-left: 3px solid #222;
  padding-left: 20px;
}

.timeline-item {
  position: relative;
  margin-bottom: 25px;
}

.timeline-item .dot {
  width: 14px;
  height: 14px;
  background: #222;
  border-radius: 50%;
  position: absolute;
  left: -30px;
  top: 5px;
}

.timeline-content h4 {
  font-weight: 600;
  margin-bottom: 5px;
}

.timeline-content p {
  color: #555;
  margin: 0;
}

/* Right image */
.about-image img {
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

/* Mission & Vision Section */
.mission-vision-section {
  width: 100%;
  background: #f5f5f5;
  padding: 40px 0;
}

.info-box {
  background: white;
  padding: 20px;
  border-radius: 14px;
  width: 100%;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.10);
  text-align: center;
}

.info-box h3 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 24px;
}

.info-box p {
  font-size: 16px;
  color: #555;
}

/* Teacher Section */
.teacher-card {
  text-align: center;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.10);
  background: #fff;
}

.teacher-img {
  border-radius: 10px;
  width: 100%;
  margin-bottom: 15px;
}



/*--------------------------------------------------------------
# News Posts Section
--------------------------------------------------------------*/
.news-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.news-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.news-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.news-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.news-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.news-posts .title a:hover {
  color: var(--accent-color);
}

.news-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.news-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.news-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}



/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }
    th, td {
      border: 1px solid #003366;
      padding: 10px;
      text-align: left;
    }
    th {
      background-color: #003366;
      color: white;
    }
    tr:nth-child(even) {
      background-color: #f2f2f2;
    }
    

    .top-marquee {
  width: 100%;
  background: #04415f;
  color: #fff;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  font-weight: 600;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
  font-size: 16px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.body{
  font-family: Arial;
  background:#f4f4f4;
}

.t-card {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  padding: 35px;
  border-radius: 25px;
  min-height: 250px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  color: #fff;
  transition: .3s ease;
}

.t-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.t-card p {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #f9f9f9;
}

.t-card h3 {
  font-size: 20px;
  margin-top: 15px;
  font-weight: 700;
  color: #fff;
}

.rating {
  font-size: 22px;
  margin-bottom: 15px;
  letter-spacing: 2px;
  color: #ffeb3b; /* Gold color stars */
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.subject-marquee {
  width: 100%;
  overflow: hidden;
  background: #000;
  padding: 20px 0;
}

.subject-track {
  display: flex;
  gap: 25px;
  width: fit-content;
  animation: moveLeft 18s linear infinite;
}

.tag {
  background: #ffd000;
  color: #000;
  padding: 10px 25px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 40px;
  box-shadow: 0px 6px 15px rgba(255, 230, 0, 0.6);
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.3s;
}

.tag:hover {
  transform: scale(1.12);
  background: #ffea00;
}

@keyframes moveLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

  /* MAIN NAVBAR */
/* FULL HERO SECTION */
.new-hero {
  width: 100%;
  padding: 80px 0;
  background: #000;
  color: #fff;
}

/* INNER CONTAINER */
.hero-container {
  max-width: 1200px;
}

/* HEADING */
.new-hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.new-hero .highlight {
  color: yellow;
}

/* DESCRIPTION */
.hero-desc {
  margin: 20px 0 30px;
  font-size: 18px;
  line-height: 1.7;
  color: #dcdcdc;
  max-width: 90%;
}

/* STATS SECTION */
.stats-row {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.stat-item {
  background: #111;
  border: 1px solid yellow;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  width: 140px;
  transition: 0.3s;
}

.stat-item:hover {
  background: yellow;
  color: #000;
  transform: translateY(-6px);
  cursor: pointer;
}

.stat-number {
  font-size: 26px;
  font-weight: 700;
}

.stat-label {
  display: block;
  font-size: 14px;
  margin-top: 5px;
}

/* CTA BUTTON */
.btn-yellow {
  background: yellow;
  color: #000;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-yellow:hover {
  background: #fff;
  color: #000;
}

/* IMAGE BOX */
.img-box {
  background: #111;
  padding: 15px;
  border-radius: 16px;
  border: 1px solid yellow;
  box-shadow: 0 0 25px rgba(255, 255, 0, 0.2);
}

.img-box img {
  width: 100%;
  border-radius: 10px;
}



.position {
  color: #F7D800;
  font-weight: 600;
  margin-top: 5px;
}

.bio {
  color: #fff;
  margin-top: 10px;
  line-height: 1.6;
  font-size: 15px;
}

.social-links a {
  color: #F7D800;
  font-size: 22px;
  margin: 0 8px;
  transition: 0.3s;
}

.social-links a:hover {
  color: white;
}


/* gallery */
.gallery-section {
  padding: 60px 20px;
  /* background: #000; */
}

.gallery-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #F7D800;
  margin-bottom: 40px;
}

/* Image Box */
.gallery-box {
  border: 2px solid #F7D800;
  border-radius: 12px;
  overflow: hidden;
  /* background: #111; */
  transition: 0.3s;
}

.gallery-box:hover {
  transform: scale(1.03);
}

.gallery-img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-box:hover .gallery-img {
  transform: scale(1.15);
}
.faq-section {
  padding: 50px 0;
  background: #f8f8f8;
}

.faq-main-container {
  max-width: 1000px;   /* WIDTH BADA DIYA */
  margin: auto;
  padding: 0 20px;
}

.faq-heading {
  text-align: center;
  margin-bottom: 40px;
}

.faq-heading h2 {
  font-size: 36px;
  font-weight: 800;
  color: #000;
}

.faq-heading p {
  font-size: 18px;
  color: #555;
  margin-top: 10px;
}

/* FAQ BLOCKS */
.faq-container {
  width: 100%;
}

.faq-item {
  background: #000;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border-left: 5px solid #f6c800;
}

.faq-question {
  width: 100%;
  background: #000;
  color: #f6c800;
  padding: 18px 22px;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
}

.faq-question span i {
  margin-right: 10px;
  color: #f6c800;
}

.arrow {
  font-size: 20px;
  color: #f6c800;
  transition: 0.3s;
}

.faq-answer {
  background: #fff;
  padding: 20px;
  display: none;
  color: #333;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}
/* -------------------------
   CONTACT SECTION - BLACK YELLOW THEME
-------------------------- */

#contact {
  background: #000; /* Pure Black */
  padding: 60px 0;
  color: #fff;
}

/* Page title background */
.page-title.light-background {
  background: #111;
  color: #fff;
  border-bottom: 2px solid #d4af37;
}

/* Contact Cards */
.contact-card {
  background: #111;
  border: 2px solid #d4af37; /* Gold Yellow */
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
  transition: 0.3s;
}

.contact-card:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-5px);
}

.contact-card .icon-box i {
  font-size: 28px;
  color: #d4af37;
}

.contact-card:hover .icon-box i {
  color: #000;
}

/* Contact Form Box */
.contact-form-container {
  background: #111;
  border: 2px solid #d4af37;
  padding: 25px;
  border-radius: 10px;
}

.contact-form-container h3 {
  color: #d4af37;
}

/* Inputs */
.contact-form-container input,
.contact-form-container textarea {
  background: #000;
  border: 2px solid #d4af37;
  color: #fff;
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
  color: #d4af37;
}

/* Submit Button */
.form-submit button {
  background: #d4af37;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  transition: 0.3s;
}

.form-submit button:hover {
  background: #fff;
  color: #000;
}

/* Social Icons */
.social-links a {
  color: #d4af37;
  border: 2px solid #d4af37;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-links a:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-4px);
}

/* Map Frame */
.map-wrapper iframe {
  border: 3px solid #d4af37 !important;
  border-radius: 10px;
}
.video-section .video-box {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.two-teacher-section {
  background: #000; /* Black BG */
  padding: 60px 0;
  color: #fff;
}

/* Section Heading */
.section-head .subtitle {
  display: inline-block;
  color: #f1c40f;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-head .title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.section-head .description {
  color: #ddd;
  font-size: 16px;
  max-width: 850px;
  margin: auto;
  line-height: 26px;
}

/* Teacher Card */
.two-teacher-section {
  padding: 60px 0;
  background: #ffffff;
  margin-bottom: 0px;
}

/* Section Heading */
.two-teacher-section .section-head .subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #f4b400; /* Yellow */
  text-transform: uppercase;
}

.two-teacher-section .section-head .title {
  font-size: 32px;
  font-weight: 700;
  color: #111; /* Dark heading */
}

.two-teacher-section .section-head .description {
  font-size: 16px;
  color: #444;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Teacher Card */
.teacher-card {
  text-align: center;
  padding: 20px;
  background: #000; /* Black card */
  border-radius: 12px;
  border: 2px solid #f4b400; /* Yellow border */
  box-shadow: 0 4px 25px rgba(0,0,0,0.3);
  transition: 0.3s ease-in-out;
}

/* Hover Effect */
.teacher-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

/* Image */
.teacher-card img {
  width: 58%;
  border-radius: 10px;
  border: 3px solid #f4b400; /* Yellow around image */
  margin-bottom: 15px;
}

/* Teacher Name */
.teacher-card h3 {
  font-size: 22px;
  color: #fff; /* White title */
  font-weight: 700;
  margin-bottom: 5px;
}

/* Teacher Subject */
.teacher-card p {
  font-size: 15px;
  color: #f4b400; /* Yellow text */
  font-weight: 500;
}

/* blog section */
.blog-section {
  padding: 60px 0;
  background: #f9f9f9;
}

.blog-section .subtitle {
  display: inline-block;
  color: #f4b400;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.blog-section .title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.blog-section .description {
  font-size: 16px;
  color: #555;
  max-width: 800px;
  margin: auto;
  margin-bottom: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  text-align: center;
  padding-bottom: 20px;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card h3 {
  font-size: 20px;
  color: #111;
  margin: 15px 0 10px;
}

.blog-card p {
  font-size: 15px;
  color: #666;
  padding: 0 10px;
}

.blog-card .read-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #f4b400;
  text-decoration: none;
  transition: 0.3s;
}

.blog-card .read-more:hover {
  color: #d49f00;
}
@media screen and (max-width: 480px) {
  .nav-links ul{
    display: none;
  }
}
/* ===== MOBILE RESPONSIVE SIDEBAR ===== */
/* ===== MOBILE RESPONSIVE + COLORED SIDEBAR ===== */
@media (max-width: 576px) {

  /* Sidebar Background + Width */
  .offcanvas {
    width: 90% !important;
    max-width: 300px;
    background: #0f0f0f !important;     /* Black background */
    border-right: 2px solid #ffcc00;    /* Yellow border */
  }

  /* Close Button */
  .offcanvas .btn-close {
    filter: invert(1); /* White close icon */
  }

  /* Logo Area */
  .logo-area {
    text-align: center;
    padding: 15px 0;
    border-bottom: 2px solid #ffcc00;
  }

  .logo-area img {
    width: 80px;                        /* Mobile optimized logo */
  }

  .site-title {
    font-size: 16px;
    color: #ffcc00;
    font-weight: 700;
    margin-top: 5px;
  }

  /* Menu List */
  .list-group-item {
    background: transparent;
    border: none;
    padding: 12px 10px;
    transition: 0.3s;
  }

  .list-group-item a {
    text-decoration: none;
    color: #fff;                         /* White menu text */
    font-size: 15px;                     /* Mobile size */
    display: block;
    font-weight: 500;
  }

  /* Hover */
  .list-group-item:hover {
    background: #ffcc00;                 /* Yellow highlight */
  }

  .list-group-item:hover a {
    color: #000;                          /* Black text on yellow */
    font-weight: 600;
  }

  /* Offcanvas spacing */
  .offcanvas-header {
    padding: 10px;
  }

  .offcanvas-body {
    padding: 10px;
  }
}
