@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Open+Sans:wght@400;600;700&display=swap");
body {
    font-family: "Open Sans", sans-serif;
    color: #0c0c0c;
    background-color: #ffffff;
    overflow-x: hidden;
}
video {
            width: 100%; /* Makes the video width 50% of the container's width */
            height: auto; /* Automatically adjusts the height to maintain aspect ratio */
            margin-top: -105px;
        }

              @media (max-width: 576px) {
  video {
    width: 100%;        /* Full width on mobile */
    height: auto;       /* Maintain aspect ratio */
    margin-top: -50px; /* Adjust spacing as needed */
  }
}
/* =========================== */
/* Hide by default */
    .store-arrow {
        font-size: medium;
        margin-left: 15px;
        margin-top: -8px;
    }

    
    @media (min-width: 768px) {
        .store-arrow {
            margin-left: 32px;
            margin-top: -8px; 
        }
    }
html {
  scroll-behavior: smooth;
}

.custom-hidden {
  display: none;
}

.custom-menu-wrapper {
  margin-top: 50px;
}

/* Card styles */
.custom-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}

.custom-image-card .custom-image-wrapper {
  width: 100%;
    height: 250px;
    /* background: #f1f2f3; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-radius: 0 0 0 45px;
    position: relative;
    overflow: hidden;
}

.custom-image-wrapper img {
  max-width: 100%;
  max-height: 200%;
  object-fit: contain;
}

.custom-card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.custom-text-card {
  flex: 1 1 calc(50% - 10px);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
     background: #222831;
    color: #ffffff;
}

.custom-card-content h5 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  /* color: #333; */
  /* color: #ffbe33; */
  font-weight: 600;
  font-family: 'montserrat', sans-serif;

}

.custom-card-content p {
 color: #dbdbdb;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 17px;
    font-family: 'inter', sans-serif;
}
.custom-card-content b {
  /* content strong { */
    color: #ffbe33;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 20px;
/* } */
}

@media (max-width: 768px) {
  .custom-card-row {
    flex-direction: column;
  }

  .custom-text-card {
    flex: 1 1 100%;
  }
}

.poshana-section {
  padding: 40px 20px;
  /* background-color: #f7f7f7; */
  border-radius: 12px;
  margin-top: -100px;
}
.poshana-content p,
.poshana-content ul {
  font-size: 16px;
  line-height: 1.6;
  /* color: #333; */
}
.poshana-content ul {
  list-style: none;
  padding: 0;
}
.poshana-content ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}
.poshana-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}
.download-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #ff9900;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.download-btn:hover {
  background-color: #e68a00;
}

/* ======================= */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.menu-img-wrapper {
    width: 100%;
    height: 250px;
    min-height: 250px;
    background: #afc4d8ad;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-radius: 0 0 0 45px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.menu-img-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    /* background: radial-gradient(circle, rgba(34, 40, 49, 0.05), transparent); */
    animation: rotate 10s linear infinite;
}

/* @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
} */

.menu-img-wrapper img {
    max-width: 100%;
    /* max-height: 200px; */
    max-height: 310px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
     object-fit: contain;
}

.menu-item:hover .menu-img-wrapper img {
    transform: scale(1.1);
}

.menu-content {
    padding: 1.5rem;
    background: #222831;
    color: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-content h5 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.menu-content p {
    color: #dbdbdb;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    /* font-family: 'Open Sans', sans-serif; */
    font-family: 'Inter', sans-serif;
    text-align: justify;
}

.menu-content b,
.menu-content strong {
    color: #ffbe33;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
}
 .contact {
            padding: 5rem 5%;
            background: white;
            text-align: center;
        }
  .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: #25D366;
            color: rgb(14, 14, 14);
            padding: 1.5rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
        }

        .whatsapp-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
        }
         .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }  
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }     
.layout_padding {
    padding: 90px 0;
}

.layout_padding2 {
    padding: 75px 0;
}

.layout_padding2-top {
    padding-top: 75px;
}

.layout_padding2-bottom {
    padding-bottom: 75px;
}

.layout_padding-top {
    padding-top: 90px;
}

.layout_padding-bottom {
    padding-bottom: 90px;
}

h1,
h2 {
    font-family: 'montserrat', sans-serif;
}

.heading_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.heading_container h2 {
    position: relative;
    margin-bottom: 0;
    font-size: 2.5rem;
    font-weight: bold;
        padding-top: 40px;
        font-family: 'montserrat', sans-serif;
}

.heading_container h2 span {
    color: #ffbe33;
}

