/* header */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    /* background: #0f1622; */
    /* for scroll testing */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
}

header.scrolled {
    background-color: rgba(15, 22, 34, 0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 70px;
    margin-right: 10px;
}

.logo span {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: #e50914;
}

.order-btn {
    background-color: #e50914;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.order-btn:hover {
    background-color: #e2e2e2;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: white;
    display: block;
    border-radius: 2px;
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 30px;
        background-color: #1a1a1a;
        flex-direction: column;
        width: 200px;
        padding: 15px;
        gap: 20px;
        border-radius: 6px;
    }

    nav.show {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .order-btn {
        padding: 8px 14px;
    }
    .logo img {
        width: 80px;
    }
}

/* Banner Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 40px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-text {
    max-width: 50%;
    z-index: 2;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.3;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    animation: fadeInUp 1s ease;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #ddd;
    animation: fadeInUp 1.2s ease;
}

.hero-text .order-btn {
    background-color: #e50914;
    color: #fff;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    animation: fadeInUp 1.4s ease;
}

.hero-text .order-btn:hover {
    background-color: #c10811;
}

.hero-image {
    max-width: 50%;
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #e50914;
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .hero-text,
    .hero-image {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-image img {
        max-width: 350px;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-text .order-btn {
        font-size: 14px;
        padding: 12px 22px;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
/* about */
.about-section {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 40px;
    gap: 40px;
}

.about-left {
    flex: 1;
    min-width: 350px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.about-left img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.about-right {
    flex: 1;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-right h3 {
    font-size: 20px;
    color: #e50914;
    margin-bottom: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.about-right h3::after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 2px;
    background: #e50914;
    margin-left: 10px;
}

.about-right h2 {
    font-size: 32px;
    margin: 15px 0 20px;
    font-weight: 800;
}

.about-right h2 .icon {
    color: #e50914;
    font-style: normal;
    margin: 0 5px;
}

.about-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.stat-item h1 {
    font-size: 40px;
    color: #e50914;
    margin: 0;
}

.stat-item p {
    font-size: 14px;
    color: #444;
    margin: 0;
    line-height: 1.4;
}

.stat-item p span {
    display: block;
    font-weight: bold;
    color: #000;
}

.read-more-btn {
    background: #e50914;
    color: #fff;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: fit-content;
    text-decoration: none;
}

.read-more-btn:hover {
    background: #c10811;
}

@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .about-left {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* form */
.form-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

.form-left {
    flex: 1;
    min-height: 500px;
    background: url('https://cdn.pixabay.com/photo/2021/12/09/22/17/table-setting-6859274_1280.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-btn {
    width: 80px;
    height: 80px;
    background-color: #e50914;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: pulse 2s infinite;
    position: relative;
}

.video-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #e50914;
    animation: pulse-ring 2s infinite;
}

.video-btn i {
    border: solid #fff;
    border-width: 15px 0 15px 25px;
    display: inline-block;
    margin-left: 5px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.form-right {
    flex: 1;
    background-color: #0d1321;
    color: white;
    padding: 60px 40px;
}

.form-right h4 {
    color: #e50914;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.form-right h4::after {
    content: "";
    width: 40px;
    height: 2px;
    background-color: #e50914;
    margin-left: 10px;
}

.form-right h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
}

form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
}

form textarea {
    grid-column: span 2;
    height: 120px;
    resize: vertical;
}

.form-btn {
    grid-column: span 2;
    background-color: #e50914;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-btn:hover {
    background-color: #c10811;
}

/* Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.video-modal iframe {
    width: 90%;
    max-width: 800px;
    height: 450px;
    border: none;
    border-radius: 8px;
}

.video-modal .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
     .hero-text {
        padding-top: 70px;
        max-width: 300px;
    }
    .form-section {
        flex-direction: column;
    }

    form {
        grid-template-columns: 1fr;
    }

    form textarea,
    .form-btn {
        grid-column: span 1;
    }

    .form-right {
        padding: 40px 20px;
    }
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 18px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

/* testimonial */
.testimonial-section {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.testimonial-section h4 {
    font-size: 22px;
    color: #e50914;
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.testimonial-section h4::before,
.testimonial-section h4::after {
    content: "";
    width: 40px;
    height: 2px;
    background-color: #e50914;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}

.testimonial-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
}

.testimonial-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding-bottom: 20px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 30px;
    text-align: left;
    width: calc((100% - 60px) / 3);
    flex: 0 0 auto;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card.highlight {
    background: #e50914;
    color: white;
    box-shadow: none;
}

.testimonial-card .quote-icon {
    font-size: 30px;
    color: #e50914;
}

.testimonial-card.highlight .quote-icon {
    color: white;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin: 20px 0;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info .name {
    font-weight: bold;
    font-size: 18px;
}

.user-info .title {
    font-size: 14px;
    color: #777;
}

.testimonial-card.highlight .title {
    color: #ffeaea;
}

.testimonial-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background-color: #e50914;
}

.carousel-btn {
    background: #fff;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: #f5f5f5;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .testimonial-section h2 {
        font-size: 28px;
    }

    .testimonial-card {
        width: calc(100% - 40px);
        margin: 0 20px;
    }

    .carousel-btn {
        display: none;
    }
}

/* footer */
footer {
    background-color: #0b1025;
    color: #fff;
    padding: 60px 20px 30px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h3 {
    color: #e50914;
    font-family: 'Pacifico', cursive;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: #e50914;
    margin-top: 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin: 10px 0;
    font-size: 16px;
}

.footer-column ul li i {
    margin-right: 8px;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
}

.footer-column a:hover {
    color: #e50914;
}

.contact-info i {
    width: 20px;
}



.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 14px;
}

.footer-bottom img {
    height: 40px;
    margin-left: 20px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #e50914;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-column {
        flex: 1 1 100%;
    }
}

/* Update the contact info list items */
.contact-info ul li {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    margin: 10px 0;
    font-size: 16px;
    gap: 10px; /* Space between icon and text */
}

.contact-info ul li i {
    margin-top: 3px; /* Slight vertical alignment adjustment */
    flex-shrink: 0; /* Prevent icon from shrinking */
    width: 20px;
    text-align: center; /* Center the icon in its space */
}

/* Or alternatively, you could use this approach: */

.contact-info ul li {
    position: relative;
    padding-left: 30px; /* Make space for icon */
    margin: 10px 0;
    font-size: 16px;
}

.contact-info ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
}


@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

.page-title-section {
    position: relative;
    background: url('img/indian-food.jpg') center/cover no-repeat;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-title-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.page-title-content {
    position: relative;
    z-index: 2;
}

.page-title-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 1rem;
}

.breadcrumb a {
    text-decoration: none;
    color: #ff7b00;
    font-weight: 600;
}

.breadcrumb span {
    color: #fff;
    margin-left: 5px;
}

@media screen and (max-width: 768px) {
    .page-title-section {
        height: 200px;
        padding: 0 20px;
    }

    .page-title-content h1 {
        font-size: 2rem;
    }

    .breadcrumb {
        font-size: 0.9rem;
    }
}

.contact-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.contact-section h3 {
    /* font-family: 'Great Vibes', cursive; */
    font-size: 28px;
    color: #d3232a;
    text-align: center;
    margin-bottom: 10px;
}

.contact-section h2 {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.contact-info div {
    flex: 1;
    min-width: 250px;
}

.contact-info h4 {
    color: #d3232a;
    /* font-family: 'Great Vibes', cursive; */
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info h4 i {
    margin-right: 8px;
}

.contact-info p,
.contact-info a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    width: 100%;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    padding: 14px;
    background-color: #d3232a;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #b71c1c;
}

.inked {
    color: #b71c1c;
    text-decoration: none;
}
.inked:hover {
    color: #ccc;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
    }
}

/* Policy Pages Styling */
.policy-content {
    padding: 60px 0;
    background: #fff;
}

.policy-content .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-content h2 {
    color: #c00;
    margin-bottom: 10px;
    font-size: 28px;
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.policy-content h3 {
    color: #333;
    margin: 25px 0 15px;
    font-size: 22px;
}

.policy-content a {
    color: #c00;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 40px 0;
    }
    
    .policy-content h2 {
        font-size: 24px;
    }
    
    .policy-content h3 {
        font-size: 20px;
    }
}
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 10px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #e50914;
    color: #fff;
    border-color: #e50914;
}