/********** Template CSS **********/
:root {
    --primary: rgb(230, 64, 64);
    --light: #F1F8FF;
    --dark: #0F172B;
}

.ff-secondary {
    font-family: "Kaushan Script", serif;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
    background-color:red;
}

.btn-square {
    width: 38px;
    height: 28px;
}

.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: 2px;
}
/*----logo---*/
.logo-img{
   width: 12%;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  
    margin-left: 25px;
    padding: 35px 0;
    font-size: 15px;
    color: var(--light) !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding:  0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-dark .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 45px;
}
.footer-menu{
    margin-left:50%;
}
.img-fluid{
    width:100%;
}
/*--nav mobile responsive--*/
@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    background-color: #000!important;

  }
 .navbar-dark .navbar-collapse {
      margin-top: 15px;
      border-top: 1px solid rgba(255, 255, 255, .1)
  }

  .navbar-dark .navbar-nav .nav-link,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
      padding: 10px 0;
      margin-left: 0;
  }

  .navbar-dark .navbar-brand img {
      max-height: 25px;
  }
   /*----logo---*/
   .logo-img{
    width:40%;
    height:10%;
    margin-top:1%;
   }
}
@media (min-width: 992px) {
  .navbar-dark {
    background-color: #000!important;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 999;
      background: transparent !important;
  }
  
  .sticky-top.navbar-dark {
    background-color: #000!important;
      background: var(--dark) !important;
  }
}
/*** Hero nav header with img***/
.hero-header { 
 background: linear-gradient(rgba(180, 13, 13, 0.9), rgb(5, 9, 56)), url(../img/ba.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
 
}

.hero-header img {
  animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate { 
  100% { 
      transform: rotate(360deg); 
  } 
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, .5);
  
}
.img1{
  width: 100%;
  height: 400px;
  margin-bottom:4%;
}
/*--carausal Start--*/
.img_height{
  height: 520px;
 
 }
 .m_701 {
  display: none;
}

@media (max-width: 768px) {
  .m_70 {
    display: none;
  }

  .m_701 {
    display: inline-block;
  }
  .img_height{
    height: 500px;
   
   }
  
}

/*** Youtube Video ***/
.video {
  position: relative;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  transition: all 200ms;
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--dark);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
  }

  100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #FFFFFF;
  background: #000000;
  opacity: 1;
}
/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
}
 /*--mobile responsive carausal--*/
 @media(max-width:768px){
  section-title{
    margin-top: 80%;
  }
    
 }


.section-title::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  left: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  right: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
  display: none;
}

/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, .08);
  transition: .5s;
}

.service-item:hover {
  background: var(--primary);
}

.service-item * {
  transition: .5s;
}

.service-item:hover * {
  color: var(--light) !important;
}
/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #FFFFFF;
  border-radius: 35px;
  transition: .3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #FFFFFF;
  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 {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.dropdown-item:hover {
  background-color: rgb(221, 70, 70) !important;
  color: white; /* Optional: Change text color to white for better contrast */
}
/*-----Catering----*/
.wid_img{
    width:98%;

}
.text_dec{
  margin-left: 25%;
}
/*--Gallery start--*/
.photo1{
    width:40%;
}
.clickable-image {
    width: 300px; /* Adjust the size as needed */
    cursor: pointer; /* Changes the cursor to a pointer when hovering over the image */
    margin-left: 35px;
    margin-right: 25px;
    margin-bottom: 24px;
}
.clickable-image:hover {
    transform: scale(1.10); /* Slightly enlarge image */
    opacity: 0.9; /* Slightly fade */
}
/*--Gallery End--*/


    /* gallery */
    @media(max-width:768px){
    .clickable-image {
        width: 238px; /* Adjust the size as needed */
        cursor: pointer; /* Changes the cursor to a pointer when hovering over the image */
        margin-left:5px;
        margin-bottom: 24px;
    }
  }
/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 38px);
    transition: .5s;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item:hover {
    height: 100%;
}

