/********** Template CSS **********/
:root {
    --primary: #088b47;
    --secondary: #ffffff;
    --light: #6C7293;
    --dark: #000000;
    --white: #ffffff;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/* Full-screen loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  /* Simple spinner animation */
  .spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #4CAF50;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
    border-radius: 5px;
}

.btn-square {
    width: 38px;
    height: 38px;
    
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 5px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 40px 0;
    color: var(--light);
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.shadow-sm .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--light);
    }
}

@media (min-width: 992px) {
    .navbar.shadow-sm .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 50px;
    background-color: #000000;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: fill;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .85), rgba(0, 0, 0, .85)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Service ***/
.service-item .btn {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 50px;
    height: 50px;
    color: var(--primary);
    background: var(--dark);
    opacity: 0;
}

.service-item:hover .btn {
    right: 0;
    bottom: 0;
    opacity: 1;
}


/*** Team ***/
.team-item .team-img::before,
.team-item .team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .85);
    transition: .5s;
}

.team-item .team-img::after {
    left: auto;
    right: 0;
}

.team-item:hover .team-img::before,
.team-item:hover .team-img::after {
    width: 50%;
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 3px;
    color: var(--primary);
    background: var(--dark);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--secondary);
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 1.5rem;
    font-size: 15px;
    background: var(--dark);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}


/* /////////////////////////////////////////////////////////////////////////////////////////////////////////// */

/*** Navbar Logo ***/
.navbar .navbar-brand .logo {
    height: 50px; /* Adjust the height to fit your design */
    max-width: 100%;
    padding: 0; /* Removes extra space around the logo */
    display: block;
    margin: 0 auto; /* Centers the logo within its container */
}

.navbar .navbar-brand {
    padding: 20px; /* Ensure there's no padding around the brand */
    margin-right: 20px; /* Add spacing if needed between the logo and the navigation */
}

/* Adjustments for sticky-top behavior */
.navbar.sticky-top {
    top: 0;
    transition: top .5s;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar .navbar-brand .logo {
        height: 40px; /* Adjust the height for smaller screens */
    }

    .navbar .navbar-brand {
        margin-left: 15px; /* Adjust margin for smaller screens */
    }
}

@media (min-width: 992px) {
    .navbar .navbar-brand .logo {
        height: 60px; /* Larger size for larger screens if desired */
    }
}





/* ///Hero Section Start ////////////////////////////////////////////////////////// */

.herotop {
    padding-bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.herotop img {
    max-width: 100%;
    height: auto;
    width: 1540px;
    
    
}

@media (max-width: 768px) {
    .herotop img {
        content: url(../img/hero\ mobile.jpg); 
        height: 540px;
        width: 720px;
    
    }
}


/* /////mid banner/////////////////////////////////////////////////////////////////////////////////////// */

.midbanner {
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.midbanner img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .midbanner img {
        content: url(../img/midbanner\ mobile.jpg); 
    
    }
}


/* ///////how to order banner/////////////////////////////////////////////////////// */

.bottombanner {
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottombanner img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .bottombanner img {
        content: url(../img/bottombanner\ mobile.jpg); 
    
    }
}

/* //////////////////////////////////////////////////////////////////////////////////////////// */

.footerbottom {
    background-color: black;
    color: #6C7293;
    padding: 10px 0; /* Adjust padding as needed */
    width: 100%;
}

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

/* ///////Video Hero Section Start//////////////////////////////////////////////////////////////// */

/* .hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: auto;
    max-width: 1540px;
    max-height: 638px;
    transform: translate(-50%, -50%);
    z-index: -1;
}


@media (max-width: 768px) {
    .hero video {
        width: 100vw; 
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero video {
        width: 100vw;
        height: auto;
    }
} */





/* /////// Marquee //////////////////////////////////////////////////////////////// */

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background-color: #000000;
    padding-top: 10px;
    padding-bottom: 5px;
    color: #088b47;
}





/* /////// popup //////////////////////////////////////////////////////////////// */

/* Custom button styles for size selection */
#size button {
    border: 1px solid #bbbbbb; /* Primary color for the border */
    color: #000000; /* Primary color for the text */
    background-color: transparent; /* Transparent background */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for color changes */
    margin-top: 10px;
}

