
        body {
          
            background-color: #f5f5f5;
          
        }

        .hamburger {
        width: 30px;
        height: 22px;
        position: relative;
        cursor: pointer;
    }

    .hamburger span {
        position: absolute;
        height: 4px;
        width: 100%;
        background: white;
        border-radius: 2px;
        left: 0;
        transition: 0.3s;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 9px;
    }

    .hamburger span:nth-child(3) {
        top: 18px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);

        top: 9px;
    }

    /* Center content */

    .content {

        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-align:
            center;
        z-index: 5;
    }

    .content h2 {
        font-size: 50px;
        margin-bottom: 10px;
    }

    .content p {
        font-size: 20px;

    }

    /* --- Sliding Menu --- */



    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: linear-gradient(to right, #ff0080, #7928ca) !important;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.6s ease;
        z-index: 9;
    }

    .menu.active {
        right: 0;

    }

    /* Menu Items */
    .menu ul {
        list-style: none;
        padding: 0;
        position: absolute;
        top: 80px;
    }

    .menu ul li {
        margin: 20px 0;
        opacity: 0;
        transform: translateX(30px);

    }

    /* Animate each item in sequence */
    .menu.active ul li {
        animation: slideIn 0.6s forwards;
    }

    .menu.active ul li:nth-child(1) {
        animation-delay: 0.2s;
    }

    .menu.active ul li:nth-child(2) {
        animation-delay: 0.4s;
    }

    .menu.active ul li:nth-child(3) {
        animation-delay: 0.6s;
    }

    .menu.active ul li:nth-child(4) {
        animation-delay: 0.8s;
    }

    /* Menu Links */
    .menu ul li a {
        text-decoration: none;
        color: #fff;
        font-size: 18px;
        transition: color 0.3s;
    }

    .menu ul li a:hover {
        color: #ff6347;
    }

    /* Keyframes */
    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }


    /* Container for the hamburger */
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 10px;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;

        border-radius: 5px;

    }

    /* Each line (span) */
    .hamburger span {
        display: block;
        height: 4px;
        border-radius: 4px;
        background: linear-gradient(90deg, #ff416c, #ff4b2b, #ffb347);
        /* gradient colors */
        animation: waveMiddle 1.5s ease-in-out infinite;
        box-shadow: 0 0 10px rgba(255, 75, 43, 0.6);
        /* glowing effect */
    }

    /* Top line animation */
    .hamburger span:nth-child(1) {
        animation: waveTop 1.5s ease-in-out infinite;
    }

    /* Bottom line animation */
    .hamburger span:nth-child(3) {
        animation: waveBottom 1.5s ease-in-out infinite;
    }

    /* Animations */
    @keyframes waveTop {

        0%,
        100% {
            transform: translateY(-2px);
        }

        50% {
            transform: translateY(-5px);
        }
    }

    @keyframes waveMiddle {

        0%,
        100% {
            transform: scaleX(1);
        }

        50% {
            transform: scaleX(1.3);
        }
    }

    @keyframes waveBottom {

        0%,
        100% {
            transform: translateY(2px);
        }

        50% {
            transform: translateY(5px);
        }
    }


    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
        background-size: cover;
        background-position: center;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        margin-top: -100px;
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        color: var(--primary-color);
    }

    .hero-content p {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto 30px;
    }

    @media (max-width: 992px) {
        .navbar-nav {
            text-align: center;
            padding: 20px 0;
        }

        .nav-link {
            margin: 5px 0;
        }

        .reservation-btn {
            margin-top: 10px;
        }

        .hero-content h1 {
            font-size: 2.5rem;
        }
    }

    .about-banner {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
            url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        background-size: cover;
        background-position: center;
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        margin-top: 0;
        position: relative;
    }

    .about-banner-content {
        max-width: 800px;
        padding: 20px;
    }

    .about-banner h1 {
        font-size: 3rem;
        font-weight: 600;
        margin-bottom: 15px;
        background: linear-gradient(to right, #ff0080, #7928ca);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

    }

    .about-banner p {
        font-size: 1.2rem;
        margin-bottom: 20px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* .banner-divider {
            width: 100px;
            height: 4px;
            background-color: var(--secondary-color);
            margin: 0 auto 20px;
            border-radius: 2px;
        }
         */
    /* Content Section */



    .about-text h2 {
        font-weight: 800;
        color: #06b6d4;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-family: 'Poppins', sans-serif;
        line-height: 1.6;
        color: #1e1e1e;
        margin-bottom: 1rem;
    }

    /* Shorter image and responsive layout */
    .vision-img {
        max-height: 420px;
        width: 100%;
        object-fit: cover;
        border-radius: 12px;
        transition: transform 0.8s ease;
    }

    .vision-img:hover {
        transform: scale(1.05);
    }

    /* 📱 Mobile view adjustments */
    @media (max-width: 768px) {
        .row.align-items-center {
            flex-direction: column-reverse;
            text-align: center;
        }

        .vision-img {
            max-height: 320px;
        }
    } 
        
    .hamburger {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    height: 4px;
    width: 100%;
    background: white;
    border-radius: 2px;
    left: 0;
    transition: 0.3s;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);

    top: 9px;
}

/* Center content */

.content {

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align:
        center;
    z-index: 5;
}

.content h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.content p {
    font-size: 20px;

}

/* --- Sliding Menu --- */



.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
background: linear-gradient(to right, #ff0080, #7928ca) !important ;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.6s ease;
  z-index: 9;
}

.menu.active {
  right: 0;

}

/* Menu Items */
.menu ul {
  list-style: none;
  padding: 0;
    position: absolute;
top:80px;
}

.menu ul li {
  margin: 20px 0;
  opacity: 0;
  transform: translateX(30px);

}

/* Animate each item in sequence */
.menu.active ul li {
  animation: slideIn 0.6s forwards;
}

.menu.active ul li:nth-child(1) {
  animation-delay: 0.2s;
}

.menu.active ul li:nth-child(2) {
  animation-delay: 0.4s;
}

.menu.active ul li:nth-child(3) {
  animation-delay: 0.6s;
}

.menu.active ul li:nth-child(4) {
  animation-delay: 0.8s;
}

/* Menu Links */
.menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s;
}

