/* Base Styles */
html {
    /* Removed overflow-x: hidden to prevent dropdown issues */
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

body, body * {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    /* Removed overflow-x: hidden from here as well */
    box-sizing: border-box;
}

/* Color Variables */
:root {
    --primary: #940FDE;
    --secondary: #500878;
    --yellow: #FFC90E;
    --tertiary: #F5F5F5;
    --quaternary: #EAEAEA;
    --quinary: #000000;
    --senary: #FFFFFF;
}
.height-50{
    height:150px;
}
.height-25{
    height:70px;
}

/* Utility Classes */
.yellow-bg {
    background-color: var(--yellow) !important;
    color: #500878;
    font-weight: 700;
    border: 0px;
}

.yellow-bg:hover {
    background-color: var(--yellow) !important;
    color: #500878;
}

.gradient-text1 {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.border-theme {
    border: 3px solid #900FD8 !important;
}
.gray-scale{
    filter: grayscale(100%);
}
/* Navbar */
/* .nav-link.dropdown-toggle.show{
    margin-left: 25px !important;
} */

.navbar {
    position: relative;
    z-index: 1030; /* Ensures navbar stays above other content */
    box-shadow: 0px 0px 10px 0px rgb(136, 136, 136);
}

.logo {
    width: 200px;
    transition: width 0.3s ease;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

/* Dropdown Fixes */
.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 5px;
}

.navbar .dropdown-item {
    text-align: center;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: rgba(148, 15, 222, 0.1);
    color: var(--primary);
}

.nav-link.dropdown-toggle::after {
    display: none !important;
}

/* Desktop Styles */
@media (min-width: 992px) {
    .navbar-expand-lg {
        padding: 10px 50px;
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .navbar-expand-lg .navbar-nav {
        margin-right: 10px; /* bring nav closer to button */
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 18px;
        padding: 8px 15px;
        margin: 0 5px;
    }

    .navbar-expand-lg .navbar-nav .nav-link:hover {
        color: var(--primary);
    }

    .logo {
        width: 350px !important;
    }

    /* Smooth dropdown animation */
    .navbar-expand-lg .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        transform: translateY(10px);
    }

    .navbar-expand-lg .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .order-food {
        margin-left: 10px; /* space between last nav link and button */
    }
}

/* Mobile Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        padding-top: 15px;
    }

    .navbar-nav {
        padding-bottom: 15px;
    }

    .navbar .dropdown-menu {
        margin-left: 15px;
        width: calc(100% - 30px);
        box-shadow: none;
        border: 1px solid rgba(0,0,0,0.1);
    }

    .d-block.d-lg-none .order-food {
        width: 75%;
        margin: 0 auto;
        color: #500878;
    }
}

.hero-video-section {
    position: relative;
    height: 70vh;
    max-height: 600px;
    overflow: hidden;
}

.hero-video-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark black overlay */
    z-index: 1;
}

.hero-main-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
}

