        :root {
            --blue: #007bff;
            --indigo: #6610f2;
            --purple: #6f42c1;
            --pink: #e83e8c;
            --red: #dc3545;
            --orange: #fd7e14;
            --yellow: #ffc107;
            --green: #28a745;
            --teal: #20c997;
            --cyan: #17a2b8;
            --white: #fff;
            --gray: #6c757d;
            --gray-dark: #343a40;
            --primary: #007bff;
            --secondary: #6c757d;
            --success: #28a745;
            --info: #17a2b8;
            --warning: #ffc107;
            --danger: #dc3545;
            --light: #f8f9fa;
            --dark: #343a40;
            --gradient: linear-gradient(to bottom, var(--red) 50%, var(--orange) 100%);
        }

        body {
            font-family: 'Poppins', sans-serif;
        }

        .heading {
            font-size: 38px;
            line-height: 45px;
            margin-bottom: 30px;
            font-weight: 600;
            text-align: center;
        }

        .sections {
            padding: 60px 0 0;
        }

        /* Navbar */
        .navbar {
            background: #fff;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }

        .navbar-brand img {
            height: 45px;
            width: auto;
        }

        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin-left: 15px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--danger) !important;
        }

        .btn-order-now {
            background: none;
            color: var(--danger);
            font-weight: 600;
            text-transform: uppercase;
            padding: 8px 18px;
            border-radius: 0;
            border: 2px solid var(--danger);
            transition: all 0.3s ease;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        /* Toggler icon to cross */
        .navbar-toggler {
            border: none;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        }

        .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,0.7)' stroke-width='2' stroke-linecap='round' d='M7 7l16 16M23 7L7 23'/%3E%3C/svg%3E");
        }

        @media (max-width: 991.98px) {

            /* Bootstrap lg breakpoint */
            .collapse:not(.show) {
                display: none !important;
            }
        }

        .navbar-collapse {
            transition: none !important;
        }

        /* Hero Section */
        .hero {
            position: relative;
            background: url("../images/hero.jpg") center/cover no-repeat;
            color: white;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
            z-index: 1;
        }

        .hero .content {
            position: relative;
            z-index: 2;
            padding: 0 5%;
            max-width: 800px;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero h1 span {
            color: #ff7873;
        }

        .hero .btn {
            margin-top: 20px;
            padding: 12px 30px;
            background: linear-gradient(90deg, #c91711, #ff7873);
            border: none;
            color: #fff;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border-radius: 4px;
        }

        .hero .btn:hover {
            background: #fff;
            color: #c91711;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 768px) {
            .hero {
                height: 80vh;
                text-align: center;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero .btn {
                padding: 10px 24px;
                font-size: 0.9rem;
            }
        }

        /* Services Section */
        .services {
            position: relative;
            background: #fff;
            padding: 80px 0;
            overflow: hidden;
            z-index: 1;
        }

        .feature-box {
            background: linear-gradient(to bottom, var(--red) 50%, var(--orange) 100%);
            color: white;
            padding: 30px 30px 50px;
            text-align: left;
            clip-path: polygon(0 0, 100% 0, 100% 94%, 0% 100%);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            max-width: 300px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        }

        .feature-box i {
            font-size: 36px;
            margin-bottom: 15px;
            display: block;
            color: rgba(255, 255, 255, 0.95);
        }

        .feature-box h4 {
            margin: 5px 0;
            font-weight: 600;
        }

        .feature-box p {
            margin: 10px 0 20px;
            font-size: 0.95rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.9);
        }

        .feature-box .btn {
            text-transform: uppercase;
            border: 2px solid #fff;
            background: transparent;
            color: #fff;
            transition: all 0.3s ease;
            font-size: 11px;
            font-weight: 600;
            line-height: 32px;
            padding: 0 24px;
            border-radius: 0;
            letter-spacing: 1px;
        }

        .feature-box .btn:hover {
            background: #fff;
            color: #c00;
            border-color: #fff;
        }

        .feature-box:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
        }


        /* Menu Section */

        .menu-box {
            margin-bottom: 30px;
            padding: 0 15px 15px 0;
            position: relative;
            z-index: 1;
        }

        .menu-box::before {
            content: "";
            border: 10px solid;
            border-image-slice: 1;
            border-width: 3px;
            border-image-source: linear-gradient(to left, #c91711, #ff7873);
            position: absolute;
            right: 0;
            top: 12px;
            left: 12px;
            bottom: 0;
            z-index: -1;
        }

        .menu-box .content-wrapper {
            padding: 0 0 5px 30px;
            position: relative;
            z-index: 9;
        }

        .img-wrapper img {
            object-fit: cover;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 90%);
        }

        .content-wrapper {
            margin-top: 15px;
        }

        .content-wrapper h5 {
            font-weight: 600;
            margin-bottom: 10px;
        }

        .content-wrapper .btn {
            text-transform: uppercase;
            border: 2px solid #fff;
            background: transparent;
            color: #fff;
            transition: all 0.3s ease;
            font-size: 11px;
            font-weight: 600;
            line-height: 32px;
            padding: 0 24px;
            border-radius: 0;
            letter-spacing: 1px;
        }

        .content-wrapper .btn:hover {
            background: var(--gradient);
        }

        /* Timetable */

        #timetable {
            width: 100%;
            margin-bottom: 2rem;
        }

        #timetable h3 {
            margin-bottom: 0;
        }

        .timetable-table {
            display: block;
            border-radius: 10px;
            box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
            text-align: center;
            margin-top: 50px;
        }

        table.amrt-timetable-table-tbody-tr-td {
            text-align: center;
        }

        table.amrt-timetable-table th.amrt-timetable-table-thead-tr-th {
            font-size: 20px;
            font-weight: 600;
            border-bottom: 2px solid var(--yellow);
            background: var(--gradient)
        }

        table.amrt-timetable-table td.amrt-label-td {
            font-size: 13px;
            padding-left: 15px;
        }

        table.amrt-timetable-table td {
            padding: 0.3rem 0rem;
        }

        table.amrt-timetable-table td.amrt-value-td span.amrt-time-slot {
            border: .5px solid var(--tertiary-color);
            text-align: center;
            font-size: 15px;
        }

        thead th {
            color: var(--light)
        }



        /* Footer */
        .footer {
            background: #1d2430;
            color: #bbb;
            font-size: 14px;
        }

        .footer h5 {
            color: #fff;
            font-weight: 600;
        }

        .footer-link {
            color: #bbb;
            text-decoration: none;
            display: block;
            margin-bottom: 6px;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #c00;
        }

        .footer p {
            margin-bottom: 6px;
        }

        .footer i {
            color: #c00;
            /* red icons */
            margin-right: 8px;
            font-size: 16px;
        }

        .footer-bottom {
            padding: 15px 0;
            font-size: 14px;
            color: #bbb;
        }

        .footer-bottom a {
            color: #c00;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: #fff;
        }