* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* Navigation bar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 20px; /* Slightly increased padding for a softer look */
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), /* Soft shadow */
                0 2px 4px rgba(0, 0, 0, 0.05); /* Inner shadow */
}



.logo img {
    height: 8vw;
    width: 10vw;
    margin-left: 4vw;
    opacity: 0;
    transform: scale(0);
    animation: pop 0.5s forwards;
    animation-delay: 0.5s; /* Adjust the delay as needed */
}

@keyframes pop {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: reveal 0.5s forwards;
}

.nav-links li:nth-child(1) {
    animation-delay: 0.2s;
}

.nav-links li:nth-child(2) {
    animation-delay: 0.4s;
}

.nav-links li:nth-child(3) {
    animation-delay: 0.6s;
}

.nav-links li:nth-child(4) {
    animation-delay: 0.8s;
}

.nav-links li:nth-child(5) {
    animation-delay: 1s;
}

.nav-links li:nth-child(6) {
    animation-delay: 1.2s;
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FF6F3D;
}

.order-online-btn {
    display: flex;
    align-items: center;
    background-color: #FF6F3D;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    margin-right: 6vw;
    opacity: 0;
    transform: translateY(20px);
    animation: reveal 0.5s forwards;
    animation-delay: 0.5s;
    transition: background-color 0.3s ease-in-out;
}

.order-online-btn:hover {
    background-color: #e65c2e;
}

.scooter-icon {
    margin-left: 10px;
    font-size: 20px;
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero section */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('herobg.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    animation: pop-hero .8s forwards;
    animation-delay: .3s; /* Adjust the delay as needed */
    opacity: 0; /* Initial opacity */
   
}

@keyframes pop-hero {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


.circle-container {
    position: relative;
    width: 875px;
    height: 875px;
}

.outer-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    background-image: url('https://i.pinimg.com/736x/07/37/1a/07371a5299ecdc51bbb2dfff5b59ba47.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1), -10px -10px 20px rgba(255, 255, 255, 0.5);
}

.pizza-type {
    position: absolute;
    font-weight: bold;
    color: #f5f5f5;
    text-align: center;
    transform-origin: center center;
    transition: color 0.3s;
}

.pizza-type:nth-child(1) { transform: rotate(0deg) translate(360px) rotate(0deg); }
.pizza-type:nth-child(2) { transform: rotate(30deg) translate(360px) rotate(-30deg); }
.pizza-type:nth-child(3) { transform: rotate(60deg) translate(360px) rotate(-60deg); }
.pizza-type:nth-child(4) { transform: rotate(90deg) translate(360px) rotate(-90deg); }
.pizza-type:nth-child(5) { transform: rotate(120deg) translate(360px) rotate(-120deg); }
.pizza-type:nth-child(6) { transform: rotate(150deg) translate(360px) rotate(-150deg); }
.pizza-type:nth-child(7) { transform: rotate(180deg) translate(360px) rotate(-180deg); }
.pizza-type:nth-child(8) { transform: rotate(210deg) translate(360px) rotate(-210deg); }
.pizza-type:nth-child(9) { transform: rotate(240deg) translate(360px) rotate(-240deg); }
.pizza-type:nth-child(10) { transform: rotate(270deg) translate(360px) rotate(-270deg); }
.pizza-type:nth-child(11) { transform: rotate(300deg) translate(360px) rotate(-300deg); }
.pizza-type:nth-child(12) { transform: rotate(330deg) translate(360px) rotate(-330deg); }


.inner-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    margin-top: -300px;
    margin-left: -300px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1), -10px -10px 20px rgba(149, 149, 149, 0.5);
    transform: scale(1.2); /* Add zoom effect (adjust the scale factor as desired) */
}


.arrow {
    position: absolute;
    width: 295px; /* Length of the arrow (radius of inner circle) */
    height: 2px;
    background-color: #ffffff;
    transform-origin: left center; /* Rotate around the center */
    transform: rotate(0deg); /* Start position of the arrow */
    top: 50%; /* Center vertically */
    left: 75%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Center the arrow */
}

.order-now-btn {
    position: absolute;
    top: 45%;
    left: 41%;
    transform: translate(-50%, 250px);
    background-color: #FF6F3D;
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: large;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 4;
    animation: pulse 1s infinite alternate; /* Add pulsing animation */}

