/*
Theme Name: Jahmakin
Theme URI: https://jahmakin.overnitewebsites.com/
Author: Jahmakin
Author URI: https://example.com
Description: Jahmakin — clean, starter WordPress theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jahmakin
Tags: custom-logo, custom-menu, featured-images, translation-ready, responsive-layout
*/

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

body {
    font-family: 'Kumbh Sans', sans-serif;
    color: #333;
    overflow-x: hidden;
}
 /* global.scss */
html, body, #root {
  overflow-x: hidden;          /* stop sideways scrolling */
  -webkit-overflow-scrolling: touch;
}
/* Limit touch-action so browser doesn't interpret two-finger/sideways gestures.
   pan-y allows vertical scrolling but prevents horizontal (on supported browsers). */
body, #root {
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}
 
/* Optional: disable built-in double-tap selection behavior */
* {
  -webkit-user-drag: none;
  -webkit-user-select: none;
}
h1,
h2,
h3 {
    font-family: 'Changa One', cursive;
}

/* Navigation */
.navbar {
    background: #000;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background: rgba(0, 0, 0, 0.9);
}

.navbar .logo {
    height: 50px;
    width: auto;
}

.navbar-nav {
    gap: 2rem;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFD700 !important;
}

.btn-order {
    background: #DFCA16;
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-order:hover {
    background: #c9b614;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(223, 202, 22, 0.3);
    color: #000;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    position: relative;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 3px 2px 0px #038F42;
    letter-spacing: 2px;
}

.hero-text {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.btn-hero {
    background: #DFCA16;
    color: #000;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero:hover {
    background: #c9b614;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(223, 202, 22, 0.4);
    color: #000;
}

.arrow-icon {
    font-size: 20px;
    font-weight: bold;
}

.btn-arrow {
    width: 30px;
    height: 30px;
    /* filter: brightness(0); */
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    top: -130px;
    left: 0;
    right: 0;
    z-index: 3;
    width: 100%;
    overflow: hidden;
}

.ourstory-container {
    position: relative;
    ;
    z-index: 999;
}

.wave-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Egg Badge */
.hero-egg-badge {
    position: absolute;
    bottom: 60px;
    right: 300px;
    z-index: 4;
    animation: float 3s ease-in-out infinite;
}

.egg-badge-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.egg-text {
    position: absolute;
    top: -30px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    transform: rotate(-15deg);
}

.egg-image {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Custom Carousel Controls */
.custom-carousel-btn {
    /* position: absolute; */
    /* bottom: 60px; */
    /* background: rgba(255, 255, 255, 0.2); */
    /* backdrop-filter: blur(10px); */
    /* border: 2px solid rgba(255, 255, 255, 0.3); */
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    z-index: 10;
}

.carousel-control-prev.custom-carousel-btn {
    right: 140px;
    left: auto;
}

.carousel-control-next.custom-carousel-btn {
    right: 60px;
}

.custom-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.custom-carousel-btn img {
    width: 50px;
    height: 50px;
}

/* Our Story Section */
.our-story-section {
    padding: 150px 0 100px 0;
    position: relative;
}

.our-story-section1 {
    padding: 80px 0 150px 0;
    position: relative;
}

.cream-bg {
    background: #FFFAD2;
}

.green-bg {
    background: #038F42;
}

.yelloe-bg {
    background-color: #FDD04A !important;
}

.section-title {
    font-size: 3.7rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.story-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.flower-rating {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.flower-icon {
    width: 20px;
    height: 20px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.1rem;
    color: #555;
    max-width: 600px;
}

.text-white {
    color: white !important;
}

.text-center {
    text-align: center;
}

.story-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
}

.green-story-content {
    max-width: 700px;
    padding-right: 20px;
}

.story-image-wrapper-green {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.story-tide-character {
    width: 100%;
    max-width: 350px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.building-decoration {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
}

.building-image-green {
    width: 100%;
    height: 775px;
    /* animation: float 3s ease-in-out infinite 0.5s; */
}

.story-author {
    margin-top: 1rem;
}

.author-name {
    font-family: 'Joti One', cursive;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    color: #405E23;
}

.author-title {
    font-family: 'Geist', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #777;
}

.taco-character {
    position: absolute;
    right: 50px;
    /* bottom: 0px; */
    width: 250px;
    height: auto;
    /* animation: float 3s ease-in-out infinite; */
    z-index: 10;
}

.btn-read-more {
    background: #DFCA16;
    color: #000;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: none;
}

.btn-read-more:hover {
    background: #c9b614;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(223, 202, 22, 0.4);
    color: #000;
}

/* Menu Categories Section */
.menu-categories-section {
    padding: 80px 0;
    background: white;
    margin-bottom: 100px;
}

.menu-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 45px 20px;
    justify-content: space-between;
}

.badge-with-flower {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    /* border: 2px solid #000; */
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'Joti One', cursive;
    font-weight: 700;

}

/* .badge-with-flower:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
} */

.green-flower {
    width: 16px;
    height: 16px;
}

.menu-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #0F1C02;

}

.menu-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Menu Flavor Cards */
.menu-flavor-card {
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* height: 100%; */
    position: relative;
}

.menu-flavor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.menu-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.menu-card-content {
    padding: 25px;
    min-height: 300px;
    position: relative;
}

.menu-card-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
}

.menu-card-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.menu-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 13px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* .menu-item:hover {
    background: rgba(255, 255, 255, 0.4);
} */

/* Card Color Variations with Gradient Fading */
.yellow-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -164px;
    right: 0;
    bottom: 0;
    background: linear-gradient(215deg, rgba(247, 247, 247, 0.9) 0%, rgba(209, 179, 179, 0.7) 0%, rgb(255, 255, 255, 0.4) 37%, rgb(26, 26, 26, 0.3) 50%, rgb(26, 26, 26, 0.7) 78%, #00000000 100%);
    pointer-events: none;
    z-index: 1;
}

.yellow-card .menu-card-content {
    /* background: #1a1a1a; */
    color: white;
    position: absolute;
    z-index: 999;
    bottom: 0px;
}

.green-card-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: -164px;
    right: 0;
    bottom: 0;
    background: linear-gradient(215deg, rgba(247 247 247 / 90%) 0%, rgba(209 179 179 / 122%) 0%, rgb(124 3 3 / -47%) 41%, rgb(0 255 162) 50%, rgb(10 247 161) 78%, #019144 100%);
    pointer-events: none;
    z-index: 1;
}

.green-card-menu .menu-card-content {
    /* background: #00A86B; */
    color: white;
    position: absolute;
    z-index: 999;
    bottom: 0px;
}

.red-card-menu::after {
    content: '';
    position: absolute;
    top: 0px;
    left: -164px;
    right: 0;
    bottom: 0;
    background: linear-gradient(215deg, rgb(247 247 247 / 90%) 0%, rgb(209 179 179 / 122%) 0%, rgb(124 3 3 / -47%) 41%, rgb(255 0 51 / 100%) 50%, rgb(255 0 51 / 100%) 78%, #DC143C 100%);
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.red-card-menu .menu-card-content {
    /* background: #DC143C; */
    color: white;
    position: absolute;
    z-index: 999;
    bottom: 0px;
}

/* Contact Section */
.contact-section {
    padding: 0px 0px 60px 0px;
    background: #FFF8DC;
    position: relative;
}

.contact-form-wrapper {
    max-width: 500px;
}

.contact-subtitle {
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Kumbh Sans', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-control::placeholder {
    color: #999;
}

.btn-submit {
    background: #2d2d2d;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.contact-image-wrapper {
    position: relative;
    text-align: center;
}

.contact-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-character-wrapper {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 5;
}

.contact-character {
    width: 180px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

/* New Contact Section Styling */
.contact-wave-top {
    position: absolute;
    top: -128px;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    /* transform: scaleY(-1); */
}

.contact-wave-image {
    width: 100%;
    height: auto;
    display: block;
}

.contact-container {
    position: relative;
    z-index: 2;
    padding: 60px 0 0px;
}

.cooker-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.cooker-bg-img {
    width: 500px;
    height: auto;
}

.contact-form-wrapper-new {
    /* background: rgba(255, 255, 255, 0.1); */
    border: 1px solid white;
    border-radius: 30px;
    padding: 110px 60px;
    /* max-width: 500px; */
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
    text-align: center;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-new {
    width: 100%;
}

.form-group-new label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    font-family: 'Kumbh Sans', sans-serif;
}

.form-input::placeholder {
    color: #999;
}

.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    font-family: 'Kumbh Sans', sans-serif;
    resize: vertical;
}

.form-textarea::placeholder {
    color: #999;
}

.btn-send-message {
    background: #000;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    width: 100%;
}

.btn-send-message:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.contact-dishes-wrapper {
    text-align: center;
    width: 100%;
    height: 850px;
}

.contact-dishes-image {
    width: 100%;
    /* max-width: 500px; */
    /* border-radius: 20px; */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    height: 100%;
    object-fit: cover;
}

.bread-character-bottom {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.bread-character-img {
    width: 212px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.bread-text {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) rotate(-10deg);
    font-size: 1.1rem;
    font-weight: 700;
    color: #DC143C;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: #FFF8DC;
}

.blog-card {
    background: white;
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #05612E;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.75rem;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.4;
    color: #333;
    font-family: "Geist", sans-serif;
}

/* Visit Section */
.visit-section {
    padding: 100px 0;
    background: white;
}

.visit-content {
    padding-right: 40px;
}

.visit-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
    font-family: 'Changa One', cursive;
}

.visit-address {
    font-size: 0.95rem;
    font-weight: 600;
    color: #202020;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.visit-tagline {
    font-size: 1rem;
    color: #202020;
    margin-bottom: 2rem;
}

.btn-view-directions {
    background: #FDD04A;
    color: #000;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-view-directions:hover {
    background: #DFCA16;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 208, 74, 0.4);
    color: #000;
}

.btn-view-directions svg {
    width: 20px;
    height: 20px;
}

.visit-map-section {
    position: relative;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.map-container {
    flex: 1;
    height: 453px;

}

.location-map-image {
    width: 100%;
    height: 460px;
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
}

.visit-images-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.visit-images {
    width: 100%;
    height: auto;
    border-radius: 12px;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */
}

/* Footer */
.footer {
    background: #0F1C02;
    padding: 0;
    text-align: center;
    color: white;
    position: relative;
}

.footer-top {
    padding: 40px 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0;
}

.social-icon {
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.footer-link:hover {
    color: #FDD04A;
    text-decoration: none;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    margin: 15px 0 0;
    font-size: 0.85rem;
}

.footer-bottom {
    /* background: linear-gradient(180deg, #0a2d0f 0%, #041509 100%); */
    padding: 40px 0 0px 0px;
    margin-top: 20px;
}

.footer-logo {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-img {
    height: 550px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}


.same-btn {
    background-color: #DECA11;
    color: #000;
    padding: 16px 18px 19px 17px;
    border-radius: 40px;
    text-decoration: auto;
    font-size: 16px;
    font-weight: 600;
}

.same-btn img {
    margin-right: 7px;
}

/* Navbar Order Button */
.navbar-order-btn {
    margin-left: 2rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 13px 18px 13px 17px !important;
}

.navbar-order-btn:hover {
    background-color: #c9b614;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(222, 202, 17, 0.3);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .carousel-item {
        height: 80vh;
        min-height: 500px;
    }

    .hero-content {
        padding-top: 80px;
    }

    .our-story-section {
        padding: 100px 0 60px 0;
    }

    .our-story-section1 {
        padding: 60px 0 100px 0;
    }

    .categories-section {
        padding: 60px 0;
    }

    .contact-section {
        padding: 0px 0px 40px 0px;
    }

    .blog-section {
        padding: 60px 0;
    }

    .visit-section {
        padding: 60px 0;
    }

    .taco-character {
        width: 180px;
        right: 30px;
    }

    .contact-character {
        display: none;
    }

    .custom-carousel-btn {
        bottom: 40px;
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev.custom-carousel-btn {
        right: 110px;
    }

    .carousel-control-next.custom-carousel-btn {
        right: 40px;
    }

    .custom-carousel-btn img {
        width: 20px;
        height: 20px;
    }

    .hero-egg-badge {
        bottom: 100px;
        right: 50px;
    }

    .egg-image {
        width: 100px;
    }

    .egg-text {
        font-size: 1rem;
        top: -25px;
    }

    .building-image-green {
        width: 100%;
        height: 600px;
    }

    .contact-form-wrapper-new {
        padding: 60px 40px;
    }

    .menu-main-title {
        font-size: 2.5rem;
    }

    .visit-title {
        font-size: 3rem;
    }

    .visit-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .visit-map-section {
        flex-direction: column;
    }

    .visit-images-wrapper {
        flex-direction: row;
        width: 100%;
    }

    .location-map-image {
        height: 350px;
    }

    .about-banner-title {
        font-size: 4rem !important;
    }

    .ethos-title,
    .impact-title,
    .being-better-title {
        font-size: 2.5rem;
    }

    .ethos-image-wrapper {
        margin-top: 30px;
    }

    .impact-image {
        margin-bottom: 30px;
    }

    .menu-section-title {
        font-size: 2.5rem;
    }

    .menu-hero-image {
        height: 300px;
    }

    .menu-bowl-image {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 767px) {

    .menu-gallery-image {
        height: 100% !important;
    }

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

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

    .hero-text {
        font-size: 0.95rem;
    }

    .carousel-item {
        height: 70vh;
        min-height: 450px;
    }

    .hero-content {
        padding-top: 60px;
    }

    .navbar-nav {
        gap: 1rem;
        margin-top: 1rem;
    }

    .btn-order {
        margin-top: 1rem;
    }

    .same-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .category-badges {
        justify-content: center;
    }

    .menu-badges {
        padding: 30px 10px;
        gap: 10px;
    }

    .badge-with-flower {
        font-size: 12px;
        padding: 6px 15px;
    }

    .custom-carousel-btn {
        display: none;
    }

    .hero-egg-badge {
        bottom: 80px;
        right: 20px;
    }

    .egg-image {
        width: 80px;
    }

    .egg-text {
        font-size: 0.85rem;
        top: -20px;
    }

    .contact-character-wrapper {
        display: none;
    }

    .flavor-card {
        min-height: auto;
    }

    .our-story-section {
        padding: 100px 0 40px 0;
    }

    .our-story-section1 {
        padding: 40px 0 80px 0;
    }

    .story-image {
        margin-bottom: 30px;
    }

    .building-image-green {
        height: 500px;
    }

    .taco-character {
        display: none;
    }

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

    .menu-card-title {
        font-size: 2rem;
    }

    .menu-flavor-card {
        margin-bottom: 30px;
    }

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

    .contact-form-wrapper-new {
        padding: 40px 30px;
        margin-bottom: 30px;
    }

    .contact-wave-top {
        top: -100px;
    }

    .bread-character-img {
        width: 150px;
    }

    .visit-title {
        font-size: 2.5rem;
    }

    .visit-map-section {
        gap: 10px;
    }

    .location-map-image {
        height: 250px;
    }

    .visit-images {
        height: 120px;
        object-fit: cover;
    }

    .footer-logo-img {
        height: 250px;
    }

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

    .about-banner-section {
        height: 60vh;
        min-height: 400px;
    }

    .about-banner-title {
        font-size: 3rem !important;
    }

    .ethos-title,
    .impact-title,
    .being-better-title {
        font-size: 2rem;
    }

    .food-ethos-section,
    .our-impact-section,
    .being-better-section {
        padding: 60px 0;
    }

    .ethos-intro,
    .impact-text {
        font-size: 1rem;
    }

    .marquee-content span {
        font-size: 1.2rem;
        padding: 0 30px;
    }

    .being-better-icon {
        width: 80px;
        height: 80px;
    }

    .being-better-icon svg {
        width: 40px;
        height: 40px;
    }

    .menu-section {
        padding: 60px 0;
    }

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

    .menu-hero-image {
        height: 250px;
    }

    .menu-bowl-image {
        width: 150px;
        height: 150px;
    }

    .menu-bowl-name {
        font-size: 1.3rem;
    }

    .menu-item-name {
        font-size: 1.1rem;
    }

    /*  .menu-gallery-image {
        height: 400px !important;
    }*/
}

@media (max-width: 680px) {
    .menu-wave-bottom {
        bottom: 0px;
        top: unset !important;
    }

    .careers-wave-bottom {
        bottom: 0px;
        top: unset !important;
    }
}

@media (max-width: 600px) {

    /* Global resets for small screens */
    body {
        overflow-x: hidden;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Navigation */
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar .logo {
        height: 40px;
    }

    .navbar-nav {
        gap: 0.5rem;
        margin-top: 1rem;
        padding-bottom: 1rem;
    }

    .nav-link {
        font-size: 13px;
        padding: 0.5rem 0;
    }

    .navbar-order-btn {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
        padding: 12px 16px !important;
    }

    /* Hero Section */
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .hero-text {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .carousel-item {
        height: 55vh;
        min-height: 350px;
    }

    .hero-content {
        padding-top: 50px;
    }

    .hero-egg-badge {
        bottom: 60px;
        right: 10px;
    }

    .egg-image {
        width: 60px;
    }

    .egg-text {
        font-size: 0.75rem;
        top: -15px;
    }

    .custom-carousel-btn {
        display: none;
    }

    .btn-arrow {
        width: 24px;
        height: 24px;
    }

    .same-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 14px;
        padding: 14px 16px;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    /* Our Story Section */
    .our-story-section {
        padding: 80px 0 30px 0;
    }

    .our-story-section1 {
        padding: 30px 0 60px 0;
    }

    .story-image {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .story-content-wrapper {
        padding: 10px;
    }

    .story-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .author-name {
        font-size: 1.2rem;
    }

    .author-title {
        font-size: 14px;
    }

    .taco-character {
        display: none;
    }

    .building-image-green {
        height: 450px;
    }

    .hero-wave {
        top: -80px;
    }

    /* Menu Badges */
    .menu-badges {
        flex-direction: column;
        align-items: center;
        padding: 20px 10px;
        gap: 8px;
    }

    .badge-with-flower {
        width: 100%;
        max-width: 220px;
        justify-content: center;
        font-size: 11px;
        padding: 6px 12px;
    }

    .green-flower {
        width: 14px;
        height: 14px;
    }

    /* Menu Main Title */
    .menu-main-title {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .menu-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    /* Menu Flavor Cards */
    .menu-flavor-card {
        margin-bottom: 20px;
    }

    .menu-card-title {
        font-size: 1.8rem;
    }

    .menu-card-content {
        min-height: auto;
        padding: 18px;
    }

    .menu-item {
        font-size: 12px;
        padding: 6px 10px;
    }

    /* Contact Section */
    .contact-section {
        padding: 0px 0px 30px 0px;
    }

    .contact-wave-top {
        top: -60px;
    }

    .contact-container {
        padding: 40px 0 0px;
    }

    .contact-form-wrapper-new {
        padding: 25px 15px;
        margin-bottom: 20px;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .contact-subtitle {
        font-size: 0.9rem;
    }

    .form-input,
    .form-textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .btn-send-message {
        padding: 12px 30px;
        font-size: 14px;
    }

    .contact-dishes-image {
        max-width: 100%;
    }

    .bread-character-img {
        width: 120px;
    }

    .cooker-bg-img {
        width: 350px;
    }

    /* Blog Section */
    .blog-section {
        padding: 50px 0;
    }

    .blog-card {
        margin-bottom: 20px;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    /* Visit Section */
    .visit-section {
        padding: 50px 0;
    }

    .visit-title {
        font-size: 1.8rem;
    }

    .visit-address {
        font-size: 0.85rem;
    }

    .visit-tagline {
        font-size: 0.9rem;
    }

    .btn-view-directions {
        width: 100%;
        justify-content: center;
        font-size: 14px;
    }

    .location-map-image {
        height: 220px;
    }

    .visit-images {
        height: 100px;
        object-fit: cover;
    }

    .visit-map-section {
        gap: 8px;
    }

    /* Footer */
    .footer-logo-img {
        height: 200px;
    }

    .footer-links {
        gap: 20px;
        font-size: 0.85rem;
    }

    .copyright {
        font-size: 0.8rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon img {
        width: 18px;
        height: 18px;
    }

    /* About Page */
    .about-banner-section {
        height: 50vh;
        min-height: 350px;
    }

    .about-banner-title {
        font-size: 2.2rem !important;
    }

    .about-wave-top {
        top: -60px !important;
        margin-bottom: -100px !important;
    }

    .food-ethos-section,
    .our-impact-section,
    .being-better-section {
        padding: 50px 0;
    }

    .ethos-title,
    .impact-title,
    .being-better-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .ethos-intro,
    .impact-text {
        font-size: 0.95rem;
    }

    .ethos-list li {
        font-size: 0.85rem;
    }

    .btn-green,
    .btn-green-outline {
        width: 100%;
        text-align: center;
        font-size: 13px;
        padding: 12px 25px;
    }

    .ethos-image,
    .impact-image {
        max-width: 100%;
    }

    .marquee-content span {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .being-better-icon {
        width: 70px;
        height: 70px;
    }

    .being-better-icon svg {
        width: 35px;
        height: 35px;
    }

    .being-better-text {
        font-size: 0.85rem;
    }

    /* Menu Page */
    .menu-hero-image {
        height: 180px;
    }

    /* .menu-wave-bottom {
        height: 50px;
        top: 130px;
    } */

    .menu-section {
        padding: 30px 0;
    }

    .menu-section-title {
        font-size: 1.5rem;
    }

    .menu-bowl-image {
        width: 140px;
        height: 140px;
    }

    .menu-bowl-name {
        font-size: 1.2rem;
    }

    .menu-bowl-desc {
        font-size: 0.85rem;
    }

    .menu-item-name {
        font-size: 1rem;
    }

    .menu-item-cal {
        font-size: 0.8rem;
    }

    .menu-footer-note {
        padding: 30px 0;
    }

    .menu-footer-note .same-btn {
        width: 100%;
        display: flex;
        margin: 8px auto;
        justify-content: center;
    }

    /* .menu-gallery-image {
        height: 150px !important;
    }*/
}

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

    .section-title {
        font-size: 1.5rem;
    }

    .menu-main-title {
        font-size: 1.7rem;
    }

    .carousel-item {
        height: 60vh;
        min-height: 400px;
    }

    /* .about-wave-top {
        bottom: 0px;
        top:unset !important;
    } */

    .contact-form-wrapper-new {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 1.7rem;
    }

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

    .menu-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge-with-flower {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .hero-wave {
        top: -100px;
    }

    .contact-wave-top {
        top: -80px;
    }

    .about-banner-title {
        font-size: 2.5rem !important;
    }

    .ethos-title,
    .impact-title,
    .being-better-title {
        font-size: 1.7rem;
    }

    .marquee-content span {
        font-size: 1rem;
        padding: 0 20px;
    }

    .btn-green,
    .btn-green-outline {
        width: 100%;
        text-align: center;
    }

    .menu-section-title {
        font-size: 1.7rem;
    }

    .menu-hero-image {
        height: 200px;
    }

    /* .menu-wave-bottom {
        height: 60px;
    } */

    .menu-section {
        padding: 40px 0;
    }

    .menu-footer-note {
        padding: 40px 0;
    }

    .menu-footer-note .same-btn {
        width: 100%;
        display: flex;
        margin: 10px auto;
        justify-content: center;
    }

    /*.menu-gallery-image {
        height: 100px !important;
    }*/
}

@media (max-width: 475px) {
    .locations-section {
        padding: 0px 20px !important;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: #FFD700;
    color: #000;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.g-4 {
    gap: 2rem;
}

/* About Page Styles */
/* Banner Section */
.about-banner-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-image: url('assets/images/placeholder.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.about-wave-top {
    position: relative;
    top: -130px;
    left: 0;
    right: 0;
    z-index: 3;
    width: 100%;
    overflow: hidden;
    margin-bottom: -130px;
}

.about-banner-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-banner-title {
    font-family: 'Changa One', cursive;
    font-size: 6rem;
    font-weight: 700;
    color: white;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* Food Ethos Section */
.food-ethos-section {
    background: #C8E6C9;
    padding: 100px 0;
}

.ethos-title {
    font-family: 'Changa One', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C5F2D;
    margin-bottom: 2rem;
}

.ethos-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
}

.ethos-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.ethos-list li {
    font-size: 0.95rem;
    font-weight: 600;
    color: #038F42;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.ethos-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #038F42;
    font-size: 1.5rem;
    line-height: 1;
}

.btn-green {
    background: #038F42;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #038F42;
}

.btn-green:hover {
    background: #027235;
    border-color: #027235;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3, 143, 66, 0.3);
    color: white;
}

.ethos-image-wrapper {
    position: relative;
    text-align: center;
    padding: 20px;
}

.ethos-image {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); */
}

/* Our Impact Section */
.our-impact-section {
    background: #E8F5E9;
    padding: 100px 0;
    position: relative;
}

.impact-wave-top {
    position: absolute;
    top: -128px;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
}

.impact-title {
    font-family: 'Changa One', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C5F2D;
    margin-bottom: 2rem;
}

.impact-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2.5rem;
}

.impact-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.btn-green-outline {
    background: transparent;
    color: #038F42;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #038F42;
    margin-right: 15px;
    margin-bottom: 15px;
}

.btn-green-outline:hover {
    background: #038F42;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3, 143, 66, 0.3);
}

/* Marquee Section */
.marquee-section {
    background: #038F42;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-family: 'Changa One', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    padding: 0 50px;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Being Better Section */
.being-better-section {
    background: #C8E6C9;
    padding: 100px 0;
}

.being-better-title {
    font-family: 'Changa One', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: #038F42;
    text-align: center;
    margin-bottom: 1rem;
}

.being-better-subtitle {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.being-better-card {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
}

.being-better-icon {
    width: 100px;
    height: 100px;
    background: #038F42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.being-better-card:hover .being-better-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(3, 143, 66, 0.4);
}

.being-better-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

/* About Bottom Section */
.about-bottom-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-bottom-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Menu Page Styles */
/* Menu Hero Section */
.menu-hero-section {
    position: relative;
    width: 100%;
    margin-top: 60px;
    overflow: hidden;
}

.menu-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.menu-wave-bottom {
    position: absolute;
    top: 250px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
}

.menu-wave-bottom .wave-image {
    width: 100%;
    display: block;
}

/* Menu Sections */
.menu-section {
    background: #038F42;
    padding: 80px 0;
}

.menu-section-title {
    font-family: 'Changa One', cursive;
    font-size: 3rem;
    font-weight: 700;
    color: #FFFAD2;
    text-align: center;
    margin-bottom: 2rem;
}

.bases-section,
.veggies-section,
.proteins-section,
.sauces-section,
.addons-section,
.drinks-section {
    padding: 40px 0px !important;
}

/* Bowl Cards */
.menu-bowl-card {
    text-align: center;
    margin-bottom: 30px;
}

.menu-bowl-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.menu-bowl-name {
    font-family: 'Joti One', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFAD2;
    margin-bottom: 10px;
}

.menu-bowl-desc {
    font-size: 0.95rem;
    color: #FFFAD2;
    font-weight: 500;
}

/* Menu Item Cards */
.menu-item-card {
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
}

.menu-item-name {
    font-family: 'Joti One', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFAD2;
    margin-bottom: 8px;
}

.menu-item-cal {
    font-size: 0.85rem;
    color: #FFFAD2;
    font-weight: 500;
}

/* Menu Footer Note */
.menu-footer-note {
    background: #038F42;
    padding: 60px 0;
    text-align: center;
}

.menu-note-text {
    font-size: 0.9rem;
    color: #FFFAD2;
    margin-bottom: 15px;
}

.menu-footer-note .same-btn {
    margin: 10px;
    display: inline-flex;
}

/* Menu Gallery */
.menu-gallery-section {
    width: 100%;
}

.menu-gallery-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Careers Page Styles */
/* Careers Hero Section */
.careers-hero-section {
    position: relative;
    width: 100%;
    margin-top: 60px;
    overflow: hidden;
    height: 40vh;
    min-height: 400px;
}

.careers-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.careers-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 28, 2, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.careers-hero-title {
    font-family: 'Changa One', cursive;
    font-size: 6rem;
    font-weight: 700;
    color: #0F1C02;
    text-shadow: 3px 3px 10px rgba(255, 250, 210, 0.5);
    letter-spacing: 3px;
}

.careers-wave-bottom {
    position: absolute;
    top: 273px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.careers-wave-bottom .wave-image {
    width: 100%;
    display: block;
    height: auto;
}

/* Join Our Team Section */
.join-team-section {
    background: #FFFAD2;
    padding: 100px 0;
}

.join-team-title {
    font-family: 'Changa One', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: #0F1C02;
    margin-bottom: 2rem;
}

.join-team-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #0F1C02;
    margin-bottom: 2.5rem;
}

.join-team-video {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.join-team-video-img {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Our Values Section */
.our-values-section {
    background: #C8E6C9;
    padding: 100px 0 0 0;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 20px;
}

.values-subtitle {
    font-size: 1.2rem;
    color: #0F1C02;
    margin-bottom: 1rem;
}

.values-love {
    color: #038F42;
    font-weight: 700;
}

.values-main-title {
    font-family: 'Changa One', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: #0F1C02;
}

.value-card-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.value-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.value-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #C8E6C9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.value-card-image:hover .value-overlay {
    background: rgba(3, 143, 66, 0.85);
}

.value-title {
    font-family: 'Changa One', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0F1C02;
    text-align: center;
    line-height: 1.2;
    margin: 0;
}

.value-card-image:hover .value-title {
    color: white;
}

/* Job Roles Marquee */
.job-roles-marquee {
    background: #038F42;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.job-roles-marquee .marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.job-roles-marquee .marquee-content span {
    font-family: 'Changa One', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFAD2;
    padding: 0 50px;
    letter-spacing: 2px;
}

/* Benefits Section */
.benefits-section {
    background: #C8E6C9;
    padding: 100px 0;
}

.benefits-title {
    font-family: 'Changa One', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: #0F1C02;
    text-align: center;
    margin-bottom: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
}

.benefit-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-name {
    font-family: 'Joti One', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F1C02;
    line-height: 1.4;
}

/* Careers Gallery Section */
.careers-gallery-section {
    width: 100%;
}

.careers-gallery-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.custom-navigation {
    position: absolute;
    bottom: 130px;
    right: 15px;
}

/* Careers Page Responsive Styles */
@media (max-width: 991px) {
    .careers-hero-title {
        font-size: 4.5rem;
    }

    .join-team-title,
    .values-main-title,
    .benefits-title {
        font-size: 2.8rem;
    }

    .join-team-video {
        margin-top: 30px;
    }

    .careers-gallery-image {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .careers-hero-section {
        height: 60vh;
        min-height: 400px;
    }

    .careers-hero-title {
        font-size: 3rem;
    }

    .join-team-title,
    .values-main-title,
    .benefits-title {
        font-size: 2.2rem;
    }

    .join-team-text {
        font-size: 1rem;
    }

    .join-team-section,
    .benefits-section {
        padding: 60px 0;
    }

    .our-values-section {
        padding: 60px 0 0 0;
    }

    .value-card-image {
        height: 280px;
    }

    .value-title {
        font-size: 1.5rem;
    }

    .job-roles-marquee .marquee-content span {
        font-size: 1.2rem;
        padding: 0 30px;
    }

    .benefit-icon {
        width: 80px;
        height: 80px;
    }

    .benefit-icon svg {
        width: 50px;
        height: 50px;
    }

    .careers-gallery-image {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .careers-hero-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .join-team-title,
    .values-main-title,
    .benefits-title {
        font-size: 1.8rem;
    }

    .values-subtitle {
        font-size: 1rem;
    }

    .value-card-image {
        height: 220px;
    }

    .value-title {
        font-size: 1.3rem;
    }

    .job-roles-marquee .marquee-content span {
        font-size: 1rem;
        padding: 0 20px;
    }

    .benefit-name {
        font-size: 1rem;
    }

    .join-team-section .same-btn,
    .benefits-section .same-btn {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .careers-gallery-image {
        height: 200px;
    }
}

/* Contact Us Page Styles */
.contact-us-section {
    background: #FFFAD2;
    min-height: 100vh;
    padding: 150px 0 80px 0;
    position: relative;
}

.contact-us-title {
    font-family: 'Changa One', cursive;
    font-size: 5rem;
    font-weight: 700;
    color: #000;

}

.contact-us-info {
    margin-bottom: 1.5rem;
}

.contact-us-text {
    font-size: 1rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}

.contact-link:hover {
    color: #000;
}

.contact-us-form {
    margin-top: 2rem;
}

.form-group-contact {
    width: 100%;
    margin-bottom: 15px;
}

.form-input-contact,
.form-select-contact {
    width: 100%;
    padding: 15px 15px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
    font-family: 'Kumbh Sans', sans-serif;
    color: #000;
    margin-bottom: 5px;
}

.form-input-contact::placeholder {
    color: #000;
}

.form-select-contact {
    color: #000;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='#000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-select-contact option {
    color: #000;
}

/* Phone Input Group Styles */
.phone-input-group {
    display: flex;
    gap: 10px;
    width: 100%;
}

.country-code-select {
    flex: 0 0 120px;
    min-width: 120px;
}

.phone-number-input {
    flex: 1;
}

.form-textarea-contact-large {
    width: 100%;
    /* height: 100%;
    min-height: 400px; */
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
    font-family: 'Kumbh Sans', sans-serif;
    resize: none;
    color: #000;
}

.form-textarea-contact-large::placeholder {
    color: #000;
}

.btn-submit-contact {
    background: #000;
    color: white;
    padding: 15px 50px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* .btn-submit-contact:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(216, 226, 121, 0.4);
} */

/* Contact Page Responsive Styles */
@media (max-width: 991px) {
    .contact-us-section {
        padding: 120px 0 60px 0;
    }

    .contact-us-title {
        font-size: 4rem;
    }

    .form-textarea-contact-large {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .contact-us-section {
        padding: 100px 0 40px 0;
    }

    .contact-us-title {
        font-size: 3rem;
    }

    .contact-us-text {
        font-size: 0.9rem;
    }

    .form-textarea-contact-large {
        min-height: 250px;
    }

    .btn-submit-contact {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .contact-us-title {
        font-size: 2.5rem;
    }

    .form-input-contact,
    .form-select-contact,
    .form-textarea-contact-large {
        font-size: 0.9rem;
    }

    .form-textarea-contact-large {
        min-height: 200px;
    }
}

/* Location Page Styles */
.location-hero-section {
    width: 100%;
    margin-top: 60px;
    overflow: hidden;
    position: relative;
}

.location-hero-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.location-wave-bottom {
    position: absolute;
    top: 240px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    line-height: 0;
}

.location-wave-bottom .wave-image {
    width: 100%;
    display: block;
    /* height: auto; */
}

.locations-section {
    background: #C8E6C9;
    padding: 0;
}

/* Location Tabs */
.location-tabs {
    background: #C8E6C9;
    border-bottom: none;
    padding: 30px 20px 10px 20px;
    flex-wrap: wrap;
}

.location-tabs .nav-item {
    margin: 0 8px 15px 8px;
}

.location-tabs .nav-link {
    background: transparent;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    color: #0F1C02 !important;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.location-tabs .nav-link:hover {
    border-bottom: 1px solid #0F1C02;
}

.location-tabs .nav-link.active {
    background: transparent;
    border-bottom: 1px solid #0F1C02;
}

/* Tab Content */
.tab-content {
    padding: 30px 0 60px 0;
}

/* Location Cards */
.location-card {
    background: #E8F5E9;
    border-radius: 30px;
    padding: 50px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 4px 4px #afd1c1d6;
    max-width: 400px;
    width: 100%;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.location-name {
    font-family: 'Changa One', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C5F2D;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.location-address {
    font-size: 1.3rem;
    color: #4a5d4a;
    line-height: 1.5;
    margin: 10px 0 30px 0;
    min-height: 40px;
    font-family: 'Kumbh Sans', sans-serif;
}

.location-address-special {
    font-size: 0.9rem;
    color: #E91E63;
    line-height: 1.5;
    margin: 0 0 8px 0;
    font-weight: 700;
    font-family: 'Kumbh Sans', sans-serif;
}

.location-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 150px;
    width: 100%;
}

.location-buttons-section {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

}

.btn-location {
    background: #2C5F2D;
    color: white;
    padding: 14px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-location:hover {
    background: #4a5c4a;
    color: white;
}

.btn-location-outline {
    background: transparent;
    color: #2C5F2D;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #2C5F2D;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-location-outline:hover {
    background: #2C5F2D;
    color: white;
}

/* Request Location Section */
.request-location-section {
    background: #C8E6C9;
    padding: 50px 0 70px 0;
}

.request-location-title {
    font-family: 'Changa One', cursive;
    font-size: 3rem;
    font-weight: 700;
    color: #2C5F2D;
    margin-bottom: 0.8rem;
}

.request-location-text {
    font-size: 1.3rem;
    color: #4a5d4a;
    margin-bottom: 2rem;
}

.request-location-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 450px;
    margin: 0 auto;
}

.request-location-label {
    font-size: 0.9rem;
    color: #4a5d4a;
    margin-bottom: 10px;
    text-align: left;
    width: 100%;
}

.request-location-input-wrapper {
    display: flex;
    width: 100%;
    gap: 10px;
}

.request-location-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #a4c4a4;
    border-radius: 5px;
    font-size: 0.9rem;
    background: white;
    font-family: 'Kumbh Sans', sans-serif;
}

.request-location-input::placeholder {
    color: #999;
}

.btn-request-location {
    background: #5a6c57;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-request-location:hover {
    background: #4a5c4a;
}

.custom-space-container {
    padding-left: 100px;
    padding-right: 100px;
}

.location-section {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Location Page Responsive Styles */
@media (max-width: 991px) {
    .location-hero-image {
        height: 300px;
    }

    .location-wave-bottom {
        top: 200px;
    }

    .request-location-title {
        font-size: 2rem;
    }

    .location-name {
        font-size: 2rem;
    }

    .location-address {
        font-size: 1.1rem;
    }

    .custom-space-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 767px) {
    .location-hero-image {
        height: 250px;
    }

    .location-wave-bottom {
        top: 150px;
    }

    .location-tabs {
        padding: 20px 10px 10px 10px;
    }

    .location-tabs .nav-item {
        margin: 0 5px 10px 5px;
    }

    .location-tabs .nav-link {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .request-location-title {
        font-size: 1.7rem;
    }

    .request-location-text {
        font-size: 1rem;
    }

    .request-location-form {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .request-location-input,
    .btn-request-location {
        width: unset;
    }

    .custom-space-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .location-card {
        padding: 30px 15px;
    }

    .location-name {
        font-size: 1.8rem;
    }

    .location-address {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .location-hero-image {
        height: 200px;
    }

    /* .location-wave-bottom {
        top: 100px;
    } */

    .location-tabs .nav-link {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .request-location-title {
        font-size: 1.5rem;
    }

    .custom-space-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .location-card {
        padding: 25px 15px;
    }

    .location-name {
        font-size: 1.5rem;
    }

    .location-address {
        font-size: 0.95rem;
        min-height: auto;
    }

    .btn-location,
    .btn-location-outline {
        font-size: 0.7rem;
        padding: 12px 18px;
    }

    .location-buttons {
        max-width: 130px;
    }
}

/* Reset WP default menu styles */
ul.navbar-nav li.menu-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.navbar-nav li.menu-item a {
    font-size: inherit;
    /* use theme's original font */
    font-weight: inherit;
    color: inherit;
    text-decoration: none;
}

ul.navbar-nav li.menu-item a:hover {
    color: inherit;
}

#contact_form_s {
    font-size: 18px;
    color: #038F42;
    max-width: 500px;
    width: 100%;
}

.form-error {
    color: #DC0706;

}

#loading {
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
  #myVideo {
    display: none; /* hide video initially */
    width: 640px;
    height: 360px;
    margin-top: 20px;
  }
  .play-button {
    cursor: pointer;
    width: 80px;
    height: 80px;
  }
.privacy-policy {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 40px; /* TOP = 60px, sides = 20px, bottom = 40px */
    line-height: 1.8;
    font-size: 17px;
    color: #333;
    text-align: justify;
    text-justify: inter-word;
}

.privacy-policy h3 {
    margin-top: 35px;
    margin-bottom: 10px;
    font-size: 24px;
    color: #000;
    text-align: left; /* headings left aligned */
}

.privacy-policy p,
.privacy-policy strong {
    margin-bottom: 18px;
}

.privacy-policy ol {
    margin: 15px 0 20px;
    padding-left: 25px;
    text-align: left; /* keep lists readable */
}

.privacy-policy a {
    color: #0073aa;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

/* -----------------------------------
   RESPONSIVE DESIGN
----------------------------------- */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 40px 15px; /* reduce padding for mobile */
        font-size: 16px;
    }

    .privacy-policy h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-policy {
        padding: 30px 12px;
    }

    .privacy-policy h3 {
        font-size: 18px;
    }
}
