/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
*{
	margin: 0;
	padding: 0;
}
:root {
    --primary: #031a60;
    --text: #9e9d9e;
    --secondary: #a60e1d;
    --blue: #013e92;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Cormorant Garamond', serif;
}
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}
.container{
	max-width: 1250px;
}
/* ================================
   Desktop Navigation
================================ */
.top-bar{
	background: var(--primary);
	color: #fff;
	padding: 5px 0;
}
.top-bar i{
	color: #fff;
	font-size: 16px;
}
.top-bar a{
	text-decoration: none;
	color: #fff;
}
.top-bar-inner{
	display: flex;
	gap: 20px;
}
.top-bar-icon {
    display: flex;
    gap: 12px;
    align-items: center;
}
.top-bar-icon p{
    margin: 0 !important;
}
.top-bar-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .main-header {
/* 	 position: absolute;
      left: 0; */
      width: 100%;
      z-index: 10;
      background: #fff !important;
	padding: 10px 0;
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
    background: #fff !important;
    padding: 12px 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); 
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav > li {
  position: relative;
}
.logo-box img {
    width: 180px;
    height: auto;
}
.site-header .nav > li > a {
  text-decoration: none;
  padding: 5px 15px;
  font-weight: 600 !important;
  transition: all 0.3s ease;
  display: inline-block;
  color: #000 !important;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
    background: var(--secondary);
    padding: 5px 15px;
	color: #fff !important;
} 