.order-now-btn:hover {
    background-color: #E65C2E;
    animation: pulse 1s infinite alternate; /* Add pulsing animation */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05); /* Increase size during animation */
    }
}


/* Location section */

.location-section {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('locationbg.png');
    background-size: cover;
    background-position: center;
}


/* Location Search Bar */
.location-searchbar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.search-bar-page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hanging-search-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clip {
    font-size: 24px;
    color: #333;
}

.left-clip, .right-clip {
    position: absolute;
    top: -30px;
}

.left-clip {
    left: 0;
}

.right-clip {
    right: 0;
}

.line {
    position: absolute;
    top: -50px;
    width: 3px;
    height: 86px;
    background-color: #333;
}

.left-line {
    left: 0;
}

.right-line {
    right: 0;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: #000;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    width: 600px;
    position: relative;
}

.search-bar .logo {
    color: #fff;
    font-weight: bold;
    margin-right: 20px;
}

.search-bar input {
    flex-grow: 1;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 18px;
    padding: 10px;
    outline: none;
}

.search-bar i {
    color: #fff;
    font-size: 24px;
    margin-left: 10px;
}

.order-btn {
    background-color: #ff6f3d;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    color: #fff;
    font-weight: bold;
    margin-left: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.order-btn:hover {
    background-color: #e65c2e;
}

/* Locations Section */
.locations-section {
    text-align: center;
    width: 100%;
}

.locations-section h1 {
    font-size: 2em;
    margin-bottom: 30px;
}

.locations-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.location-selector {
    width: 49%;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
}

.location-selector ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    position: relative;
}

.location-selector ul::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #111;
    z-index: 1;
}

.location-selector ul li {
    position: relative;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease;
}

.location-selector ul li.active {
    color: #ff6f3d;
}

.location-circle {
    display: block;
    width: 12px;
    height: 12px;
    background-color: #333;
    border-radius: 50%;
    margin: 34px auto 8px;
    position: relative;
    z-index: 2;
}

.location-selector ul li.active .location-circle {
    background-color: #ff6f3d;
    width: 16px;
    height: 16px;
}

.location-selector ul li.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid #ff6f3d;
    border-radius: 50%;
    z-index: 1;
}


.location-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    
}

.location-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.delivery-guy img {
    width: 400px;
    height: auto;
}

.info {
    margin-left: 30px;
}

.info h2 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.info p {
    margin: 5px 0;
   
}

#phone{
    font-weight: bold;
    font-size: 1.2em;
    color: #e65c2e;
}

.info p i {
    margin-right: 5px;
}

#operation-timing{
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.location-map {
    flex: 0.5;
    height: 300px;
    margin-left: 50px;
    border-radius: 10px;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Menu Section  */

.menu-section {
    padding: 40px;
    text-align: center;
    background-image: url('menubg.png');
}

.menu-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.menu-categories .category {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.menu-categories .category.active,
.menu-categories .category:hover {
    color: #FF6F3D;
}

.menu-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: 250px;
    transition: transform 0.3s;
    position: relative;
    text-align: left;
}

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

.menu-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.menu-card-content {
    padding: 20px;
}

.menu-card-content h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #333;
}

.menu-card-content p {
    font-size: 1.1em;
    color: #FF6F3D;
    margin-bottom: 15px;
}

.order-now-btn-menu {
    background-color: #FF6F3D;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s;
}

.order-now-btn-menu:hover {
    background-color: #e65c2e;
}

.order-now-btn-menu.disabled {
    background-color: #ccc;
    cursor: not-allowed;
    color: #999;
}

/* Banner Section  */