#size button.active, 
#size button:hover {
    background-color: #000000; /* Background color when active or hovered */
    color: white; /* Text color when active or hovered */
    
}

/* Optional: Customize button size and spacing */
#size button {
    padding: 10px 20px; /* Adjust button padding */
    font-size: 1rem; /* Adjust font size */
}

#size button.me-2 {
    margin-right: 0.5rem; /* Space between buttons */
}



/* Custom styles for quantity selection buttons */
.input-group .btn {
    border: 1px solid #bbbbbb; /* Primary color for the border */
    color: #000000; /* Primary color for the text */
    background-color: transparent; /* Transparent background */
    margin-top: 10px;
    
    
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for color changes */
}

.input-group .btn:hover, 
.input-group .btn:focus {
    background-color: #000000; /* Background color when hovered or focused */
    color: white; /* Text color when hovered or focused */
}

/* Custom styles for the input field */
.input-group .form-control {
    border: 1px solid #bbbbbb; /* Border color matching the buttons */
    border-radius: 0; /* Remove border-radius to match button styling */
    color: #000000; /* Text color */
    font-size: 1.25rem; /* Larger font size for the input */
    text-align: center; /* Center text alignment */
    margin-top: 10px;
}

/* Adjust spacing and alignment */
.input-group {
    display: flex; /* Ensure proper alignment of buttons and input */
    max-width: 120px; /* Limit width of the input group */
}

.input-group .btn {
    border-radius: 0; /* Remove border-radius to match the input field */
}

/* Optional: Adjust spacing between buttons and input */
.input-group .btn:not(:last-child) {
    border-right: 0; /* Remove right border for buttons except the last one */
}

/* ////card//////////////////////////////////////////////////////////////////////////////// */
/* General styles for product card */
.product-card {
    border: 3px solid #000000;
    background-color: #000000;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin-bottom: -10px;
}

.product-card img {
    border-bottom: 1px solid #ddd;
}

.carousel-control-prev,
.carousel-control-next {
    filter: invert(1);
}

/* ////badge//////////////////////////////////////////////////////////////////////////////// */

.badge-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

.badge {
    background-color:#088b47; /* Badge background color */
    color: black; /* Text color */
    padding: 5px 10px;
    font-size: 14px;
}

/* ///modal/////////////////////////////////////////////////////////////////////////////////////// */



/* Modal Background Color */
.modal-content {
    background-color: #ffffff; /* Red color */
    color: white; /* Text color white */
    border-radius: 0px; /* Rounded corners for a smoother look */
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;

}

/* Close Button */
.btn-close {
    background-color: white;
    border-radius: 50%;
}

/* Review Section */

.review-section .review strong {
    color:#000000
}

#reviewForm .form-label {
    color: grey;
}

#reviewText {
    background-color: #f2f2f2; /* Light background for textarea */
    color: black; /* Dark text inside textarea */
}


/* Mobile Responsiveness */
@media (max-width: 576px) {
    .modal-dialog {
        max-width: 100%;
        margin: 0;
    }

    .modal-content {
        border-radius: 0;
    
    }

    .modal-header {
        padding: 15px;
    }

    .modal-body {
        padding: 15px;
    }

    #productModalCarousel .carousel-inner img {
        max-height: 400px; /* Restricting image height on mobile for better view */
    }

    .review-section {
        padding-top: 10px;
    }
}


/* ///////////////////////////////////////////////////////////////////////////// */



/* Custom CSS for the product modal images */
.modal-body .carousel-item img {
    height: 428px; /* Adjust this value to increase or decrease the height */
    object-fit: cover; /* Ensures the image covers the entire container */
    width: 100%; /* Ensures the image width adjusts to the modal width */
}

/* Optional: Adjust the carousel container height to fit your image size */
.modal-body .carousel {
    height: 400px; /* Match this with the image height */
}




/* /////////////////  NEW CSS   ////////////////////////////////////////////////////////////////////////////////////////////////// */
h2 {
    color: #000000;
}

.h5 {
    color: #000000;
}