.team-item .btn {
    border-radius: 38px 38px 0 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}
/*** Menu Start*/
#reservation .section-heading {
    margin-bottom: 30px;
  }
  
  #reservation .section-heading h6 {
    color: #fff;
  }
  
  #reservation .section-heading h2 {
    color: #fff;
    font-weight: 700;
  }
  
  #reservation .section-heading h6:before {
    background-color: #fff;
  }
  #reservation p {
    color: #fff;
    margin-bottom: 65px;
  }
  
  #reservation {
    padding: 120px 0px;
background-color: rgb(141, 20, 20); 
   background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  #reservation .phone,
  #reservation .message {
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
    padding: 0px 0px 20px 0px;
  }
  
  #reservation .phone i,
  #reservation .message i {
    width: 70px;
    height: 70px;
    display: inline-block;
    text-align: center;
    line-height: 70px;
    color: #fff;
    background-color:rgb(197, 24, 24) ;
    border-radius: 50%;
    font-size: 24px;
    margin-top: -35px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  #reservation .phone h4,
  #reservation .message h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 10px;
  }
  
  #reservation .phone span a,
  #reservation .message span a {
    font-size: 14px;
    color: #2a2a2a;
    transition: all .3s;
  }
  
  #reservation .phone span a:hover,
  #reservation .message span a:hover {
    color: rgb(197, 24, 24) ;
  }
  
  #contact {
    margin-left: 30px;
    padding: 45px 30px;
    background-color: #fff;
    border-radius: 5px;
  }

#contact h4 {
    text-align: center;
    font-weight: 700;
    font-size: 30px;
    color: #2a2a2a;
    margin-bottom: 20px;
  }
  .section-title{
    margin-top: -10%;
  }
  .datepicker-days {
    padding: 30px;
    cursor: pointer;
  }
  
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    color: #2a2a2a;
    font-size: 14px;
    border: 1px solid #ddd;
    background-color: #fff;
    width: 100%;
    height: 46px;
    border-radius: 5px;
    outline: none;
    padding-top: 3px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-bottom: 15px;
  }
  /*--banquet mobile responsive--*/
  @media(max-width:768px){
   
  .contact-form {
    
    margin-top: 8%;
    margin-left: -12%;
    margin-bottom: -10%;
  }
  #reservation .message {
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
    padding: 0px 0px 20px 0px;
    margin-top: 14%;
  }
  }
  .contact-form input:focus,
  .contact-form textarea:focus,
  .contact-form select:focus {
    border-color: rgb(197, 24, 24) ;
  }
   .contact-form button {
    margin-top: -10px;
    font-size: 13px;
    color: #fff;
    background-color:rgb(197, 24, 24) ;
    padding: 12px 25px;
    width: 100%;
    box-shadow: none;
    border: none;
    display: inline-block;
    border-radius: 3px;
    font-weight: 600;
    transition: all .3s;
  }
  
  .contact-form button:hover {
    opacity: .9;
  }
  
  .contact-form textarea {
    height: 150px;
    resize: none;
    padding: 20px;
  }
  
  .contact-form ::-webkit-input-placeholder { /* Edge */
    color: #2a2a2a;
  }
  
  .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #2a2a2a;
  }
  
  .contact-form ::placeholder {
    color: #2a2a2a;
  }
/*--sweets Menu Start--*/
#menu {
    background-color: #fffafa;
    padding-top: 20px;

  }
  
#menu{
    margin-bottom: 50px;
  }
  
  .card {
    margin: 0 auto;
    max-width: 200%;
    min-height: 320px;
    overflow: hidden;
    background-size: contain;  /* Ensures full image is visible */
    background-repeat: no-repeat;
    background-position: center; /* Center the image */
}

  .card img {
    width: 60%;
    height: 100%;
    object-fit: cover; /* Image ko container ke size ke according crop karega */
    border-radius: 10px; /* Optional for rounded corners */
}


  /* card1 images */
  
  .card1 {
    background-image: url(../img/sweet/1.webp);
    
  }
  .card2 {
    background-image: url(../img/sweet/2.webp);
  }
  .card3 {
    background-image: url(../img/sweet/3.webp);
  }
  .card4 {
    background-image: url(../img/sweet/4.webp);
  }
  .card5 {
    background-image: url(../img/sweet/5.webp);
  }
  
