  /* --- DESIGN SYSTEM & CSS VARIABLES --- */
  :root {
    --primary: #FFCC00;
    /* Gold/Yellow from logo */
    --secondary: #D2143A;
    /* Rich Red from logo */
    --dark-bg: #121212;
    /* Sleek Charcoal Black */
    --surface: #1E1E1E;
    /* Card/Section Background */
    --text-light: #F5F5F5;
    /* Crisp White Text */
    --text-muted: #B3B3B3;
    /* Secondary Text */
    --font-logo: 'Bangers', cursive;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease-in-out;
  }

  /* --- GLOBAL STYLES --- */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  ul {
    list-style: none;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--secondary);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
  }

  .btn:hover {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
  }

  .section-title {
    font-family: var(--font-logo);
    font-size: 3rem;
    text-align: center;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 3rem;
    text-transform: uppercase;
    position: relative;
  }

  .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    margin: 0.5rem auto 0;
    border-radius: 2px;
  }

  /* --- HEADER & NAVIGATION --- */
  header {
    background-color: rgba(18, 18, 18, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--secondary);
  }
.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
  }

  .logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .logo-img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    object-fit: cover;
  }

  .logo-text {
    font-family: var(--font-logo);
    font-size: 2.2rem;
    color: var(--text-light);
    letter-spacing: 1px;
  }

  .logo-text span {
    color: var(--primary);
  }

  .nav-links {
    display: flex;
    gap: 2rem;
  }

  .nav-links a {
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary);
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  /* --- HERO SECTION --- */
  #hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(18, 18, 18, 1)),
      url('https://images.unsplash.com/photo-1513104890138-7c749659a591?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 120px 0 60px 0;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content h1 {
    font-family: var(--font-logo);
    font-size: 5.5rem;
    letter-spacing: 3px;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0px var(--secondary);
  }

  .hero-content h1 span {
    color: var(--primary);
    text-shadow: 3px 3px 0px #000;
  }

  .hero-content p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
  }

  .hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
  }

  .badge {
    background-color: var(--surface);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 204, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .badge i {
    color: var(--primary);
  }

  /* --- ABOUT FEATURE SECTION --- */
  #about {
    padding: 7rem 0;
    background-color: var(--surface);
  }

  .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .about-image img {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
    border: 3px solid var(--secondary);
  }

  .about-text h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-family: var(--font-logo);
    letter-spacing: 1px;
  }

  .about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }

  /* --- MENU SECTION --- */
  #menu {
    padding: 7rem 0;
  }

  .menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
  }

  .tab-btn {
    background-color: var(--surface);
    color: var(--text-light);
    border: 2px solid transparent;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    transition: var(--transition);
    font-size: 1rem;
  }

  .tab-btn:hover,
  .tab-btn.active {
    background-color: var(--primary);
    color: #000;
    transform: scale(1.05);
  }

  /* Responsive grid base updated to 280px for better mobile fitting */
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }

  .menu-card {
    background-color: var(--surface);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
  }

  .menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(210, 20, 58, 0.15);
    border-color: rgba(210, 20, 58, 0.4);
  }

  .card-img-container {
    height: 220px;
    overflow: hidden;
    position: relative;
  }

  .card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }

  .menu-card:hover .card-img-container img {
    transform: scale(1.1);
  }

  .card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .card-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .card-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
  }

  .card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
  }

  .diet-tag {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .diet-tag.veg {
    color: #4CAF50;
  }

  .diet-tag.spicy {
    color: #FF5722;
  }

/*=================== Iframe ==============*/
.location{
  background: var(--dark-bg);
  padding: 7rem 0;
}

  /* --- INFRASTRUCTURE / FOOTER INFO --- */
  #contact {
    padding: 5rem 0;
    background-color: #0b0b0b;
    border-top: 3px solid var(--secondary);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
  }

  .footer-info h4 {
    font-family: var(--font-logo);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
  }

  .footer-info p,
  .footer-info li {
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .footer-info i {
    color: var(--secondary);
    width: 20px;
  }

  .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .social-icons a:hover {
    background-color: var(--primary);
    color: #000;
    transform: translateY(-3px);
  }

  .partner-logo {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    color: #000;
  }

  .copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
  }

  /* --- RESPONSIVE MEDIA QUERIES --- */
  @media (max-width: 992px) {
    .hero-content h1 {
      font-size: 4rem;
    }

    .about-wrapper {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .section-title {
      font-size: 2.5rem;
    }
  }

  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }

    .hero-content h1 {
      font-size: 3rem;
    }

    .hero-content p {
      font-size: 1.1rem;
    }

    /* Responsive adjustments for tablet/mobile */
    header .container {
      gap: 1rem;
    }

    .logo-text {
      font-size: 1.6rem;
    }

    .logo-img {
      height: 50px;
      width: 50px;
    }

    .btn {
      padding: 0.6rem 1.2rem;
      font-size: 0.8rem;
    }

    .hero-badges {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .menu-tabs {
      flex-direction: column;
    }

    .tab-btn {
      width: 100%;
    }

    #about,
    #menu,
    #contact {
      padding: 4rem 0;
    }
  }

  @media (max-width: 480px) {
    .hero-content h1 {
      font-size: 2.2rem;
    }

    .hero-content p {
      font-size: 1rem;
    }

    .section-title {
      font-size: 2rem;
    }

    .logo-text {
      display: none;
    }

    /* Hide text on very small screens to fit button */
    .about-text h3 {
      font-size: 1.8rem;
    }
  }



  /* =========================
TIMETABLE
========================= */

.timetable-modern{
  padding: 7rem 0;
  background: var(--surface);

}

.timetable-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.timetable-card{
  background:#fff;
  border-radius:32px;
  padding:30px;
  border:1px solid #eee;
  box-shadow:0 10px 40px rgba(0,0,0,.05);
}

/* TIMETABLE */
.timetable-area {
  background: #f5f5f5;
}

.timetable-table {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  text-align: center;
}

/* TABLE */
table.amrt-timetable-table th {
  background: var(--secondary);
  color: white;
  padding: 10px;
}

table.amrt-timetable-table th.amrt-timetable-table-thead-tr-th {
  font-size: 18px;
}

table.amrt-timetable-table td.amrt-label-td {
  font-size: 16px;
  color: var(--secondary);
}

table.amrt-timetable-table td {
  color: var(--primary);
}

@media (max-width: 768px) {
  .timetable-wrapper {
    grid-template-columns: 1fr;
  }

  .timetable-card {
    padding: 20px;
    border-radius: 20px;
  }
}