.heading_container p {
    margin-top: 10px;
    margin-bottom: 0;
}

.heading_container.heading_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

a:hover,
a:focus {
    color: initial;
}

.btn,
.btn:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*header section*/

.hero_area {
    position: relative;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.bg-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.sub_page .hero_area {
    min-height: auto;
}

.sub_page .hero_area .bg-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sub_page .hero_area .bg-box img {
    width: 100%;
    height: 70%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right top;
    object-position: right top;
}

.header_section {
    padding: 15px 0;
}

.header_section .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
}

.navbar-brand {
    font-family: 'Pacifico', cursive;
}

.navbar-brand span {
    /* font-weight: bold; */
    font-size: 45px;
    /* color: #d51495; */
    /* color: #19a2bd9c; */
    color: #50e8e0e2;
}

.custom_nav-container {
    padding: 0;
}

.custom_nav-container .navbar-nav {
    padding-left: 16%;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 5px 20px;
    /* color: #ffffff; */
    color: #038a20;
    text-align: center;
    text-transform: uppercase;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
    color: #ffbe33;
}

.custom_nav-container .nav_search-btn {
    width: auto;
    height: auto;
    padding: 0;
    border: none;
    color: #ffffff;
    margin: 0 10px;
}

.custom_nav-container .nav_search-btn:hover {
    color: #ffbe33;
}

.user_option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.user_option a {
    margin: 0 10px;
}

.user_option .user_link {
    color: #ffffff;
}

.user_option .user_link:hover {
    color: #ffbe33;
}

.user_option .cart_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.user_option .cart_link svg {
    width: 17px;
    height: auto;
    fill: #ffffff;
    margin-bottom: 2px;
}

.user_option .cart_link:hover svg {
    fill: #ffbe33;
}

.user_option .order_online {
    display: inline-block;
    padding: 8px 30px;
    background-color: #ffbe33;
    color: #141414;
    border-radius: 45px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
    white-space: nowrap;
}

.user_option .order_online:hover {
    background-color: #e69c00;
}

.custom_nav-container .navbar-toggler {
    outline: none;
}

.custom_nav-container .navbar-toggler {
    padding: 0;
    width: 37px;
    height: 42px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
    display: block;
    width: 35px;
    height: 4px;
    background-color: #ffffff;
    margin: 7px 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    border-radius: 5px;
    transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    top: -10px;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
    top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 0;
}

/*end header section*/

/* slider section */

.slider_section {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 45px 0 75px 0;
    overflow: visible !important;
}

.slider_section .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slider_section #customCarousel1 {
    width: 100%;
    position: unset;
    overflow: visible !important;
}

.slider_section .detail-box {
    /* color: #e19b22; */
    color: #FFFFFF;
    margin-bottom: 145px;
}

.slider_section .detail-box h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2px;
    color: #e19b22;

}

.slider_section .detail-box p {
    font-size: 14px;
    font-family: 'inter', sans-serif;
}

.slider_section .detail-box a {
    display: inline-block;
    padding: 10px 45px;
    background-color: #ffbe33;
    color: #070707;
    border-radius: 45px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
    margin-top: 10px;
}

.slider_section .detail-box a:hover {
    background-color: #e69c00;
}

.slider_section .img-box img {
    width: 100%;
}

.slider_section .carousel-indicators {
    position: unset;
    margin: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slider_section .carousel-indicators li {
    background-color: #ffffff;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    opacity: 1;
}

.slider_section .carousel-indicators li.active {
    width: 20px;
    height: 20px;
    background-color: #ffbe33;
}

.offer_section {
    position: relative;
    padding-top: 0px;
}

.offer_section .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 45px;
    border-radius: 5px;
    padding: 20px 15px;
    background-color: #222831;
    color: #ffffff;
}

/* .offer_section .box .img-box {
    width: 175px;
    min-width: 175px;
    height: 175px;
    margin-right: 15px;
    position: relative;
    -webkit-transition: all 0.1 0.5s;
    transition: all 0.1 0.5s;
    border-radius: 100%;
    border: 5px solid #ffbe33;
    overflow: hidden;
}

.offer_section .box .img-box img {
    width: 100%;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.offer_section .box .logo-box img {
    width: 100%;
}

.offer_section .box .detail-box h5 {
    font-family: 'rubik', sans-serif;
    font-size: 24px;
    margin: 0;
}

.offer_section .box .detail-box h6 {
    font-family: 'Dancing Script', cursive;
    margin: 10px 0;
}

.offer_section .box .detail-box h6 span {
    font-size: 2.5rem;
    font-weight: bold;
}

.offer_section .box .detail-box a {
    display: inline-block;
    padding: 10px 30px;
    background-color: #ffbe33;
    color: #141313;
    border-radius: 45px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
}

.offer_section .box .detail-box a:hover {
    background-color: #e69c00;
}

.offer_section .box .detail-box a svg {
    width: 20px;
    height: auto;
    margin-left: 5px;
    fill: #ffffff;
}

.offer_section .box:hover .img-box img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
} */