.menu ul li a:hover {
  color: #ff6347;
}

/* Keyframes */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Container for the hamburger */
.hamburger {
         display: flex;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1001;
       
            border-radius: 5px;
         
}

/* Each line (span) */
.hamburger span {
  display: block;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #ff416c, #ff4b2b, #ffb347); /* gradient colors */
  animation: waveMiddle 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 75, 43, 0.6); /* glowing effect */
}

/* Top line animation */
.hamburger span:nth-child(1) {
  animation: waveTop 1.5s ease-in-out infinite;
}

/* Bottom line animation */
.hamburger span:nth-child(3) {
  animation: waveBottom 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes waveTop {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(-5px); }
}

@keyframes waveMiddle {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(1.3); }
}

@keyframes waveBottom {
  0%, 100% { transform: translateY(2px); }
  50% { transform: translateY(5px); }
}

        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            margin-top: -100px;
            padding-top: 100px;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 30px;
        }
        
        @media (max-width: 992px) {
            .navbar-nav {
                text-align: center;
                padding: 20px 0;
            }
            
            .nav-link {
                margin: 5px 0;
            }
            
            .reservation-btn {
                margin-top: 10px;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
        }

        .about-banner {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 0;
            position: relative;
        }
        
        .about-banner-content {
            max-width: 800px;
            padding: 20px;
        }
        
        .about-banner h1 {
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 15px;
                   background: linear-gradient(to right, #ff0080, #7928ca);
                background-clip: text;    
                -webkit-background-clip: text; 
                -webkit-text-fill-color: transparent;
              
        }
        
        .about-banner p {
            font-size: 1.2rem;
            margin-bottom: 20px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }
        
        /* .banner-divider {
            width: 100px;
            height: 4px;
            background-color: var(--secondary-color);
            margin: 0 auto 20px;
            border-radius: 2px;
        }
         */
        /* Content Section */
        
        /* Footer Styles */
  .foot {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        color: #fff;
        padding: 60px 0;
        width: 100%;
    }

    .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* ✅ GRID Layout (fixes column spacing issue) */
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2.5rem;
        align-items: start;
    }

    @media (max-width: 992px) {
        .contact-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 600px) {
        .contact-grid {
            grid-template-columns: 1fr;
        }
    }

    .contact-column {
        min-width: 0;
    }

    .section-title {
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
        font-weight: 700;
        background: linear-gradient(135deg, #ff0080, #7928ca);
        background-clip: text;
        -webkit-text-fill-color: transparent;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 1.3rem;
    }

    /* .section-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(to right, #ff0080, #7928ca);
        border-radius: 2px;
    } */

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(255, 0, 128, 0.2), rgba(121, 40, 202, 0.2));
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ff0080;
        flex-shrink: 0;
        font-size: 1.1rem;
    }

    .phone-numbers {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }

    .phone-link,
    .email-link {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        display: block;
        font-size: 1rem;
        transition: color 0.3s ease;
    }

    .phone-link:hover,
    .email-link:hover {
        color: #ff0080;
    }

    .address-text {
        color: rgba(255, 255, 255, 0.9);
        position: relative;
        padding-left: 1.2rem;
        font-weight: 500;
        line-height: 1.6;
    }

    .address-text::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background: linear-gradient(to bottom, #ff0080, #7928ca);
        border-radius: 2px;
    }

    .address-line {
        display: block;
        margin-bottom: 0.5rem;
    }

    .hours-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .hours-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 0.8rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .day,
    .time {
        font-weight: 600;
        font-size: 0.95rem;
    }

    .time {
        color: #ff0080;
    }

    .map-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
        padding: 0.7rem 1.3rem;
        border-radius: 25px;
        font-weight: 600;
        font-size: 0.9rem;
        color: #fff;
        text-decoration: none;
        background: linear-gradient(135deg, #ff0080, #7928ca);
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
    }

    .map-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 0, 128, 0.5);
    }

         