.site-header .nav li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 9999;
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: #333;
  display: block;
  font-weight: 400;
 text-decoration: none;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: var(--secondary);
  color: #fff;
}
.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}
.site-header .nav li ul.sub-menu li {
  position: relative;
}
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
@media (max-width: 991px) {
  .site-header .nav {
    display: none; 
  }
}
/* ================================
   Mobile Menu
================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#mobileMenuBtn:hover{
	background: #fff;
}
#mobileMenuBtn i{
	color: var(--primary) !important;
}
#menu-primary-1 li {
    padding: 10px;
    border-bottom: 1px solid #fff;
}
#menu-primary-1 li a {
    color: #fff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}
 
#mobileMenu .menu-item-has-children {
    position: relative;
}
#mobileMenu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    display: none;
    z-index: 9999;
	color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children.active > .sub-menu {
    display: block;
}
#mobileMenu .sub-menu li a {
    padding: 0 10px;
    display: block;
    font-size: 15px;
    color: var(--primary) !important;
}
#mobileMenu .menu-item-has-children > a {
    position: relative;
    padding-right: 40px;
}
#mobileMenu .dropdown-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#mobileMenu .menu-item-has-children.active .dropdown-arrow i {
    transform: rotate(180deg);
}
.top-bar-icon .social-icons a i {
    border: 1px solid #ffffff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.top-bar-inner-box {
    display: flex;
    gap: 10px;
    align-items: center;
}
/* ================================
   Breadcrumb Section
=============================== */
.breadcrumb-section .container {
    display: flex;
    flex-direction: column;
    align-items: left;
    position: relative;
    top: 40%;
	z-index: 2;
}
section.breadcrumb-section {
    background: url(https://alsapagroup.com/wp-content/uploads/2026/06/bread-crumb.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 60vh;
	position: relative;
	padding:0;
}
.breadcrumb-item.active {
    color: var(--secondary) !important;
}
ol.breadcrumb {
    font-size: 18px;
    font-weight: 700;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: var(--primary) !important;
}
.breadcrumb-title h2 {
    color: var(--primary);
}
li.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}
/*===============================
      FOOTER SECTION CSS
================================= */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 8px rgba(195,180,186,.49);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  z-index: 99;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.progress-wrap::after {
  position: absolute;
  content: "\f102";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 50px;
  text-align:center;
  font-size:16px;
  color: var(--primary);
  inset:0;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.underline1 {
    height: 2px;
    width: 100px;
    background: var(--secondary);
    margin: auto;
    margin-top: 8px;
}
.underline2 {
    height: 4px;
    width: 30px;
    background: var(--primary);
    margin: auto;
    margin-top: -3px;
}
.no-margin {
    margin-left: 0px;
}
footer {
    position: relative;
    background: url(https://alsapagroup.com/wp-content/uploads/2026/05/footer-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #000;
    z-index: 1;
	padding-top: 30px;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6); 
    z-index: -1;
}
footer > * {
    position: relative;
    z-index: 2;
}
footer .btn-primary {
    padding: 8px 20px;
    margin-top: 8px;
    letter-spacing: 1px;
    font-size: 14px;
    border: 1px solid var(--secondary);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.footer_top {
    background: #009f0726;
    border-radius: 0 0 15px 15px;
    padding: 0 15px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.footertop-cnt p a {
  
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
  
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 155px;
    display: block;
}
.footer_menu {
    padding: 40px 0 0 0;
}
.footer-details li {
    display: flex;
    margin-bottom: 15px;
    position: relative;
    gap: 20px;
}
ul.footer-details li i {
    background: var(--secondary);
    padding: 10px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}
footer ul li.menu-item a {
    display: inline-block;
}
footer ul li.menu-item:last-child a {
    margin: 0;
}
.menu,.footer-details {
    margin-top: 25px;
}
footer h3 {
    margin-bottom: 15px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
footer p {
    margin-bottom: 6px;
    line-height: 27px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer a{
	color: var(--dark) !important;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer .menu li{
	padding-left: 0 !important;
	color: var(--primary) !important;
	  transition: transform 0.3s ease;
	line-height: 40px;
	margin-left: 35px;
}
footer .menu li::after {
  content: "\f101"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
footer .social-icons {
    display: flex;
    transition: 0.3s;
}
.footer-right {
    background: #031a6014;
    padding: 30px;
    border-radius: 20px;
}
footer .social-icons a:hover{
	background: var(--primary);
}
footer .social-icons a {
    display: flex;
    text-decoration: none;
    color: var(--light);
    background-color: var(--primary);
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}
footer ul li, footer ul li a, footer p a {
    font-weight: 600;
    position: relative;
    text-decoration: none;
    color: #000;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid var(--secondary);
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: var(--white);
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 300;
}
.copyright p a {
    color: var(--white);
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}
#GoToTop i{
	color: #fff;
}
#GoToTop:hover {
  background: var(--primary);
  transform: scale(1.1);
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 32px;
    color: var(--white);
    z-index: 1;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}
/* ================================
Btn Primary
================================ */
.wpcf7-submit,
.btn-primary{
    position:relative;
    display:inline-block;
    background: var(--secondary);
    color:#fff;
    text-decoration:none;
    font-size: 16px;
    font-weight:500;
    padding: 7px 30px;
    transition:0.4s ease;
    z-index:2;
	border:none;
}
.btn-primary::before, .btn-primary::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    border: 3px solid var(--secondary);
    transition: 0.5s ease;
}
.btn-primary::before{
    top:-14px;
    right:-14px;
    border-left:none;
    border-bottom:none;
}
.btn-primary::after{
    bottom:-14px;
    left:-14px;
    border-right:none;
    border-top:none;
}
.wpcf7-submit:hover,
.btn-primary:hover{
    background: var(--primary);
    color:#fff;
}
.btn-primary:hover::before{
    width:100%;
    height:2px;
    top:-12px;
    right:0;
    border:none;
    background:var(--primary);
}
.btn-primary:hover::after{
    width:100%;
    height:2px;
    bottom:-12px;
    left:0;
    border:none;
    background:var(--primary);
}
/* ================================
   		Hero Slider
================================ */
section{
	padding: 80px 0 0;
}
section.hero {
    padding: 0;
}
.hero-slide {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
.carousel-caption-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 700px;
  z-index: 5;
  color: #fff;
}
.carousel-caption-custom h1 {
    font-size: 60px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #fff;
}
.carousel-caption-custom p {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 2rem;
}
.hero-buttons {
  margin-top: 20px;
}
.carousel-controls {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.carousel-controls button {
    width: 45px;
    height: 45px;
    background: rgb(255 255 255 / 70%);
    border-radius: 50%;
    border: none;
    color: var(--primary);
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.animate-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*===================
  About Section 
=======================*/
.food-card {
    border-radius: 20px;
    overflow: hidden;
    padding: 15px;
    position: relative;
}
.food-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 15px;
}
.left-large {
    grid-row: span 2;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}
.left-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.left-large:hover img {
    transform: scale(1.08);
}
.top-right,
.bottom-right {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}
.top-right img,
.bottom-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.top-right:hover img,
.bottom-right:hover img {
    transform: scale(1.08);
}
.tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.5px;
}
h3.heading {
    position: relative;
    font-size: 50px;
    color: var(--secondary);
    margin: 0;
    padding: 0;
    text-align: center;
    display: inline-block;
    padding-bottom: 25px;
}
h3.heading::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    background: url('https://alsapagroup.com/wp-content/uploads/2026/05/heading-image.png') no-repeat center center;
    background-size: contain;
}
section.about-section {
    position: relative;
    background: url(https://alsapagroup.com/wp-content/uploads/2026/07/about-bg.avif);
    padding: 80px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
section.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(255 255 255 / 92%);
    z-index: -1;
}
.floating-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    z-index: 1;
}
.about-bottom {
    text-align: center;
    margin: 40px auto 0;
    width: 80%;
    background: #031a6012;
    padding: 30px;
    border-radius: 20px;
}
.floating-image img {
    width: 100%;
    display: block;
	opacity: 0.5;
}
/*============================
     Product section 
================================*/
.product-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    height:450px;
    cursor:pointer;
}
.product-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}
.product-card:hover img{
    transform:scale(1.08);
}
.product-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
}
.product-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: -130px;
    color: #fff;
    transition: 0.4s ease;
    height: 220px;
}
.product-content h3{
    font-size:32px;
    font-weight:700;
    margin:0;
    transition:0.4s ease;
}
.product-content p{
    margin-top:15px;
    font-size:15px;
    line-height:1.8;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:0.4s ease;
}
.product-btn{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    margin-top:20px;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:0.4s ease;
}
.product-btn:hover{
    background:#c69214;
    color:#fff;
}
.product-card:hover .product-content{
    bottom:40px;
}
.product-card:hover .product-content p,
.product-card:hover .product-btn{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
/* client Section */
.client-section{
	position: relative;
}
/* .product-bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 20%;
} */
/*===========================
    Blog Page Css 
==============================*/
.blog-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
}
.blog-card:hover{
    transform:translateY(-5px);
}
.blog-img{
    position: relative;
    overflow: hidden;
}
.blog-img img{
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease; 
}
.blog-card:hover .blog-img img{
    transform: scale(1.1);
}
.blog-img::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 9px;
    right: 9px;
    bottom: 9px;
    border: 1px solid #fff;
    z-index: 2;
    border-radius: 30px;
    pointer-events: none;
}
section.blog-section {
    padding: 80px 0;
}
.blog-content {
    padding: 20px 20px 40px 20px;
}
.blog-title{
    font-size:20px;
    margin-bottom:10px;
}
.blog-title a{
    text-decoration:none;
    color:#222;
}
.blog-content p{
    font-size:14px;
    color:#666;
}
.blog-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}
.blog-excerpt{
    margin:0;
    font-size:14px;
    color:#666;
}
/* Food Showcase */
.content-side{
    background:#031a6014;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 60px;
}
.content-inner{
    text-align:center;
    max-width:420px;
}
/* Image Grid */
.image-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    height:100%;
}