.offer_section .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 45px;
    border-radius: 5px;
    padding: 20px 15px;
    background-color: #222831;
    color: #ffffff;
}

/* Top section with logo and content side by side */
.offer_section .box .top-section {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
}

.offer_section .box .logo-box {
    width: 80px;
    min-width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.offer_section .box .logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.offer_section .box .content-text {
    flex: 1;
}

.offer_section .box .content-text h5 {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    margin: 0;
    line-height: 1.4;
    color: #ffffff;
    text-align: justify;
}

/* Image box - centered */
.offer_section .box .img-box {
    width: 175px;
    height: 175px;
    position: relative;
    transition: all 0.3s;
    border-radius: 100%;
    border: 5px solid #ffbe33;
    overflow: hidden;
    margin-bottom: 15px;
}

.offer_section .box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.2s;
}

.offer_section .box:hover .img-box img {
    transform: scale(1.1);
}

/* Discount section below image */
.offer_section .box .discount-section {
    margin-bottom: 15px;
    text-align: center;
}

.offer_section .box .discount-section h6 {
    font-family: 'Dancing Script', cursive;
    margin: 0;
}

.offer_section .box .discount-section h6 span {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffbe33;
}

/* Detail box for second card */
.offer_section .box .detail-box {
    text-align: center;
    margin-bottom: 15px;
}

.offer_section .box .detail-box h5 {
    font-family: 'Rubik', sans-serif;
    font-size: 24px;
    margin: 0;
    color: #ffffff;
}

/* Button section */
.offer_section .box .button-section {
    width: 100%;
    text-align: center;
}

.offer_section .box .button-section a {
    display: inline-block;
    padding: 10px 30px;
    background-color: #ffbe33;
    color: #141313;
    border-radius: 45px;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
}

.offer_section .box .button-section a:hover {
    background-color: #e69c00;
}

.offer_section .box .button-section a svg {
    width: 18px;
    height: auto;
    margin-left: 5px;
    fill: #141313;
    vertical-align: middle;
}

.food_section .filters_menu {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style-type: none;
    margin: 45px 0 20px 0;
}

.food_section .filters_menu li {
    padding: 7px 25px;
    cursor: pointer;
    border-radius: 25px;
}

.food_section .filters_menu li.active {
    background-color: #222831;
    color: #ffffff;
}

.food_section .box {
    position: relative;
    margin-top: 25px;
    /* background-color: #ffffff; */
    border-radius: 10px;
    color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(to bottom, #f1f2f3 25px, #222831 25px);
}

.food_section .box .img-box {
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 215px;
    border-radius: 0 0 0 45px;
    margin: -1px;
    padding: 25px;
}

.food_section .box .img-box img {
    max-width: 100%;
    max-height: 145px;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.food_section .box .detail-box {
    padding: 25px;
}

.food_section .box .detail-box h5 {
    font-weight: 600;
}

.food_section .box .detail-box p {
    font-size: 15px;
    align-items: center;
}

.food_section .box .detail-box h6 {
    margin-top: 10px;
}

.food_section .box .options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.food_section .box .options a {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #ffbe33;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.food_section .box .options a svg {
    width: 18px;
    height: auto;
    fill: #ffffff;
}

.food_section .box:hover .img-box img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.food_section .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 45px;
}

.food_section .btn-box a {
    display: inline-block;
    padding: 10px 55px;
    background-color: #ffbe33;
    color: #030303;
    border-radius: 45px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
}

.food_section .btn-box a:hover {
    background-color: #e69c00;
}

.about_section {
    background: #222831;
    color: #ffffff;
    margin-top: -90px;
}

.about_section .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about_section .img-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.about_section .img-box img {
    width: 100%;
    max-width: 445px;
    position: relative;
    z-index: 2;
}

.about_section .detail-box p {
    margin-top: 15px;
    text-align: justify;
}

.about_section .detail-box a {
    display: inline-block;
    padding: 10px 45px;
    background-color: #ffbe33;
    color: #010101;
    border-radius: 45px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
    margin-top: 15px;
}

.about_section .detail-box a:hover {
    background-color: #e69c00;
}

.book_section {
    position: relative;
}

.book_section .heading_container {
    margin-bottom: 25px;
}

.book_section .form_container .form-control {
    width: 100%;
    border: none;
    height: 50px;
    margin-bottom: 25px;
    padding-left: 25px;
    border: 1px solid #999;
    outline: none;
    color: #000000;
    border-radius: 5px;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.book_section .form_container .form-control::-webkit-input-placeholder {
    color: #222222;
}

.book_section .form_container .form-control:-ms-input-placeholder {
    color: #222222;
}

.book_section .form_container .form-control::-ms-input-placeholder {
    color: #222222;
}

.book_section .form_container .form-control::placeholder {
    color: #222222;
}

.book_section .form_container .nice-select .current {
    font-size: 16px;
}

.book_section .form_container button {
    margin-top: 15px;
    border: none;
    text-transform: uppercase;
    display: inline-block;
    padding: 10px 55px;
    background-color: #ffbe33;
    color: #ffffff;
    border-radius: 45px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
}

.book_section .form_container button:hover {
    background-color: #e69c00;
}

.book_section .map_container {
    width: 100%;
    height: 345px;
    border-radius: 10px;
    overflow: hidden;
}

.book_section .map_container #googleMap {
    height: 100%;
    min-height: 100%;
    width: 100%;
}

/* client section start */

.client_section .heading_container {
    margin-bottom: 30px;
}

.client_section .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 15px;
}