#product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-card {
    border: 1px solid #cccccc00;
    padding: 15px;
    width: 100%;
    max-width: 400px;
    text-align: left;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.product-card h3 {
    font-size: 24px;
    margin: 10px 0;
    color: #333;
}

.product-card p {
    margin: 5px 0;
    color: #555;
}

.product-card button {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.product-card button.view-details {
    background-color: #088b47;
    margin-top: 5px;
}

.product-card button:hover {
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .product-card h3 {
        font-size: 20px;
    }

    .product-card button {
        font-size: 12px;
        padding: 8px 12px;
    }
} 




/* /////////////////////////////////////// Product Details Page Styles /////////////////////////////////////////// */


#details-product-images .owl-carousel .item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

#details-product-name {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark);
}

#details-product-description {
    font-size: 1.2rem;
    color: var(--light);
}

.text-decoration-line-through {
    text-decoration: line-through;
}

.text-success {
    color: var(--primary) !important;
}

.form-select, .form-control {
    border: 1px solid var(--light);
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
}

.btn-success {
    background-color: var(--primary);
    border: none;
    color: var(--dark);
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-success:hover {
    background-color: #17a217;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #details-product-name {
        font-size: 2rem;
        padding-top: 25px;
    }

    #details-product-description {
        font-size: 1rem;
    }

    .form-select, .form-control {
        font-size: 0.9rem;
    }
}


/* //////////// collection banner //////////////////// */



.bannertopcollection {
    padding-bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.bannertopcollection img {
    max-width: 100%;
    height: auto;
    width: 1540px;
    
    
}

@media (max-width: 768px) {
    .bannertopcollection img {
        content: url(../img/collection-mb.jpg); 
        height: auto;
        width: 720px;
    
    }
}



/* //////////// size chart banner //////////////////// */



.sizechart {
    padding-bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.sizechart img {
    max-width: 100%;
    height: auto;
    width: 1540px;
    
    
}

@media (max-width: 768px) {
    .sizechart img {
        content: url(../img/size-mb.jpg); 
        height: auto;
        width: 720px;
    
    }
}


/* //////////// home page card images //////////////////// */

.image-card-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

.image-card {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    width: 100%;
    max-width: 240px;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 12%;
    background: #088b47;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding: 10px;
}

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

@media (max-width: 768px) {
    .image-card-wrapper {
        grid-template-columns: 1fr;
        margin-left: 19px;
    }

    .image-card {
        max-width: 100%;
    }
}




/* ////////////// nav bar dropdown //////////////////////// */


/* Dropdown Menu Styling */
.dropdown-menu {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Dropdown Item Styling */
.dropdown-item {
    color: black;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #088b47;
    color: #fff;
}

/* Ensure Dropdown Opens on Hover (Desktop Only) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Toggler Icon Color */
.navbar-toggler {
    border-color: #cccccc;
}

.navbar-toggler .fa-bars {
    color: black;
}





/* //////////////////////// catagory ////////////////////// */




/* Section Styling */
section {
    padding-top: 40px;
    padding-bottom: 40px;
}

section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: #222;
}

/* Product Container Styling */
#bestsellers-container, 
#salads-container, 
#meals-container, 
#wraps-container, 
#sand-container,
#desserts-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 3 products in a row */
    gap: 20px;
}



/* Responsive Design */
@media (max-width: 900px) {
    #bestsellers-container, 
    #salads-container, 
    #meals-container, 
    #wraps-container, 
    #sand-container,
    #desserts-container {
        grid-template-columns: repeat(2, 1fr); /* 2 products in a row for tablets */
    }
    
}




  .product-text h3 {
    font-size: 20px;
    margin-top: 20px;
  }




@media (max-width: 600px) {
  #bestsellers-container, 
  #salads-container, 
  #meals-container, 
  #wraps-container, 
  #sand-container,
  #desserts-container {
    grid-template-columns: 1fr; /* One product per row */
  }

  .product-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
  }

  .card-top {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .product-card img {
    width: 145px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
  }

  .product-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .product-text h3 {
    font-size: 16px;
    margin: 0 0 4px 0;
  }

.product-text .detail {
margin-top: 10px;
  /* display: flex;
  flex-direction: row; align prices in same line */
  align-items: center;
  gap: 8px; /* spacing between original and discounted price */
}


  .product-card button.view-details {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    background-color: #088b47;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
}





















/* //////////////////////// menu links on product details page ////////////////////// */


.menu-section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
}