.grid-item{
    position:relative;
    overflow:hidden;
}

.grid-item img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:0.6s ease;
}
.grid-item:hover img{
    transform:scale(1.08);
}
.grid-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.15);
    opacity:0;
    transition:0.4s ease;
    z-index:1;
}
.grid-item:hover::before{
    opacity:1;
}
/* Service */
.food-feature-section{
    overflow:hidden;
    position:relative;
}
.feature-box{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:55px;
    transition:0.4s ease;
}
.feature-box:hover{
    transform:translateY(-5px);
}
.feature-left{
    text-align:right;
}
.feature-left .feature-box{
    flex-direction:row-reverse;
}
.feature-icon{
    width:55px;
    height:55px;
    min-width:55px;
    border:1px solid var(--primary);
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:var(--primary);
    transition:0.4s ease;
    background:#fff;
}
.feature-box:hover .feature-icon{
    background: var(--primary);
    color:#fff;
    transform:rotateY(180deg);
}
.feature-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}
.chef-image{
    text-align:center;
    position:relative;
}
/* About Page */
img.img-fluid.olive {
    position: absolute;
    right: 0;
    top: 0;
    width: 20%;
}
.about-page-section{
	position: relative;
}
.about-image-wrap {
 position: relative;
}
.main-image {
 width: 100%;
  height: 600px;
 object-fit: cover;
border-radius: 30px;
}
.experience-card h2 {
    font-size: 60px;
    font-weight: 600;
}
.experience-card {
    position: absolute;
    right: -30px;
    bottom: 30px;
    padding: 25px;
    background: var(--primary);
    color: white;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    align-content: center;
}
.feature-list {
  margin-top: 35px;
}

        .feature-box {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 10px;
            margin-bottom: 12px;
            border-radius: 14px;
            border: 1px solid #e5e7eb;
            transition: .3s;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            border-color: var(--secondary);
        }

        .feature-box i {
            color: var(--secondary);
            font-size: 20px;
        }

        .feature-box span {
            font-weight: 600;
        }