.client_section .box .img-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 115px;
    position: relative;
    margin-top: 30px;
}

.client_section .box .img-box img {
    border-radius: 100%;
    border: 5px solid #ffbe33;
    position: relative;
}

.client_section .box .img-box::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #ffbe33;
    -webkit-transform: rotate(45deg) translateX(-50%);
    transform: rotate(45deg) translateX(-50%);
}

.client_section .box .detail-box {
    background-color: #222831;
    color: #ffffff;
    padding: 25px 25px 15px 25px;
    border-radius: 5px;
}

.client_section .box .detail-box h6 {
    font-weight: 600;
    font-size: 18px;
    margin: 15px 0 5px 0;
}

.client_section .box .detail-box p {
    margin-bottom: 0;
    font-size: 15px;
    margin-bottom: 10px;
    font-family: 'poppins', sans-serif;
}

.client_section .owl-carousel .owl-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 45px;
    padding: 0 15px;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    background-color: #ffbe33;
    color: #ffffff;
    outline: none;
    bottom: 0px;
    font-size: 24px;
    margin: 0 5px;
    border-radius: 100%;
}

/* client section end */

.contact_section .heading_container {
    margin-bottom: 45px;
}

.contact_section .form_container .form-group {
    margin-bottom: 25px;
}

.contact_section .form_container input {
    width: 100%;
    border: none;
    height: 50px;
    padding-left: 25px;
    background-color: transparent;
    border: 1px solid #ccc;
    outline: none;
    color: #000000;
    border-radius: 5px;
}

.contact_section .form_container input::-webkit-input-placeholder {
    color: #222222;
}

.contact_section .form_container input:-ms-input-placeholder {
    color: #222222;
}

.contact_section .form_container input::-ms-input-placeholder {
    color: #222222;
}

.contact_section .form_container input::placeholder {
    color: #222222;
}

.contact_section .form_container input.message-box {
    height: 120px;
    border-radius: 5px;
}

.contact_section .form_container .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.contact_section .form_container button {
    margin-top: 10px;
    border: none;
    text-transform: uppercase;
    display: inline-block;
    padding: 10px 55px;
    background-color: #ffbe33;
    color: #ffffff;
    border-radius: 0px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
}

.contact_section .form_container button:hover {
    background-color: #e69c00;
}

/* footer section*/

.footer_section {
    background-color: #222831;
    color: #ffffff;
    padding: 75px 0 40px 0;
    text-align: center;
}

.footer_section h4 {
    font-size: 28px;
}

.footer_section h4,
.footer_section .footer-logo {
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
}

.footer_section p {
    color: #dbdbdb;
    font-family: 'Inter', sans-serif;
}

.footer_section .footer-col {
    margin-bottom: 30px;
}

.footer_section .footer_contact .contact_link_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.footer_section .footer_contact .contact_link_box a {
    margin: 5px 0;
    color: #ffffff;
}

.footer_section .footer_contact .contact_link_box a i {
    margin-right: 5px;
}