.menu-label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.menu-links {
    display: flex;
    gap: 10px;
    justify-content: flex-start; /* Aligns buttons to the left */
}

.menu-links a {
    color: #088b47;
    border: 1px solid #088b47;
    padding: 6px 12px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.menu-links a:hover {
    background: #088b47;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 600px) {
    .menu-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu-links {
        flex-wrap: wrap;
    }

    .menu-links a {
        font-size: 12px;
        padding: 5px 10px;
    }
}


/* //////////////////////////////// why choose us //////////////////////////////////// */



a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

a,
a:active,
a:focus {
    color: #000000;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
max-width: 100%;
height: auto;
}

span, a, a:hover {
display: inline-block;
text-decoration: none;
color: inherit;
}

.item {
background: #f7f7f7;
text-align: center;
padding: 30px 25px;
border-radius: 20px;
margin-bottom: 30px;
-webkit-transition: all .5s ease 0;
transition: all .5s ease 0;
transition: all 0.5s ease 0s;
}

.item p{
font-size:15px;
line-height:26px;
}

.item h6 {
margin-bottom:20px;
color:#2f2f2f;
}

/* ///////////////////// title lines on product page//////////////////// */

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-title .line {
    flex: 1;
    height: 2px;
    background-color: #088b47;
    max-width: 100px; /* Adjust line length */
}

.section-title h1 {
    color: black;
    white-space: nowrap;
    padding: 0 10px;
}






/* /////////////////////// subscription //////////// */


:root {
  --primary-color: #088b47;
  --success-color: #088b47;
  --danger-color: #dc3545;
  --warning-color: #ff7300;
  --shadow-color: rgba(8, 139, 71, 0.2);
}




.nav-pills .nav-link {
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.3rem;
  color: #444;
  box-shadow: 0 4px 15px rgb(0 0 0 / 0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-pills .nav-link.active {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 6px 20px rgb(8 139 71 / 0.5);
}

.nav-pills .nav-link i {
  font-size: 1.1rem;
}

.plan-card {
  border-radius: 10px;
  background: white;
  border: 1px solid #cfcfcf;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.plan-card h5 {
  font-size: 1.15rem;
  color: #000000;
  margin-bottom: 0.3rem;
}

.plan-card h3 {
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: 0.2rem;
}

.plan-card p {
  font-size: 0.9rem;
  color: #666;
}

.plan-card ul li {
  font-size: 0.9rem;
  padding-left: 1.8rem;
  margin-bottom: 0.5rem;
  position: relative;
  color: #444;
}

.plan-card ul li .check-icon {
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background-color: var(--success-color);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6 10.793l-3.646-3.647-.708.707L6 12.207l8-8-.707-.707z"/></svg>') no-repeat center / contain;
  mask: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6 10.793l-3.646-3.647-.708.707L6 12.207l8-8-.707-.707z"/></svg>') no-repeat center / contain;
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--warning-color);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
}



@media (max-width: 575.98px) {
  .plan-card h3 {
    font-size: 1.5rem;
  }
  .plan-card h5 {
    font-size: 1.05rem;
  }
}



.card {
      border: none;
      border-radius: 1rem;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .card-img {
      height: 250px;
      object-fit: cover;
      border-radius: 1rem;
      transition: transform 0.3s ease;
    }

    .card:hover .card-img {
      transform: scale(1.05);
    }

@media (max-width: 600px) {
      .card-img {
      height: auto;
      object-fit: cover;
      border-radius: 1rem;
      transition: transform 0.3s ease;
    }
}

@media (max-width: 900px) {
      .card-img {
      height: auto;
      object-fit: cover;
      border-radius: 1rem;
      transition: transform 0.3s ease;
    }
}

@media (max-width: 1200px) {
      .card-img {
      height: auto;
      object-fit: cover;
      border-radius: 1rem;
      transition: transform 0.3s ease;
    }
}