.banner {
    width: 100%;
    /* max-width: 1200px; */
    padding: 20px;
    position: relative;
    background-image: url('pizza-bannerbg.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 55vh; */
    overflow: hidden;
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* height: 100%; */
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.text-content {
    max-width: 50%;
    z-index: 1;
}

.text-content h1 {
    font-size: 3.5em;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.text-content h2 {
    font-size: 2em;
    color: #ffde7d;
    margin-bottom: 20px;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
}

.text-content p {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 30px;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
}

.order-btn-banner {
    background-color: #ff4b2b;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.2em;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 75, 43, 0.3);
}

.order-btn-banner:hover {
    transform: scale(1.1);
    background-color: #e63e24;
}

.image-content {
    max-width: 40%;
    z-index: 1;
}

.pizza-image {
    width: 100%;
    border-radius: 20px;
    transform: rotate(-15deg);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pizza-image:hover {
    transform: rotate(0deg);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
    z-index: 0;
}

/* Information Section  */


.info-section {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    /* max-width: 1200px; */
    margin: 0 auto;
    gap: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fad0c4 100%);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.info-card {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.info-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.info-content h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.info-content p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

/* Footer Section  */

footer {
    background: linear-gradient(135deg, #ff6f3d 0%, #ff9a9e 100%);
    padding: 50px 20px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    animation: rotate 6s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.footer-nav li {
    display: inline;
}

.footer-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s, transform 0.3s;
    box-shadow: 5px 5px 10px #e04040, -5px -5px 10px #FF754A;
    padding: 10px 20px;
    border-radius: 10px;
}

.footer-nav a:hover {
    color: #333;
    transform: scale(1.2);
}

footer p {
    margin: 10px 0;
    color: #fff;
    font-size: 16px;
}

footer p a {
    color: #fff;
    text-decoration: none;
    box-shadow: 5px 5px 10px #e04040, -5px -5px 10px #FF754A;
    padding: 5px 10px;
    border-radius: 5px;
    transition: color 0.3s, box-shadow 0.3s;
}

footer p a:hover {
    color: #333;
    box-shadow: inset 5px 5px 10px #e04040, inset -5px -5px 10px #FF754A;
}

.social-media {
    margin: 30px 0;
}

.social-media a {
    text-decoration: none;
    color: #fff;
    font-size: 28px;
    margin: 0 15px;
    transition: color 0.3s, transform 0.3s;
    box-shadow: 5px 5px 10px #e04040, -5px -5px 10px #FF754A;
    padding: 10px;
    border-radius: 50%;
}

.social-media a:hover {
    color: #333;
    transform: scale(1.3);
    box-shadow: inset 5px 5px 10px #e04040, inset -5px -5px 10px #FF754A;
}

.footer-description {
    color: #fff;
    font-size: 14px;
    margin-top: 30px;
    max-width: 600px;
    margin: 30px auto;
    opacity: 0.9;
}

.footer-description::before {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #fff;
    margin: 10px auto;
}

.footer-copyright {
    color: #fff;
    font-size: 16px;
    margin-left: 10px;
    /* opacity: 0.8; */
}

.footer-copyright a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s, transform 0.3s;
}

.footer-copyright a:hover {
    color: #333;
    transform: scale(1.1);
}


/* Base Styles (already provided) */

/* Responsive Styles */

/* For Tablets and Small Laptops */
@media (max-width: 1024px) {
    .navbar {
        padding: 5px 15px;
    }

    .logo img {
        height: 6vw;
        width: 8vw;
        margin-left: 3vw;
    }

    .nav-links li {
        margin: 0 15px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .order-online-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .circle-container {
        width: 650px;
        height: 650px;
    }

    .inner-circle {
        width: 450px;
        height: 450px;
        margin-top: -225px;
        margin-left: -225px;
    }

    .pizza-type {
        transform-origin: center center;
    }

    .pizza-type:nth-child(1) { transform: rotate(0deg) translate(270px) rotate(0deg); }
    .pizza-type:nth-child(2) { transform: rotate(30deg) translate(270px) rotate(-30deg); }
    .pizza-type:nth-child(3) { transform: rotate(60deg) translate(270px) rotate(-60deg); }
    .pizza-type:nth-child(4) { transform: rotate(90deg) translate(270px) rotate(-90deg); }
    .pizza-type:nth-child(5) { transform: rotate(120deg) translate(270px) rotate(-120deg); }
    .pizza-type:nth-child(6) { transform: rotate(150deg) translate(270px) rotate(-150deg); }
    .pizza-type:nth-child(7) { transform: rotate(180deg) translate(270px) rotate(-180deg); }
    .pizza-type:nth-child(8) { transform: rotate(210deg) translate(270px) rotate(-210deg); }
    .pizza-type:nth-child(9) { transform: rotate(240deg) translate(270px) rotate(-240deg); }
    .pizza-type:nth-child(10) { transform: rotate(270deg) translate(270px) rotate(-270deg); }
    .pizza-type:nth-child(11) { transform: rotate(300deg) translate(270px) rotate(-300deg); }
    .pizza-type:nth-child(12) { transform: rotate(330deg) translate(270px) rotate(-330deg); }


    .arrow {
        width: 220px; /* Adjusted length of the arrow */
        height: 1.5px;
    }

    .order-now-btn {
        padding: 12px 25px;
        font-size: medium;
    }

    .location-searchbar {
        margin-bottom: 20px;
    }

    .search-bar {
        width: 500px;
    }

    .locations-section {
        padding: 40px 10px;
    }

    .location-selector ul {
        gap: 10px;
    }

    .location-selector ul li {
        font-size: 14px;
    }

    .location-circle {
        width: 10px;
        height: 10px;
    }

    .info-section {
        flex-direction: column;
        gap: 30px;
    }

    .info-card {
        width: 90%;
        margin: 0 auto;
    }

    .banner-content {
        flex-direction: column;
    }

    .text-content {
        max-width: 100%;
        text-align: center;
    }

    .text-content h1 {
        font-size: 2.5em;
    }

    .text-content h2 {
        font-size: 1.5em;
    }

    .text-content p {
        font-size: 1em;
    }

    .image-content {
        max-width: 90%;
    }

    .footer-container {
        padding: 20px 0;
    }

    .footer-nav {
        gap: 20px;
    }

    .social-media a {
        font-size: 24px;
        margin: 0 10px;
    }
}

/* For Mobile Devices */
@media (max-width: 768px) {
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px 10px; /* Slightly increased padding for a softer look */
        background-color: #f5f5f5;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), /* Soft shadow */
                    0 2px 4px rgba(0, 0, 0, 0.05); /* Inner shadow */
    }

    .logo img {
        height: 4vw;
        width: 5vw;
        margin-left: 4vw;
    }
    
    .nav-links {
        display: flex;
        list-style: none;
    }
    
    .nav-links li {
        margin: 0 20px;
    }
    
    .nav-links a {
        text-decoration: none;
        color: #000;
        font-weight: bold;
        font-size: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: color 0.3s;
    }
    .order-online-btn {
        padding: 3px 5px;
        font-size: 5px;
        margin-right: 0;
    }

    .circle-container {
        width: 400px;
        height: 400px;
    }

    .inner-circle {
        width: 300px;
        height: 300px;
        margin-top: -150px;
        margin-left: -150px;
    }

    .pizza-type {
        transform-origin: center center;
    }

    .pizza-type:nth-child(1) { transform: rotate(0deg) translate(180px) rotate(0deg); }
    .pizza-type:nth-child(2) { transform: rotate(30deg) translate(180px) rotate(-30deg); }
    .pizza-type:nth-child(3) { transform: rotate(60deg) translate(180px) rotate(-60deg); }
    .pizza-type:nth-child(4) { transform: rotate(90deg) translate(180px) rotate(-90deg); }
    .pizza-type:nth-child(5) { transform: rotate(120deg) translate(180px) rotate(-120deg); }
    .pizza-type:nth-child(6) { transform: rotate(150deg) translate(180px) rotate(-150deg); }
    .pizza-type:nth-child(7) { transform: rotate(180deg) translate(180px) rotate(-180deg); }
    .pizza-type:nth-child(8) { transform: rotate(210deg) translate(180px) rotate(-210deg); }
    .pizza-type:nth-child(9) { transform: rotate(240deg) translate(180px) rotate(-240deg); }
    .pizza-type:nth-child(10) { transform: rotate(270deg) translate(180px) rotate(-270deg); }
    .pizza-type:nth-child(11) { transform: rotate(300deg) translate(180px) rotate(-300deg); }
    .pizza-type:nth-child(12) { transform: rotate(330deg) translate(180px) rotate(-330deg); }

    .arrow {
        width: 150px; /* Adjusted length of the arrow */
        height: 1.5px;
    }

    .order-now-btn {
        padding: 10px 20px;
        font-size: small;
    }

    .location-searchbar {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .search-bar {
        width: 90%;
    }

    .locations-section {
        padding: 20px 5px;
    }

    .locations-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .location-selector {
        width: 100%;
        margin-bottom: 20px;
    }

    .location-details {
        flex-direction: column;
        align-items: flex-start;
    }

    .delivery-guy img {
        width: 100%;
    }

    .location-map {
        margin-top: 20px;
        margin-left: 0;
        height: 200px;
    }

    .left-line {
        left: 25px;
    }

    .right-line {
        right: 25px;
    }

    .menu-section h1 {
        font-size: 2em;
    }

    .menu-categories {
        flex-direction: column;
        gap: 20px;
    }

    .menu-cards {
        flex-direction: column;
        gap: 30px;
    }

    .menu-card {
        width: 90%;
        margin: 0 auto;
    }

    .banner {
        padding: 10px;
    }

    .glass-card {
        padding: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .text-content h1 {
        font-size: 2.5em;
    }

    .text-content h2 {
        font-size: 1.5em;
    }

    .text-content p {
        font-size: 1em;
    }

    .order-btn {
        font-size: 1em;
        padding: 12px 20px;
    }

    .footer-container {
        padding: 10px 0;
    }

    .footer-container p{
        margin-bottom: 10px;
        margin-top: 10px;
        font-size: 1em;
    }

    .footer-nav {
        flex-direction: column;
        gap: 51px;
    }

    .social-media {
        flex-direction: column;
        gap: 15px;
    }

    .footer-description {
        font-size: 12px;
    }

    .footer-copyright {
        margin-top: 20px;
        font-size: 14px;
    }
}

/* For Small Mobile Devices */
@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 5px 10px;
    }

    .logo img {
        height: 4vw;
        width: 5vw;
        margin-left: 4vw;
    }
    
    .nav-links {
        display: flex;
        list-style: none;
    }
    
    .nav-links li {
        margin: 0 10px;
    }
    
    .nav-links a {
        text-decoration: none;
        color: #000;
        font-weight: bold;
        font-size: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: color 0.3s;
    }
    .order-online-btn {
        padding: 3px 5px;
        font-size: 5px;
        margin-right: 0;
    }

    .circle-container {
        width: 300px;
        height: 300px;
    }

    .inner-circle {
        width: 200px;
        height: 200px;
        margin-top: -100px;
        margin-left: -100px;
    }

    .pizza-type {
        font-size: 0.8em; /* Smaller font size for small screens */
    }

    .pizza-type {
        transform: translate(120px) rotate(0deg); /* Adjust translate value */
    }
    .pizza-type:nth-child(2) {
        transform: rotate(30deg) translate(120px) rotate(-30deg);
    }
    .pizza-type:nth-child(3) {
        transform: rotate(60deg) translate(120px) rotate(-60deg);
    }
    .pizza-type:nth-child(4) {
        transform: rotate(90deg) translate(120px) rotate(-90deg);
    }
    .pizza-type:nth-child(5) {
        transform: rotate(120deg) translate(120px) rotate(-120deg);
    }
    .pizza-type:nth-child(6) {
        transform: rotate(150deg) translate(120px) rotate(-150deg);
    }
    .pizza-type:nth-child(7) {
        transform: rotate(180deg) translate(120px) rotate(-180deg);
    }
    .pizza-type:nth-child(8) {
        transform: rotate(210deg) translate(120px) rotate(-210deg);
    }
    .pizza-type:nth-child(9) {
        transform: rotate(240deg) translate(120px) rotate(-240deg);
    }
    .pizza-type:nth-child(10) {
        transform: rotate(270deg) translate(120px) rotate(-270deg);
    }
    .pizza-type:nth-child(11) {
        transform: rotate(300deg) translate(120px) rotate(-300deg);
    }
    .pizza-type:nth-child(12) {
        transform: rotate(330deg) translate(120px) rotate(-330deg);
    }

    .arrow {
        width: 100px; /* Adjusted length of the arrow */
    }

    .order-now-btn {
        padding: 8px 15px;
        font-size: x-small;
    }

    .location-searchbar {
        margin-bottom: 15px;
    }

    .search-bar {
        width: 100%;
    }

    .location-selector ul {
        flex-direction: column;
        gap: 5px;
    }

    .locations-section {
        padding: 15px 5px;
    }

    .left-line {
        left: -1px;
    }

    .right-line{
        right: -1px;
    }
    .menu-section h1 {
        font-size: 1.8em;
    }

    .menu-cards {
        gap: 15px;
    }

    .menu-card {
        width: 100%;
    }

    .banner-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-container p {
        font-size: 0.8em;
    }

    .footer-nav {
        gap: 51px;
    }

    .footer-description {
        font-size: 8px;
    }

    .footer-copyright {
        font-size: 10px;
    }
}
@media (max-width: 375px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 5px 10px;
    }

    .logo img {
        height: 4vw;
        width: 5vw;
        margin-left: 4vw;
    }
    
    .nav-links {
        display: flex;
        list-style: none;
    }
    
    .nav-links li {
        margin: 0 10px;
    }
    
    .nav-links a {
        text-decoration: none;
        color: #000;
        font-weight: bold;
        font-size: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: color 0.3s;
    }
    .order-online-btn {
        padding: 3px 5px;
        font-size: 5px;
        margin-right: 0;
    }

    .circle-container {
        width: 300px;
        height: 300px;
    }

    .inner-circle {
        width: 200px;
        height: 200px;
        margin-top: -100px;
        margin-left: -100px;
    }

    .pizza-type {
        font-size: 0.8em; /* Smaller font size for small screens */
    }

    .pizza-type {
        transform: translate(120px) rotate(0deg); /* Adjust translate value */
    }
    .pizza-type:nth-child(2) {
        transform: rotate(30deg) translate(120px) rotate(-30deg);
    }
    .pizza-type:nth-child(3) {
        transform: rotate(60deg) translate(120px) rotate(-60deg);
    }
    .pizza-type:nth-child(4) {
        transform: rotate(90deg) translate(120px) rotate(-90deg);
    }
    .pizza-type:nth-child(5) {
        transform: rotate(120deg) translate(120px) rotate(-120deg);
    }
    .pizza-type:nth-child(6) {
        transform: rotate(150deg) translate(120px) rotate(-150deg);
    }
    .pizza-type:nth-child(7) {
        transform: rotate(180deg) translate(120px) rotate(-180deg);
    }
    .pizza-type:nth-child(8) {
        transform: rotate(210deg) translate(120px) rotate(-210deg);
    }
    .pizza-type:nth-child(9) {
        transform: rotate(240deg) translate(120px) rotate(-240deg);
    }
    .pizza-type:nth-child(10) {
        transform: rotate(270deg) translate(120px) rotate(-270deg);
    }
    .pizza-type:nth-child(11) {
        transform: rotate(300deg) translate(120px) rotate(-300deg);
    }
    .pizza-type:nth-child(12) {
        transform: rotate(330deg) translate(120px) rotate(-330deg);
    }

    .arrow {
        width: 100px; /* Adjusted length of the arrow */
    }

    .order-now-btn {
        padding: 8px 15px;
        font-size: x-small;
    }

    .location-section {
        padding: 10px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-image: url('../locationbg.png');
        background-size: cover;
        background-position: center;
        width: screen-width;
    }

    .location-searchbar {
        width: screen;
        flex-direction: column;
        margin-bottom: 30px;
    }
    .search-bar {
        width: 70%;
        position: relative;
    }

    .location-selector ul {
        flex-direction: column;
        gap: 5px;
    }

    .locations-section {
        padding: 15px 5px;
    }

    .order-btn{
        padding: 3px 5px;
        font-size: 16px;
        top: 113%;
        left: 26%;
        position: absolute;
    }

    .left-line {
        left: -1px;
    }

    .right-line{
        right: -1px;
    }
    .menu-section h1 {
        font-size: 1.8em;
    }

    .menu-cards {
        gap: 15px;
    }

    .menu-card {
        width: 100%;
    }

    .banner-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-container p {
        font-size: 0.8em;
    }

    .footer-nav {
        gap: 51px;
    }

    .footer-description {
        font-size: 8px;
    }

    .footer-copyright {
        font-size: 10px;
    }
}