.footer_section .footer_contact .contact_link_box a:hover {
    color: #ffbe33;
}

.footer_section .footer-logo {
    display: block;
    font-weight: bold;
    font-size: 38px;
    line-height: 1;
    color: #ffffff;
}

.footer_section .footer_social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.footer_section .footer_social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #222831;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #ffffff;
    border-radius: 100%;
    margin: 0 2.5px;
    font-size: 18px;
}

.footer_section .footer_social a:hover {
    color: #ffbe33;
}

.footer_section .footer-info {
    text-align: center;
    margin-top: 15px;
}

.footer_section .footer-info p {
    color: #ffffff;
    margin: 0;
}

.footer_section .footer-info p a {
    color: inherit;
}

/* blast */

/* ========== BIRTHDAY CELEBRATION EFFECTS ========== */

/* Container for all birthday effects */
.birthday-effects-container {
    z-index: 1000;
}
.birthday-effects-container {
    z-index: 1000;
    overflow: visible !important;
}
/* Birthday Text Animation */
.birthday-text {
    animation: birthdayPulse 2s ease-in-out 2, fadeInOut 4s ease-in-out 1;
    animation-fill-mode: forwards;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 190, 51, 0.8);
    z-index: 10;
    opacity: 0;
}
.birthday-text-wrapper {
    overflow: visible !important;
}

.birthday-text p {
    margin: 0;
    font-size: 26px;  /* Increased from 18px */
    color: aliceblue;
    font-weight: bold;
}

/* Rainbow Birthday Colors */
.colorful-text {
    background: linear-gradient(
        45deg,
        #ff6b6b,  /* Red */
        #feca57,  /* Yellow */
        #48dbfb,  /* Blue */
        #ff9ff3,  /* Pink */
        #54a0ff,  /* Light Blue */
        #00d2d3   /* Cyan */
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowMove 3s ease infinite;
    font-weight: 900;
}

/* Rainbow color moving animation */
@keyframes rainbowMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Pulse and glow animation */
@keyframes birthdayPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 190, 51, 0.8);
    }
    25% {
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(255, 190, 51, 1), 0 0 30px rgba(255, 100, 100, 0.8);
    }
    50% {
        transform: scale(1);
        text-shadow: 0 0 15px rgba(255, 190, 51, 0.9);
    }
    75% {
        transform: scale(1.05);
        text-shadow: 0 0 25px rgba(255, 190, 51, 1), 0 0 35px rgba(100, 200, 255, 0.8);
    }
}

/* Fade in and out in 4 seconds (complete before slide change) */
@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.8);
    }
    15% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    75% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px) scale(0.8);
    }
}

/* ========== CONFETTI FALLING (FASTER & MORE) ========== */
.confetti {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #f0f;
    animation: confettiFall 1.5s linear 1;
    animation-fill-mode: forwards;
    opacity: 0;
}

/* Different colors for each confetti - 15 pieces now */
.confetti:nth-child(1) {
    left: 5%;
    background-color: #ff6b6b;
    animation-delay: 0s;
}

.confetti:nth-child(2) {
    left: 12%;
    background-color: #4ecdc4;
    animation-delay: 0.1s;
}

.confetti:nth-child(3) {
    left: 20%;
    background-color: #ffe66d;
    animation-delay: 0.2s;
}

.confetti:nth-child(4) {
    left: 28%;
    background-color: #a8e6cf;
    animation-delay: 0.3s;
}

.confetti:nth-child(5) {
    left: 36%;
    background-color: #ff8b94;
    animation-delay: 0.4s;
}

.confetti:nth-child(6) {
    left: 44%;
    background-color: #c7ceea;
    animation-delay: 0.5s;
}

.confetti:nth-child(7) {
    left: 52%;
    background-color: #ffd3b6;
    animation-delay: 0.6s;
}

.confetti:nth-child(8) {
    left: 60%;
    background-color: #ffaaa5;
    animation-delay: 0.7s;
}

.confetti:nth-child(9) {
    left: 68%;
    background-color: #ff8c94;
    animation-delay: 0.8s;
}

.confetti:nth-child(10) {
    left: 76%;
    background-color: #a8dadc;
    animation-delay: 0.9s;
}

.confetti:nth-child(11) {
    left: 84%;
    background-color: #ff6b9d;
    animation-delay: 1s;
}

.confetti:nth-child(12) {
    left: 92%;
    background-color: #95e1d3;
    animation-delay: 1.1s;
}

.confetti:nth-child(13) {
    left: 15%;
    background-color: #ffa502;
    animation-delay: 0.15s;
}