.right-side h5 {
    font-size: 23px;
    font-weight: 700;
    color: var(--primary);
}

.stats-section {
    background: var(--primary);
    padding: 60px 0;
    margin-top: 80px;
}
        .stat-box {
            text-align: center;
            color: white;
        }

        .stat-box h2 {
            color: var(--secondary);
            font-size: 60px;
            font-weight: 800;
        }

        .stat-box p {
            margin: 0;
            color: rgba(255,255,255,.8);
        }

        /* Mission Vision */

        .mission-card {
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,.08);
            transition: .3s;
            height: 100%;
        }

        .mission-card:hover {
            transform: translateY(-10px);
        }

        .mission-card i {
            font-size: 50px;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .mission-card h3 {
            font-weight: 700;
            margin-bottom: 15px;
        }

        /* Values */
.value-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: .3s;
    height: 100%;
    border: 1px solid #a60e1d52;
}
.value-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 20px 40px rgba(0,0,0,.08);
}
 .value-card .icon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #031a601c;
    display: flex;
    align-items: center;
    justify-content: center;
}
        .value-card .icon i {
            font-size: 30px;
            color: var(--secondary);
        }

.value-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 30px;
    color: var(--primary);
}
.value-card p {
    color: var(--text);
    margin-bottom: 0;
}
 /* CTA */
.cta-section {
    text-align: center;
    padding: 0 0 80px 0;
    margin-top: 80px;
}
.cta-inner {
    background: #a60e1d24;
    border-radius: 20px;
    padding: 45px 0;
    border-left: 2px solid var(--secondary);
    border-right: 2px solid var(--secondary);
}
.cta-section h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
}

        .cta-section p {
            max-width: 700px;
            margin: 20px auto;
            color: #000;
        }

     /* ================================
  Contact Page Css
================================ */
section.contact-inner-section {
    padding: 80px 0 70px;
}
   .contact-page-box {
    background: #ffffff82;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    border: 1px solid #e6e6e6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    flex-direction: column;
    justify-content: center;
}    
    .form-control {
        background: #f9f9f9;
        border: 1px solid #ddd;
        color: #000;
    }
.info-card p {
    margin: 0;
    padding: 0;
}
    .form-control:focus {
        border-color: var(--primary);
        box-shadow: none;
    } 
    .info-card {
        padding: 35px 25px;
        background: #fff;
        border-radius: 10px;
        border: 1px solid #ececec;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        transition: 0.3s;
		display: flex;
		gap: 30px;
    }
	.info-card a{ 
		color: #000 !important;
		text-decoration: none;		
	}
    .info-card:hover {
        border-color: var(--primary);
        transform: translateY(-4px);
    }
   .info-card i{
        font-size: 28px;
        color: var(--primary);
        margin-bottom: 10px;
    }
    .info-card h6 {
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: 600;
    }
    .map-section iframe {
        width: 100%;
        height: 450px;
        border: 0;
        border-radius: 12px;
        margin-top: 40px;
    }