/* card2 images  */
.card6 {
  background-image: url(../img/cake/1.jpeg);
  
}
.card7 {
  background-image: url(../img/cake/2.jpeg);
}
.card8 {
  background-image: url(../img/cake/3.jpeg);
}
.card9 {
  background-image: url(../img/cake/4.jpeg);
}
.card10{
  background-image: url(../img/cake/5.jpeg);
}
/* card3 images */
.card11 {
  background-image: url(../img/namkeen/1.jpeg);
  
}
.card12 {
  background-image: url(../img/namkeen/2.jpeg);
}
.card13 {
  background-image: url(../img/namkeen/3.jpeg);
}
.card14 {
  background-image: url(../img/namkeen/4.jpeg);
}
.card15{
  background-image: url(../img/namkeen/5.jpeg);
}
/* card4 images */
.card16 {
  background-image: url(../img/dryfruits/1.webp);
  
}
.card17 {
  background-image: url(../img/dryfruits/2.webp);
}
.card18 {
  background-image: url(../img/dryfruits/3.webp);
}
.card19 {
  background-image: url(../img/dryfruits/4.webp);
}
.card20{
  background-image: url(../img/wedding/9.jpg);
}
  .info {
    position: relative;
    width: 100%;
    background-color: rgb(197, 24, 24) ;
    border: 1px solid rgb(197, 24, 24) ;
    transform: translateY(100%)
    translateY(120px)
    translateZ(0);
    transition: transform 0.5s ease-out;
  }
  
  .card:hover .info,
  .card:hover .info:before {
    transform: translateY(200px) translateZ(0);
  }
  
  .title {
    margin: 0;
    padding: 30px 30px 20px 30px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
  }
  
  .description {
    padding: 0px 30px;
    color: #fff;
  }
  
  #menu .price h6 {
    position: absolute;
    width: 70px;
    height: 70px;
    background-color:rgb(197, 24, 24) ;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    border-radius: 3px;
    text-align: center;
    line-height: 70px;
  }
  
  
  #menu .owl-menu-item {
    position: relative;
  }
  
  #menu .owl-nav {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: -80px;
    transform: translateY(5px);
  }
  
  #menu .owl-dots {
    display: none;
  }
      
  #menu .owl-nav .owl-prev{
    margin-right: 10px;
    outline: none;
  }
  
  #menu .owl-nav .owl-prev span,
  #menu .owl-nav .owl-next span {
    opacity: 0;
  }
  
  #menu .owl-nav .owl-prev:before {
    display: inline-block;
    font-family: 'FontAwesome';
    color: red;
    font-size: 25px;
    font-weight: 700;
    content: '\f104';
  }
  
  #menu .owl-nav .owl-prev {
    opacity: 0.75;
    transition: all .5s;
  }
  
  #menu .owl-nav .owl-prev:hover {
    opacity: 1;
  }
  
  #menu .owl-nav .owl-next {
    opacity: 0.75;
    transition: all .5s;
  }
  
  #menu .owl-nav .owl-next:hover {
    opacity: 1;
  }
  
  #menu .owl-nav .owl-next{
    margin-left: 10px;
    outline: none;
  }
  
  #menu .owl-nav .owl-next:before {
    display: inline-block;
    font-family: 'FontAwesome';
    color: rgb(197, 24, 24) ;
    font-size: 25px;
    font-weight: 700;
    content:'\f105';
  }
/* wedding gifts*/

/** product section **/
.product {
	background: #fff;
	padding-top: 60px;

}