.hero-main-title {
    font-size: 2.8rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 0;
    font-weight: bold;
}
.city-card {
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
/*.city-card:hover {*/
/*    transform: scale(1.05) !important;*/
/*    z-index: 2;*/
/*}*/
.feature-card-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: -100px auto 0;
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.section-main-title {
    color: #333;
    margin-bottom: 1.8rem;
    font-size: 2.2rem;
    text-align: center;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon img {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
}

.feature-description {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(to bottom, #500878, #940FDE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

@media (max-width: 1024px){
    .logo{
        width: 200px !important;
    }
    .navbar-expand-lg .navbar-nav .nav-link{
        font-size: 14px;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .hero-video-section video{
        position: absolute;
        top: -15vh;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        clip-path: inset(12% 0 12.5% 0);
    }

    .overlap-card {
        width: 90% !important;
        margin-top: -250px !important;
        padding: 1.5rem !important;
    }
}
@media (max-width: 1000px) {
    .hero-video-section {
        height: 60vh;
    }

    .hero-main-title {
        font-size: 2.2rem;
    }

    .feature-card-container {
        width: 95%;
        margin-top: -120px;
        padding: 2rem;
    }

    .features-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 1.8rem;
    }

    .feature-card-container {
        margin-top: -150px;
    }
    .hero-main-content {
        position: absolute;
        top: 30%;
    }

    .hero-video-section {
        position: relative;
        height: 100vh;
    }

    .hero-video-section video{
        position: absolute;
        top: -15vh;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        clip-path: inset(12% 0 12.5% 0);
    }

    .overlap-card {
        width: 90% !important;
        margin-top: -250px !important;
        padding: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero-video-section {
        position: relative;
        height: 100vh;
    }
    .hero-video-section video{
        position: absolute;
        top: -15vh;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        clip-path: inset(12% 0 12.5% 0);
    }

    .hero-main-title {
        font-size: 1.5rem;
    }

    .feature-card-container {
        margin-top: -180px;
        padding: 1.5rem;
    }

    .section-main-title {
        font-size: 1.8rem;
    }

    .feature-icon img {
        width: 60px;
        height: 60px;
    }

    .feature-description {
        font-size: 1.1rem;
    }
}
.z-1{
    z-index: -99;
}

/* Home Video */
 .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: rgba(0, 0, 0, 0.5); /* Adjust the 0.3 value to make it lighter/darker */
  z-index: -1;
}

.vid-thumb{
    cursor: pointer;
}

 .hero-content-home {
  position: absolute;
  margin-top: 40px;
  top: 0;
  left: 0;
  height: 300px; /* same as your video section height */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.hero-title-home {
  font-size: 2rem;
  color: white;
  font-weight: bold;
  padding: 0 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6); /* optional: better contrast */
}
@media (max-width:600px){
.hero-title-home{
 font-size: 1.2rem !important;

}
}

/* Zone Hero Banner Styles */
.heroo-banner {
    position: relative;
    overflow: hidden;
    height: 500px; /* Adjust height as needed */
}

.heroo-image {
    width: 100%;
    height: 100%;
}

.zone-banner-img {
    object-fit: cover;
    height: 100%;
}

.heroo-overlay {
    background-color: rgba(0, 0, 0, 0.4); /* Semi-dark overlay for better text visibility */
}

.heroo-heading {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 0 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .heroo-banner {
        height: 350px;
    }
    .heroo-heading {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .heroo-banner {
        height: 300px;
    }
    .heroo-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .heroo-banner {
        height: 250px;
    }
    .heroo-heading {
        font-size: 2rem;
    }
}
    .hero-section {
        position: relative;
        width: 100%;
        margin-bottom: 120px;
        z-index: -1;
    }

    .hero-bg {
        height: 50vh;
        max-height: 500px;
        overflow: hidden;
    }

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-content {
        position: absolute;
        top: 30%;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 0 20px;
        z-index: 2;
    }
    .hero-content-contact{
        position: absolute;
        top: 35%;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 0 20px;
        z-index: 2;
    }
    .hero-title {
        font-size: 2.5rem;
        color: white;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        margin-bottom: 0;
    }

    .overlap-card {
        position: relative;
        width: 90%;
        max-width: 1000px;
        margin: -60px auto 0;
        background: white;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 3;
    }

    .card-title {
        color: #333;
        margin-bottom: 1.5rem;
        font-size: 2rem;
        text-align: center;
    }

    .card-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .value-card {
        flex: 1;
        min-width: 250px;
        padding: 1rem;
        text-align: center;
    }

    .card-icon img {
        width: 60px;
        height: 60px;
        margin-bottom: 0.5rem;
    }

    .card-text {
        color: #555;
        font-size: 1.1rem;
        line-height: 1.5;
        font-weight: 700;
    }
    .p-text{
        align-items: center;
        margin-left: 10px;
    }
    .fa-circle{
        padding-top: 13px;
        font-size: 8px;
    }
    .gradient-text {
        background: linear-gradient(to bottom, #500878, #940FDE);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    @media (max-width: 1000px) {
        .hero-bg {
            height: 50vh;
        }

        .hero-title {
            font-size: 2rem;
        }

        .overlap-card {
            width: 95%;
            margin-top: -80px;
            padding: 1.5rem;
        }

        .card-container {
            flex-direction: column;
            gap: 1rem;
        }


         .steps-container {
            overflow: scroll;
        }
        .custom-title1 {
            font-weight: 900;
            font-size: 2rem !important;
            text-align: center !important;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 1.2rem;
        }

        .overlap-card {
            margin-top: -250px;
        }
        .hero-content {
            top: 25%;
        }
        .hero-content-contact{
            top: 35%;
        }
        .d-xm-none{
            display:none !important;
        }
    }


    .res-app{
        margin-top:0px;
        z-index: 99;
    }
.order-food {
   width: 100%; background: var(--yellow); color: #500878 !important; border: none; padding: 10px 20px; border-radius: 10px; font-size: 16px; cursor: pointer; font-weight: bold;
}

.order-food:hover {
    background: var(--yellow);
    color: #500878;
}

.mob-screen {
    z-index: 1;
}
.hero-section {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    background-color: #fff;
    overflow: hidden;

}

.bg-circle {
    position: absolute;
    height: 125%;
    top: -17%;
    right: 8%;
    bottom: 0%;
    transform: rotate(-119deg);
    z-index: 1;
}

.gradient-card {
    background: linear-gradient(180deg, #500878 0%, #940FDE 100%);
    box-shadow: -7px 3px 23px 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 2rem;
    z-index: 1;
    color: white;
}
.gc{
    width: 80%;
    margin: auto;
}
.download-text {
    font-size: 40px;
    font-weight: 700;
}

.download-subtext {
    font-size: 20px;
    font-weight: 700;
    margin-top: 1rem;
}

.store-buttons-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 1.5rem;
}

.qr-code {
    height: 120px;
    width: auto;
    margin-right:10px;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-button {
    height: 60px;
    width: auto;
    border-radius: 12px;
}

.app-store-button {
    height: 60px;
    width: auto;
    border-radius: 12px;
    margin-bottom: 0.5rem;
}

.play-store-button {
    height: 60px;
    width: auto;
    border-radius: 12px;
}

.phone-image {
    transform: rotate(8deg);
    z-index: 2;
    position: absolute;
    height: 120%;
    right: 14%;
    top: -15%;
}

.mob-qr{
    background: white;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    padding-top: 8px;
    margin-bottom: 10px !important;
}
@media (max-width: 600px) {
    .bg-circle {
        display: none;
    }
}


@media (max-width: 1000px) {
    .download-text {
        font-size: 20px;
        text-align: center;
    }

    .download-subtext {
        font-size: 20px;
        text-align: center;
    }

    .store-buttons-container {
        justify-content: center;
        flex-direction: column;
    }

    .phone-image {
        transform: none;
        position: relative;
        margin-top: 2rem;
        right: auto;
        width: 110% !important;
    }

    .gradient-card {
        padding: 2rem;
    }

    .bg-circle {
        display:none;
        width: 400px;
        height: 400px;
        right: -150px;
        bottom: -150px;
    }

    .qr-code {
        height: 110px;
    }

    .store-button {
        height: 50px;
    }

    .app-store-button,
    .play-store-button {
        height: 50px;
    }
}
@media (min-width: 800px) and (max-width: 1500px) {
    .phone-image {

        height: 115% !important;
        right: 8% !important;
        top: -15%;
}
.download-text {
    font-size: 35px !important;

}
}



/* Larger screens 1500px*/
@media (min-width: 1500px) {
    .phone-image {
        transform: rotate(8deg);
        z-index: 2;
        position: absolute;
        height: 120%;
        right: 17% !important;
        top: -15%;
}

.bg-circle {
    position: absolute;
    height: 125%;
    top: -17%;
    right: 14% !important;
    bottom: 0%;
    transform: rotate(-119deg);
    z-index: 1;
}
}


/* Larger screens 2000px - 35000*/
@media only screen and (min-width: 2000px) and (max-width: 3500px) {
    .phone-image {
        transform: rotate(8deg);
        z-index: 2;
        position: absolute;
        height: 120%;
        right: 27% !important;
        top: -25%;
}

.bg-circle {
    position: absolute;
    height: 125%;
    top: -17%;
    right: 25% !important;
    bottom: 0%;
    transform: rotate(-119deg);
    z-index: 1;
}
}



/* Larger screens 3500px - 5000*/
@media only screen and (min-width: 3500px) and (max-width: 5000px) {
    .phone-image {
        transform: rotate(8deg);
        z-index: 2;
        position: absolute;
        height: 120%;
        right: 35% !important;
        top: -25%;
}

.bg-circle {
    position: absolute;
    height: 125%;
    top: -17%;
    right: 35% !important;
    bottom: 0%;
    transform: rotate(-119deg);
    z-index: 1;
}
}





footer {
    padding:10px;
    position: relative;
    background: linear-gradient(90deg, #500878 0%, #940FDE 100%);
    box-shadow: 0px -12px 23px 4px rgba(0, 0, 0, 0.25);
    overflow: visible;
  }


.footer-links a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  opacity: 0.8;
}


footer h3 {
  font-size: 20px;
  font-weight: 600;
  min-height: 20px;
}


.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icon img{
  width: 30px;
  height: 30px;
}
.floating-mobile {
    position: absolute;
    right: 0px;
    top: -15%;
    transform: translateY(-50%);
    height: auto;
    max-height: 100%;
    z-index: 1;
  }

@media (max-width: 992px) {
  .gradient-bg {
    height: auto;
    padding-bottom: 100px;
  }
  .floating-mobile {
   display:none;
  }

}

@media (max-width: 1000px) {
  .footer-links a {
    font-size: 14px;
  }
  .gradient-bg {
    top: 200px;
  }
}


/* about */

.bg-silver{
    background-color: #F6E6FF;
    padding: 20px;
}

.semi-circle-about{
    position: absolute;
    right: 0;
    margin-top: -5%;
    height:350px;
    z-index: -1;
}
 /* Desktop Version */
 .card-image{
    width: 100%;

 }
 .ceo-section {
    position: relative;
    min-height: 130vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ceo-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/imgs/ceo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.ceo-content {
    position: relative;
    z-index: 1;
    padding: 3rem;
    max-width: 600px;
    margin: 2rem;
    color: white; /* Adjust text color for contrast */
    border-radius: 8px;
}

/* Mobile Version */
.ceo-mobile-section {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.ceo-mobile-img {
    height: 40vh;
    object-fit: cover;
    object-position: left;
}

.ceo-mobile-content {
    padding: 2rem;
    flex-grow: 1;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
}


/* Responsive Behavior */
@media (min-width: 768px) {
    .ceo-mobile-section {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .ceo-section {
        display: none;
    }
}

  /* CEO Message Section */
  .ceo-section {
    position: relative;
    min-height: 130vh;
    display: flex;
    align-items: center;
}

.ceo-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../imgs/ceo.png") !important;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.ceo-content {
    position: relative;
    z-index: 1;


    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 2rem;
}

/* Mobile Styles */
.ceo-mobile-section {
    display: none; /* Hidden by default */
}

.ceo-mobile-img {
    width: 100%;
    height: 40vh;
    object-fit: cover;
    object-position: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ceo-section {
        display: none;
    }

    .ceo-mobile-section {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    .ceo-mobile-content {
        padding: 2rem;
        flex-grow: 1;
        background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    }

    .ceo-content {
        padding: 1.5rem;
        max-width: 100%;
        margin: 1rem;
    }
}

/* Tablet Version */
.ceo-tablet-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.ceo-tablet-img {
    border-radius: 8px;
    object-fit: cover;
    max-height: 60vh;
}

.ceo-tablet-content {
    background: rgba(255,255,255,0.8);
    border-radius: 8px;
}

/* Adjust display classes for different versions */
.ceo-section {
    display: none;
}
.ceo-mobile-section {
    display: none;
}
.ceo-tablet-section {
    display: none;
}

@media (min-width: 992px) {
    /* Desktop */
    .ceo-section {
        display: block !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    /* Tablet */
    .ceo-tablet-section {
        display: flex !important;
    }
}

@media (max-width: 767.98px) {
    /* Mobile */
    .ceo-mobile-section {
        display: flex !important;
    }
}



  /* Contact */
  /* Contact Section Styles */
.contact-wrapper {
    position: relative;
    max-width: 900px;
    /* margin: 50px auto; */
    margin-top:-5%;
    overflow: visible; /* Allow content to overflow */
    border: 5px solid white;
}

/* Purple Form Container */
.contact-form-container {
    padding: 50px;
    border-radius: 10px;
    color: white;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: linear-gradient(135deg, #4F2774 0%, #6a3093 100%);
    background-image: url(imgs/map.png);
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    z-index:-2;background-image: url(imgs/map.png);
}

.contact-form-container .form-content {
    width: 100%;
    padding-left: 200px; /* Space for the overlapping contact info */
}

.contact-form-container h1 {
    font-size: 48px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 10px;
    margin-top: -30px;
}

.contact-form-container p {
    font-size: 24px;
    text-align: left;
    margin-top: -10px;
    margin-bottom: 20px;

}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: none;
    background: white;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

/* Yellow Info Box */
.contact-info {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ffcc00;
    padding: 25px;
    width: 350px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    color: black;
    border: 2px solid white;
    text-align: left;
    z-index: 2;
}
.white-dot{
    position: absolute;
    bottom: -50px;
    left: -50px;
    height: 200px;
    z-index: -1;
}
.contact-submit{
    font-size: 1.4rem;
}

.contact-info h3 {
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 10px;
}

.contact-info .d-flex {
    margin-bottom: 15px;
    align-items: center;
}

.contact-info .bi {
    margin-right: 10px;
    font-size: 1.5rem;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between icon and text */
    margin-bottom: 15px;
    width: 100%; /* Ensure it takes full width */
}

.contact-info-item img {
    width: 24px; /* Set a fixed width for icons */
    height: 24px; /* Set a fixed height for icons */
}

.contact-info-item p {
    margin: 0; /* Remove default paragraph margins */
    text-align: left;
    flex: 1; /* Allow text to take remaining space */
}
/* Button Styles */
.btn-custom {
    background: #ffcc00;
    color: var(--primary);
    font-weight: bold;
    width: 36%;
    padding: 12px;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
    cursor: pointer;
    box-shadow: 0px 0px 5px 0px black;
}

.btn-custom:hover {
    background: #e6b800;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #4F2774 0%, #6a3093 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .btn-custom {
        width: 100%;
    }

    .contact-form-container {
        padding: 30px 15px !important;
    }

    .contact-form-container .form-content {
        padding-left: 0;
    }

    .contact-info {
        position: relative;
        top: auto;
        transform: none;
        width: 100%;
        margin: 0 auto 30px;
        box-sizing: border-box;
    }

    .contact-form-container h1,
    .contact-form-container p {
        text-align: center;
    }
}

@media (min-width: 992px) {
    .contact-info {
        margin-left: -120px;
    }
}

/* Icon Styles */
.bi {
    font-size: 2rem;
}
.purple-dot{
    position: absolute; z-index: -10; height:200px; right:0
}
.purple-dot2{
    position: absolute; z-index: -10; height:350px;margin-top:-5%; left:0; transform: rotate(180deg);
}

/* All Zone */
.nav-link1 {
    width: 100%;
    color: #333;
    font-weight: bold;
    border: 1px solid black;
    background-color: white;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  }

  .nav-link1:hover {
    background-color: var(--yellow);
    color: var(--primary);
  }

  .nav-link1.active {
    background-color: #4f2774;
    color: white;
    border-color: #4f2774;
  }

  .zone-item {
    background-color: white;
    padding: 12px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid black;
    color: var(--primary);
    font-weight: bold;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    height: 100%;
    width: 100%;
  }
  .tab-content{
      padding:0px;
  }
  .nv .nav-link1.active{
    background-color: var(--primary);
    color: white;

  }


/* zone */
.food-card {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 20px auto;
    font-family: sans-serif;
    transition: transform 0.3s ease;
}

.food-card:hover {
    transform: translateY(-5px);
}

.card-image-top {
    width: 100%;
    height: 180px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.card-image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    position: relative;
}

.restaurant-avatar {

    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: absolute;
    left: 15px;
}

.restaurant-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.restaurant-details {
    flex-grow: 1;
    margin-left: 75px;
}

.restaurant-name {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 1.2em;
    color: #333;
}

.delivery-time {
    font-size: 0.9em;
    color: #777;
}

.card-actions {
    display: flex;
    align-items: center;
}

.rating {
    display: flex;
    align-items: center;
    margin-right: 15px;
    color: #ffc107;
}

.star-icon {
    font-size: 1.1em;
    margin-right: 5px;
}

.rating-value {
    font-weight: bold;
}

.favorite-button {
    background: var(--primary);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.favorite-button:hover {
    background: rgba(156, 39, 176, 0.1);
}

.favorite-button.active {
    background: rgba(156, 39, 176, 0.1);
}

.heart-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: white;
    stroke-width: 2px;
    transition: all 0.3s ease;
}

.favorite-button.active .heart-icon {
    fill: #9c27b0;
}


.steps-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    background-color: #FBC02D;
    color: #000;
    font-weight: bold;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.step-description {
    margin-top: 10px;
    font-size: 18px;
    max-width: 250px;
    font-weight: bold;
    color: #4F2774
}

.arrow {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
 .custom-container1 {
    background: linear-gradient(128deg, rgba(79, 39, 116, 1) 41%, rgba(103, 54, 149, 1) 100%);
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    position: relative;
    box-shadow: 0px 0px 10px 0px #4F2774;
}

.custom-title1 {
    font-weight: 900;
    font-size: 4rem;
}

.custom-image-bg1 {
    position: absolute;
    right: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.custom-image-fg1 {
    position: relative;
    z-index: 1;
    margin-top: -35px;
    margin-bottom: -40px;
    width: 80%;
}
.pr{
    position: relative;
}


/* news */
.news{
    padding-bottom: 100px;
}
.news a{
    text-decoration: none;
}
 .news .card{
        box-shadow: 0px 0px 5px 0px silver;
    }
    .news-card h2{
        font-size: 20px;
    }
    .news-card p{
        font-size: 18px;
        font-weight: 500;
    }
    .news-border{
        border-top: 2px solid #000; width: 100%;
    }
    .news-img{
        height: 250px; object-fit: cover;
    }
    .blog-p{
        font-weight: 400;
        color:#000;
        font-size: 20px;
        line-height: 1.1;
    }




/* social news inner */
.social-share-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .social-share-label {
    margin-bottom: 0;
    margin-right: 0.5rem;
    font-weight: bold;
    font-size: 20px;
  }

  .social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    color: white !important;
    text-decoration: none !important;
  }

  .facebook-btn { background-color: #3b5998; }
  .twitter-btn { background-color: #1da1f2; }
  .linkedin-btn { background-color: #0077b5; }
  .pinterest-btn { background-color: #e60023; }

  .social-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }

    /* news inner comment*/


  .form-heading {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  .form-note {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
  }
  .required-field::after {
    content: " *";
    color: red;
  }
  .form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
  }
  .form-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 150px;
    font-size: 16px;
  }
  .checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  .checkbox-input {
    margin-right: 10px;
  }
  .submit-btn {
    background: linear-gradient(to right, #500878, #940FDE);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  .submit-btn:hover {
    background: linear-gradient(to right, #3e0660, #7a0cb9);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .save-text{
    font-weight: bold;
  }

  .blog-date{
    color:#000
  }

  .news-category{
     margin-left: 20px;
  }
  .news-category-p{
    font-weight: 600;
    font-size: 1.2rem;

  }

  /* newsletter */
  .newsletter {
    background-color: #DD9FFF;
    padding: 40px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
  }

  .newsletter-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 150px;
    opacity: 0.8;
    z-index: 1;
  }

  .newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 400px;
  }

  .newsletter-title {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.5rem;
  }

  .newsletter-description {
    margin-bottom: 25px;
    color: #000;
    line-height: 1.4;
  }

  .newsletter-form {
    margin-top: 30px;
  }

  .newsletter-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
  }

  .newsletter-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
  }

  .newsletter-btn {
    background: linear-gradient(to right, #500878, #940FDE);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .newsletter-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }


  /* Careers Page*/

  /* mid-content */
   .career-mid-content{
    background-color: #D1A2EB;
    padding: 30px;
}
.career-bullets{
    font-size: 20px;
}

/* join team */

    .join-our-team-section {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        font-family: Arial, sans-serif;
        margin-top: 50px;
    }

    .join-team-banner {
        background-color: #C39BD3;
        border-radius: 0px;
        padding: 40px 40px 40px 100px; /* extra left padding */
        max-width: 1000px;
        width: 100%;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        position: relative;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        overflow: visible; /* let Uncle spill out */
        min-height: 300px;
    }

    .character-image-placeholder {
        position: absolute;
        bottom: 0;
        left: 0;
        width: auto;
        height: 350px; /* big Uncle */
        z-index: 10;
    }

    .character-image-placeholder img {
        height: 100%;
        width: auto;
        object-fit: contain;
    }

    .join-team-content {
        max-width: 400px;
        text-align: left;
        color: #333;
        text-align: center;
        z-index: 1;
    }
    @media (max-width:1100px){
         .join-team-content {
        max-width: 300px !important;

    }
    }

    .join-team-content h2 {

        font-size: 32px;
        color: #5B2C6F;
        font-weight: bold;
        margin: 0 0 10px 0;
    }

    .join-team-content p {
        font-size: 28px;
        color: #000;
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .apply-now-button {
        background: linear-gradient(to right, #5E3376, #AF5FDC);
        color: #FFFFFF;
        border: none;
        border-radius: 25px;
        padding: 20px 50px;
        font-size: 20px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s ease;
/*        text-transform: uppercase;*/
        box-shadow: 0px 0px 5px 0px silver;
    }

    .apply-now-button:hover {
        background: linear-gradient(to right, #5B0099, #7D00DD);
    }

    @media (max-width: 600px) {
        .join-team-banner {
            flex-direction: column;
            align-items: center;
            padding: 120px 20px 20px 20px;
        }

        .character-image-placeholder {
            width: auto;
            height: 300px; /* reduce height on smaller screens */
            bottom: auto;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
        }

        .join-team-content {
            text-align: center;
            margin-top: 20px;
        }
    }

    /* Mobile */
    @media (max-width: 480px) {
        .character-image-placeholder {
            height: 220px;
            top: -80px;
        }

        .join-team-content h2 {
            font-size: 22px;
        }

        .join-team-content p {
            font-size: 14px;
        }

        .apply-now-button {
            padding: 8px 16px;
            font-size: 13px;
        }
    }

    /* career openings */
     .career-openings-section {
        text-align: center;
        padding: 2rem 1rem;
    }

    .career-icon-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        margin-top: 2rem;
    }

    .career-icon-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 160px; /* Fixed width for better control */
    }

    .career-icon-box {
        background: linear-gradient(180deg, #500878 0%, #940FDE 100%);
        box-shadow: -7px 3px 23px 4px rgba(0, 0, 0, 0.25);
        border-radius: 12px;
        padding: 1.5rem;
        color: white;
        width: 100%;
        text-align: center;
        transition: transform 0.3s ease;
    }

    .career-icon-box:hover {
        transform: translateY(-5px);
    }

    .career-icon-box img {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .career-icon-text {
        text-align: center;
        margin-top: 1rem;
        font-weight: 600;
        color: #333;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .career-icon-container {
            gap: 1.5rem;
        }

        .career-icon-item {
            width: 130px;
        }

        .career-icon-box {
            padding: 1rem;
        }

        .career-icon-box img {
            width: 50px;
            height: 50px;
        }
    }

    @media (max-width: 576px) {
        .career-icon-container {
            gap: 1rem;
        }

        .career-icon-item {
            width: 110px;
        }

        .career-icon-text {
            font-size: 0.9rem;
        }
    }


    /* loyality points */
     .lp-row{
            margin: auto;
            width: 80%;
            padding-top: 30px !important;
            padding-right: 30px !important;
            padding-left: 30px !important;
            padding-bottom: 0px !important;
        }
        .lp-content{
             padding-left: 30px;
        }
        .lp-content h1 {
            font-size: 2.5rem;
        }
        .lp-content p {
            font-size: 0.9rem;

        }
        .lp-button{
            padding: 10px 20px;
            font-size: 1.4rem;
            box-shadow: 0px 10px 10px 0px rgb(53, 53, 53);
            border-radius: 10px;
            margin-top: 20px;
        }
        .social-icons-box {
        position: absolute;
        background: linear-gradient(180deg, #500878 0%, #940FDE 100%);
        padding: 20px;
        right: 0%;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 100;
        border-top-left-radius: 35px;
        border-bottom-left-radius: 35px;
        color: white;
    }

    .social-icons-box::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        bottom: -10px;
        right: -10px;
        border: 5px solid rgb(117, 12, 143);
        border-top-left-radius: 45px;
        border-bottom-left-radius: 45px;
        z-index: -1;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    }

    .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        background-color: transparent;
    }

    .social-icon i {
        line-height: 1;
    }

    .social-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .facebook i {
        color: white; /* Yellow Facebook icon */
    }

    .facebook:hover i {
        color: #FFEB3B;
    }

    .instagram:hover i {
        color: #FFEB3B;;
    }

    .youtube:hover i {
        color: #FFEB3B;;
    }

    @media (min-width: 992px) {
        .some-content-column-or-wrapper { /* Example: Adjust if needed based on your layout */
            position: relative;
        }
    }
        @media (max-width:1100px){
            .lp-row{
                width: 80% !important;
            }
           .lp-button{
            padding: 10px 10px;
            font-size: 1rem;
            text-align: center;
            margin:auto;

        }
            .lp-button-top{

            text-align: center;
            margin:auto;
            padding-bottom: 40px;

        }
        .lp-content{
                padding-top: 30px;
        }
            .lp-content h1 {
            font-size: 1.2rem;
            text-align: center;
        }
        .lp-content p {
            font-size: 1rem;
            text-align: center;
        }
            .lp-row{
            padding-top: 10px !important;
            padding-right: 10px !important;
            padding-left: 10px !important;
            padding-bottom: 0px !important;
        }


    }
    @media (max-width:600px){
        .social-icons-box{
            display: none;
        }
    }