/* Service Page */
h2.main-heading {
    font-size: 35px;
    font-weight: 600;
}
.list li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    line-height: 40px;
}
.list li::before {
  content: "\f101"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  position: absolute;
  left: 0;
  color: var(--primary);
}
.image-box img {
    border-radius: 20px;
    box-shadow: 0 0 10px 0 #80808057;
    height: 450px;
    width: 100%;
    object-fit: cover;
}
.product-section .container > section:last-child {
    padding: 80px 0;
}
/* Partner Page */
.intro-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
    border-left: 3px solid var(--secondary);
    border-right: 3px solid var(--secondary);
}
.partner-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}
.partner-card:hover{
    transform:translateY(-10px);
}
.partner-icon {
    width: 85px;
    height: 85px;
    margin: auto auto 25px;
    border-radius: 50%;
    background: #031a6026;
    color: var(
    --secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}
.partner-card h4{
    font-size:25px;
    margin-bottom:15px;
    color: var(--secondary);
}
.commitment-section {
    background: #a60e1d14;
    padding: 80px 0;
    margin-top: 80px;
}
.commitment-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}
.commitment-box h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 35px;
}

/* Responsive */
@media(max-width: 1200px){
	.carousel-caption-custom h1 {
		font-size: 45px;
	}
}
@media(max-width: 1024px){
	
}
@media(max-width: 991px){
	.feature-left .feature-box {
		flex-direction: row;
	}
	.feature-left {
		text-align: left;
	}
}
@media(max-width: 767px){
	section.about-section{
		padding: 35px 0;
	}
	section {
	   padding: 35px 0 0;
	}
	h3.heading{
		font-size: 35px;
	}
	section.blog-section {
		padding: 35px 0;
	}
	.carousel-controls {
		position: absolute;
		top: 90%;
		left: 20px;
		transform: translateY(-50%);
		z-index: 6;
		display: flex;
		flex-direction: row;
		gap: 10px;
	}
	.about-bottom{
		width: 100%;
		margin: 35px auto 0;
	}
	.product-card{
		height: auto;
	}
	.stats-section {
		background: var(--primary);
		padding: 30px 0;
		margin-top: 35px;
	}
	.cta-section {
		text-align: center;
		padding: 0 0 35px 0;
		margin-top: 35px;
	}
	img.img-fluid.olive{
		display: none;
	}
	.product-section .container > section:last-child {
		padding: 35px 0;
	}
	.commitment-section {
		background: #a60e1d14;
		padding: 35px 0;
		margin-top: 35px;
	}
	section.contact-inner-section {
		padding: 35px 0 30px;
	}
}
@media(max-width: 667px){
	
}
@media(max-width: 568px){
	.carousel-caption-custom h1 {
		font-size: 35px;
	}
	.feature-content h3 {
		font-size: 22px;
		font-weight: 700;
		color: var(--primary);
		margin-bottom: 7px;
	}
	.footer_menu {
		 padding: 0 0; 
	}
	.experience-card{
		right: 0;
	}
	.content-side{
		padding: 35px 20px;
	}
	.image-grid {
		display: grid;
		grid-template-columns: repeat(2,1fr);
		height: 100%;
	}
}
@media(max-width: 479px){
	.food-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .food-grid .large-item {
        grid-row: auto;
    }

    .food-grid img {
        height: auto;
    }
	.commitment-box h3{
		font-size: 28px;
	}
	.commitment-box,.contact-page-box {
		padding: 20px;
	}
	.partner-card{
		padding: 15px;
	}
	.intro-box{
		padding: 15px;
	}
	.section-padding .heading{
		font-size: 28px;
	}
	.info-card{
		gap: 10px;
    	flex-direction: column;
	}
}
@media(max-width: 414px){
	
}
@media(max-width: 375px){
	
}
@media(max-width: 360px){
	
}
@media(max-width: 325px){
	
}