.confetti:nth-child(14) {
    left: 55%;
    background-color: #ff6348;
    animation-delay: 0.55s;
}

.confetti:nth-child(15) {
    left: 85%;
    background-color: #7bed9f;
    animation-delay: 0.85s;
}

/* Confetti falling animation - FASTER (completes in 1.5 seconds) */
@keyframes confettiFall {
    0% {
        top: -20px;
        opacity: 1;
        transform: rotate(0deg);
    }
    100% {
        top: 350px;
        opacity: 0;
        transform: rotate(1080deg);
    }
}

/* ========== BALLOONS RISING ========== */
.balloon {
    position: absolute;
    font-size: 45px;
    animation: balloonRise 2s ease-in 1;
    animation-fill-mode: forwards;
    opacity: 0;
    bottom: -50px;
}

.balloon-1 {
    left: 10%;
    animation-delay: 0s;
}

.balloon-2 {
    left: 30%;
    animation-delay: 0.3s;
}

.balloon-3 {
    left: 50%;
    animation-delay: 0.6s;
}

.balloon-4 {
    left: 70%;
    animation-delay: 0.9s;
}

.balloon-5 {
    left: 90%;
    animation-delay: 1.2s;
}

@keyframes balloonRise {
    0% {
        bottom: -50px;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateX(25px) rotate(8deg);
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 400px;
        opacity: 0;
        transform: translateX(-25px) rotate(-8deg);
    }
}

/* ========== RESPONSIVE FOR MOBILE ========== */
@media (max-width: 768px) {
    .birthday-effects-container {
        right: 10px !important;
        width: 300px !important;
    }
    
    .birthday-text {
        right: 10px !important;
    }
    
  .birthday-text p {
    font-size: 18px;  /* Increased for mobile too */
}

.birthday-text {
    top: -10px !important;  /* Adjust position for mobile */
}
    
    .balloon {
        font-size: 30px;
    }
}
.carousel-inner {
    overflow: visible !important;
}

.carousel-item {
    overflow: visible !important;
}

.hero_area {
    overflow: visible !important;
}


/* ========== HEALTH FEATURES SECTION ========== */
.health-features-section {
    padding: 40px 0;
    background: transparent;
}