.product .title {
	text-align:left;
	padding-bottom: 60px;
}

.product .title h2 {
	font-size: 50px;
	line-height: 55px;
	color:#ffc221;
	font-weight: 500;
	text-transform: uppercase;
    margin-bottom: 27px;
    position: relative;
    padding-bottom: 8px;
}

.product .title h2:after {
	position: absolute;
    border-bottom: #000 solid 10px;
    content: '';
    top: 100%;
    width: 110px;
}

.product .title span{
color:#070500;
font-size: 22px;
line-height: 28px;
margin-top: 20px;
}

.product-bg {
	background: url(../images/bg.jpg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
.product-bg-white {
	background: white;
	box-shadow: #00000040 0px 0px 25px 0px;
	padding-top: 80px;
	padding-bottom: 60px;
}
 .product-bg .product-bg-white .product-box {
 	background: rgb(180, 13, 13);
 	text-align: center;
 	margin-bottom: 30px;
 	padding: 20px 25px;

 }
 .product-bg .product-bg-white .product-box i img {width: 100%;}
 .product-bg .product-bg-white .product-box:hover {
 	background: #fdc24f;
 }

 .product-bg .product-bg-white .product-box  h3 {
 	color: white;
 	font-weight: 500;
 	font-size: 17px;
 	line-height: 20px;
 	padding-top: 15px;
 }

 .product-bg .product-bg-white .product-box span {
 	color: white;
 	font-weight: 500;
 	font-size: 22px;
 	line-height: 22px;
 }
.product-bg .product-bg-white .product-box span:hover {
	color: #fff;
}
.button{
        margin-left: 45%;
        margin-bottom: 5%;
        border-radius: 5px;
      }
  .logo2{
        margin-left: -2%;
      }
      /*
---------------------------------------------
Explore
---------------------------------------------
*/
 #explore {
 
  padding-bottom: 90px;
  border-bottom: 3px;
}
#explore .left-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: darkred;
}
#explore .left-content .quote i {
  float: left;
  font-size: 32px;
  margin-right: 15px;
  margin-top: 10px;
}

#explore .left-content .quote p {
  font-style: italic;
  color: #2a2a2a;
  font-weight: 500;
}

#explore .left-content p {
  font-size: 15px;
  color:#2a2a2a;
  font-weight: 500;
  display: block;
  margin-top: 25px;
}

#explore .left-content .main-border-button a {
  color: black;
  margin-top: 35px;
  background-color: #e52b34;
}
#explore img {
  width: 100%;
  overflow: hidden;
}
.btn2{
  width: 35%;
  height: 45px;
  font-weight: bold;
  text-align: center;
  font-size:15px;
  color: white;
  background-color: #e52b34;
  padding-top: 7px;

}
.col1{
height:430px;
width:85%;
background:white;
border-radius:10px;
}
.text_align{
text-align:left;
padding-left:10px;
padding-top:20px;
margin:0px;
}
.price{
height:40px;
border-top:1px solid lightgrey;
width:95%;
margin:0 auto;
}
/*  */
/*** Testimonial ***/
.testimonial1-carousel .owl-item .testimonial1-item,
.testimonial1-carousel .owl-item.center .testimonial1-item * {
    transition: .5s;
}

.testimonial1-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial1-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial1-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial1-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial1-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}
.m_701{
  display: none;
}
@media (max-width: 768px) {
.m_701{
display: block;  }
.m_70{
  display: none;
}
}
.btn3
{
  width: 15%;
  height: 45px;
  text-align: center;
  font-size:20px;
  color: white;
  background-color: #e52b34;
  padding-top: 6px;
  margin-left: 44%;
  margin-top: -2%;

}
@media (max-width: 768px) {
  .btn3
{
  width: 48%;
  height: 45px;
  text-align: center;
  font-size:15px;
  color: white;
  background-color: #e52b34;
  margin-left: 28%;
  padding-top: 4%;
}
}