.features-mini {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 290px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.feature-item b {
    color: #222831;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-mini {
        gap: 30px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-item b {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .features-mini {
        gap: 25px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-item b {
        font-size: 0.85rem;
    }
}  
 
.terms-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.terms-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #ffbe33;
}

.terms-header img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.terms-header h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #222831;
    font-family: 'Montserrat', sans-serif;
}

.terms-meta {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.terms-content h2 {
    color: #ffbe33;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
}

.terms-content p,
.terms-content ul {
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
    font-family: 'inter', sans-serif;
}

.terms-content ul {
    padding-left: 25px;
}

.terms-content ul li {
    margin-bottom: 10px;
}

.terms-content strong {
    color: #222831;
    font-weight: 600;
}

.terms-content a {
    color: #ffbe33;
    text-decoration: none;
    font-weight: 600;
}

.terms-content a:hover {
    color: #e69c00;
    text-decoration: underline;
}

.terms-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    font-size: 14px;
    color: #666;
    text-align: center;
}

@media (max-width: 768px) {
    .terms-container {
        margin: 20px;
        padding: 25px;
    }

    .terms-header {
        flex-direction: column;
        text-align: center;
    }

    .terms-header h1 {
        font-size: 1.8rem;
    }

    .terms-content h2 {
        font-size: 1.5rem;
    }
}


/* Footer Legal Links */
.footer-links {
    margin: 15px 0;
    font-size: 14px;
}

.footer-links a {
    color: #f6f5f2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e69c00;
    text-decoration: underline;
}

.footer-links .separator {
    color: #999;
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 480px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-links .separator {
        display: none;
    }
}
/* privacy policy section */

        .privacy-container {
            max-width: 900px;
            margin: 40px auto;
            padding: 40px;
            background: #ffffff;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            border-radius: 15px;
        }

        .privacy-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 3px solid #ffbe33;
        }

        .privacy-header img {
            height: 80px;
            width: auto;
            object-fit: contain;
        }

        .privacy-header h1 {
            margin: 0;
            font-size: 2.5rem;
            color: #222831;
            font-family: 'Montserrat', sans-serif;
        }

        .privacy-meta {
            color: #666;
            font-size: 14px;
            margin-top: 5px;
        }

        .privacy-content h2 {
            color: #ffbe33;
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 1.8rem;
            font-family: 'Montserrat', sans-serif;
        }

        .privacy-content p,
        .privacy-content ul {
            color: #333;
            line-height: 1.8;
            margin-bottom: 15px;
            text-align: justify;
            font-family: 'inter', sans-serif;
        }

        .privacy-content ul {
            padding-left: 25px;
        }

        .privacy-content ul li {
            margin-bottom: 10px;
        }

        .privacy-content strong {
            color: #222831;
            font-weight: 600;
        }

        .privacy-content a {
            color: #ffbe33;
            text-decoration: none;
            font-weight: 600;
        }

        .privacy-content a:hover {
            color: #e69c00;
            text-decoration: underline;
        }

        .privacy-footer {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 2px solid #f0f0f0;
            font-size: 14px;
            color: #666;
        }

        .privacy-footer .small {
            font-size: 13px;
            color: #999;
            margin-top: 10px;
        }

        @media (max-width: 768px) {
            .privacy-container {
                margin: 20px;
                padding: 25px;
            }

            .privacy-header {
                flex-direction: column;
                text-align: center;
            }

            .privacy-header h1 {
                font-size: 1.8rem;
            }

            .privacy-content h2 {
                font-size: 1.5rem;
            }
        }
    

   /* ======================= pricing section ======================== */
 .custom-input-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        justify-content: center;
        align-items: center;
    }

    .custom-input-modal.active {
        display: flex;
    }

    .custom-input-content {
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        max-width: 400px;
        width: 90%;
    }

    .custom-input-content h3 {
        color: #1c1b1a;
        margin-bottom: 20px;
        text-align: center;
    }

    .custom-input-content input {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        border: 2px solid #ffbe33;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .custom-input-content input:focus {
        outline: none;
        border-color: #e69c00;
    }

    .custom-input-buttons {
        display: flex;
        gap: 10px;
        justify-content: center;
    }

    .custom-input-buttons button {
        padding: 10px 30px;
        font-size: 16px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-confirm {
        background: #ffbe33;
        color: #222831;
        font-weight: bold;
    }

    .btn-confirm:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 190, 51, 0.4);
        background: #e69c00;
    }

    .btn-cancel {
        background: #e0e0e0;
        color: #333;
    }

    .btn-cancel:hover {
        background: #d0d0d0;
    }

    .error-message {
        color: #d32f2f;
        font-size: 14px;
        margin-top: -10px;
        margin-bottom: 10px;
        display: none;
    }

    .error-message.active {
        display: block;
    }

    h1 {
        color: #ffbe33;
        text-align: center;
        margin-bottom: 10px;
        font-size: 2.5em;
    }

    .subtitle {
        text-align: center;
        color:#038722;
        margin-bottom: 30px;
        font-style: normal;
        font-family: 'lato', sans-serif;
    }

    .ideal-for {
        background: #222831;
        padding: 0px;
        border-radius: 10px;
        margin-bottom: 50px;
        color: #ffbe33;
        font-style: normal;
        text-align: center;
        font-size: medium;
        border: 2px solid #ffbe33;
    }
.ideal-for h5 span {
    display: inline-block;
    margin-right: 80px;     /* Horizontal space between items */
    margin-bottom: 0px;    /* Vertical space if wrapping */
    font-weight: bold;
}

.ideal-for h5 {
    line-height: 2.5;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .ideal-for h5 span {
        margin-right: 20px;
        font-size: 0.95rem;
    }
}
    .main-layout {
        display: grid;
        grid-template-columns: 350px 1fr;
        gap: 30px;
    }

    .dropdowns-section {
        background: #222831;
        padding: 25px;
        border-radius: 15px;
        height: fit-content;
        border: 2px solid #ffbe33;
    }

    .dropdown-group {
        margin-bottom: 25px;
    }

    .dropdown-group:last-child {
        margin-bottom: 0;
    }

    .dropdown-group h3 {
        color: #ffbe33;
        margin-bottom: 10px;
        font-size: 1.5em;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    select {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        border: 2px solid #ffbe33;
        border-radius: 8px;
        background: #cad8e6;
        color: #333;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: bold;
    }

    select:hover {
        border-color: #e69c00;
    }

    select:focus {
        outline: none;
        border-color: #ffbe33;
        box-shadow: 0 0 0 3px rgba(255, 190, 51, 0.2);
    }

    .results-section {
        display: grid;
        gap: 20px;
        align-items: start;
        grid-template-columns: 1fr;
    }

    .results-section.count-1 {
        grid-template-columns: 1fr;
    }

    .results-section.count-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-section.count-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-section.count-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    @media (max-width: 1200px) {
        .results-section,
        .results-section.count-1,
        .results-section.count-2,
        .results-section.count-3,
        .results-section.count-4 {
            grid-template-columns: 1fr;
        }
    }

    .result-card {
        display: none;
        background: #222831;
        border-radius: 15px;
        padding: 25px;
        color: white;
        box-shadow: 0 10px 30px rgba(34, 40, 49, 0.3);
        animation: slideIn 0.5s ease;
        border: 2px solid #ffbe33;
    }

    .result-card.active {
        display: block;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .result-card h2 {
        margin-bottom: 15px;
        font-size: 1.4em;
        text-align: center;
        border-bottom: 2px solid #ffbe33;
        padding-bottom: 8px;
        color: #ffbe33;
        font-weight: bold;
    }

    .details-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        background: rgba(255, 190, 51, 0.05);
        padding: 15px;
        border-radius: 10px;
        backdrop-filter: blur(10px);
        margin-bottom: 12px;
    }
.details-grid.has-3-items {
    grid-template-columns: repeat(2, 1fr);
}
.details-grid .detail-item:nth-child(3):last-child {
    grid-column: 1 / -1;
    max-width: 300px;
    margin: 0 auto;
}
    .detail-item {
        background: #cad8e6;
        padding: 10px;
        border-radius: 8px;
        text-align: center;
        border: 1px solid rgba(255, 190, 51, 0.3);
    }

    .detail-label {
        font-size: 0.8em;
        opacity: 0.9;
        margin-bottom: 4px;
        color: #141313;
        font-size: 20px;
        font-weight: bold;
    }

    .detail-value {
        font-size: 1.2em;
        font-weight: bold;
        color: #227329;
    }
.details-grid.has-3-items {
    grid-template-columns: repeat(2, 1fr);
}

.details-grid .detail-item:nth-child(3):last-child {
    grid-column: 1 / -1;
    width: 4000px;
    margin: 0 auto;
    padding: 10px;
}

    .total-price {
        background: #ffbe33;
        color: #222831;
        padding: 10px;
        border-radius: 8px;
        text-align: center;
        font-size: 1.1em;
        font-weight: bold;
    }

    .empty-state {
        background: #cad8e6;
        border: 2px dashed #ffbe33;
        border-radius: 15px;
        padding: 60px;
        text-align: center;
        color: #999;
    }

    .empty-state-icon {
        font-size: 4em;
        margin-bottom: 20px;
    }

    .empty-state-text {
        font-size: 1.2em;
        color: #666;
    }

    @media (max-width: 968px) {
        .main-layout {
            grid-template-columns: 1fr;
        }
    }
    
/*# sourceMappingURL=style.css.map */
@media (min-width: 376px) and (max-width: 480px) {
    .birthday-text-wrapper {
        top: -90px !important;
        right: 22px !important;
    }
    
    .birthday-text p {
        font-size: 17px !important;
    }
}

/* Mobile - Small (320px to 375px) */
@media (max-width: 375px) {
    .birthday-text-wrapper {
        top: -90px !important;
        right: 15px !important;
    }
    
    .birthday-text p {
        font-size: 15px !important;
        line-height: 1.2 !important;
    }
}

/* Extra small screens (below 320px) */
@media (max-width: 319px) {
    .birthday-text-wrapper {
        top: -80px !important;
        right: 10px !important;
    }
    
    .birthday-text p {
        font-size: 14px !important;
    }
}


/* ========================= */
.social-media-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    font-size: 2.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* Original Brand Colors */
.social-icon .fa-facebook-square {
    color: #1877F2;
}

.social-icon .fa-twitter-square {
    color: #1DA1F2;
}

.social-icon .fa-instagram-square {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-icon .fa-linkedin {
    color: #0A66C2;
}

.social-icon .fa-youtube {
    color: #FF0000;
}

/* Hover Effects */
.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-icon:hover .fa-facebook-square {
    color: #145dbf;
}

.social-icon:hover .fa-twitter-square {
    color: #1a8cd8;
}

.social-icon:hover .fa-instagram-square {
    background: linear-gradient(45deg, #d67a2e 0%, #c94f2f 25%, #b91f36 50%, #a81d55 75%, #8e1470 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-icon:hover .fa-linkedin {
    color: #004182;
}

.social-icon:hover .fa-youtube {
    color: #cc0000;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .social-icon {
        font-size: 2rem;
    }
    
    .social-media-icons {
        gap: 12px;
    }
}

