@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
:root{
  --bs-primery-color: #c62800;
  --bs-second-color:#0c0402;
 --bs-red:#e63705;
  --bs-grey:#696567;
  --bs-yellow:#ffe8a1;

}

body{
    font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: normal;
}
h1, h2, h3,h4 {
     font-family: "Ubuntu", sans-serif;
     font-weight: 700;
}
/* Top Bar */
.top-bar{
width: 100%;
    font-size:14px;
    padding:8px 0;
    border-bottom: solid 1px;
    border-color: var(--bs-grey);
}
.call {
    color: var(--bs-red);
    font-weight: 500;
    margin: 0px;
}
.top-bar a {
    text-decoration: none;
    color: var(--bs-second-color);
}

/* Cart Wrapper */
.cart-wrapper{
    position:relative;
    width:60px;
    height:60px;
   

    justify-content:center;
    align-items:center;
    border-radius:4px;
}
.topbaritems {
    display: flex;
}
/* Cart Icon */
.cart-icon{
    font-size:28px;
    color:#444;

}
.righticons {
    font-size:20px;
}
/* Badge */
.cart-badge{
    position:absolute;
    top:-20px;
    right:-15px;
    background:#ff3c00;
    color:#fff;
    font-size:12px;
    font-weight:bold;
    padding:6px 6px;
    border-radius:50px;
    line-height:1;
    min-width:24px;
    text-align:center;
}

.cart-badge2{
    position:absolute;
  margin-top: -20px;
  margin-left: -20px;
    background:#ff3c00;
    color:#fff;
    font-size:10px;
    font-weight:bold;
    padding:6px 6px;
    border-radius:50px;
    line-height:1;
    min-width:24px;
    text-align:center;
}
/* Navbar */
#menuIcon {
  transition: 0.3s ease;
}

.bi-x {
  transform: rotate(180deg);
}
.navbar{
    padding:0px 0;
}
.navbar-brand.fw-bold{ max-width: 320px; }
.wpcf7-submit{ background: #f83c00; color: #fff; font-weight: bold;  }
.wpcf7-textarea{ height: 100px; }


.navbar-brand img{
width: 100%;
}
.navbar-brand span{
    color:#d63300;
    font-weight:700;
}

.navbar-expand-lg {
    flex-wrap: wrap;
}
.nav-link {
    font-size: 14px;
    padding: 0px;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show  {
    color: var(--bs-primery-color);
}
.nav-link:hover {
color: var(--bs-primery-color);
}
.navbar-toggler {
    border:0px!important;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 0;
}
.search-modal{
    border-radius:15px;
    border:none;
}

.search-input{
    height:55px;
    border-radius:50px 0 0 50px;
    padding-left:20px;
    font-size:16px;
}

.btn-search{
    border-radius:0 50px 50px 0;
    background: var(--bs-primery-color);
    color:#fff;
}

.btn-search:hover{
    background: var(--bs-red);
}

#heroCarousel{
    margin-top: -185px;
}
/* Hero Section */
/* Hero Slide */
.hero-slide{
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}
.slide01 {
    background:url(../images/banner_01_bg.jpg);
    background-size: cover;
}
.slide02 {
    background:url(../images/banner_02_bg.jpg);
    background-size: cover;
}
/* Dark overlay (optional if needed) */
.hero-slide::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    
}
.hero-img img {
    width: 100%;
    height: auto;
}
.heropadtop {
    padding-top: 180px;
}
.hero-img {
    padding-top: 50px;

     animation: slideUp 1s ease-in-out;
}
.justify-content-right {
    justify-content: right;
}
.carousel-indicators [data-bs-target] {
    border-top: 0px;
    border-bottom: 0px;
}
.carousel-indicators {
    justify-content: left;
    margin-left: 8%;
}
/* Content */
.hero-content{
    position:relative;
    z-index:2;
    animation: slideUp 1s ease-in-out;
}

.hero-content h1{
    font-size:45px;
    font-weight:700;
    color:var(--bs-primery-color)
}

.hero-content h4{
    font-weight:500;
    color:var(--bs-grey);
    margin-bottom:20px;
}

.hero-content p{
    color:#444;
    margin-bottom:20px;
    font-size: 15px;
}

/* Button */
.btn-buy{
    border:2px solid #d63300;
    color:#d63300;
    padding:10px 30px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.btn-buy:hover{
    background:#d63300;
    color:#fff;
}

/* Animation */
@keyframes slideUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Carousel Indicators */
.carousel-indicators [data-bs-target]{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#000;
}

.carousel-indicators .active{
    background:#d63300;
}

/* Responsive */
@media(max-width:991px){
    .hero-content h1{
        font-size:38px;
    }
    .hero-slide{
        text-align:center;
    }
}
/* Keyframes */
@keyframes slideInLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0);}
}

/* Responsive */
@media(max-width:991px){
    .hero-title{
        font-size:36px;
    }
    .hero-section{
        text-align:center;
    }
}

@media screen and (max-width: 992px) {
.topbaritems {
    display: block;
}
.rightalign {
    text-align: right;
    padding-right: 25px;
}
.navbar-brand  {
    width: 75%;
}
.navbar-brand img{
width: 100%;
}
.hero-img {
    padding-top: 80px;
}
.heropadtop {
    padding-top: 10px;
}
.hero-slide{
    height: auto!important;
    background-size: cover;
    background-position: center;
    position: relative;
}
.carousel-indicators {
margin-bottom: -1.5rem;
}
.slide01 {
    background:url(../images/banner_01_bg_m.jpg);
    background-size:contain;
    background-repeat: no-repeat;
}
.slide02 {
    background:url(../images/banner_02_bg_m.jpg);
    background-size:contain;
    background-repeat: no-repeat;
}
#heroCarousel {
    margin-top: -20px;
}
 .cart-badge2{
    position:absolute;
  margin-top: 1px;
  margin-left: 15px;
    background:#ff3c00;
    color:#fff;
    font-size:10px;
    font-weight:bold;
    padding:6px 6px;
    border-radius:50px;
    line-height:1;
    min-width:24px;
    text-align:center;
}
.nav-item {
    padding: 8px 0px;
    border-bottom: solid 1px;
    border-color: var(--bs-grey);
}
}
.dropdown::after {
    box-sizing: content-box;
}
.dropdown::before {
    box-sizing: content-box;
}
@media (min-width: 992px) {

    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    /* Submenu positioning */
    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-left: 0;
        display: none;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

   

}

/* Dropdown styling */
.dropdown-menu {
    border-radius: 10px;
    padding: 10px 0;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.dropdown-item {
    padding: 8px 20px;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: var(--bs-primery-color);
    color: #fff;
}
*::after {
  box-sizing: border-box;
}

/* Desktop hover dropdown */
@media (min-width: 992px) {

  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    display: none;
  }

  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}



/* HERO SECTION */
.hulwa{
  background:#d62c00;
  padding:10px 0;
  border-top-right-radius:200px;
  border-bottom-right-radius:200px;
  overflow:hidden;
    width:95%;
}

.hulwa_container{


  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  margin-left: 10%;
}
.btn_white{
  display:inline-block;
  background:#fff;
  color:#d62c00;
  padding:12px 28px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn_white:hover{
  background:#000;
  color:#fff;
}
.hulwa-content h3 span {
    color: var(--bs-yellow);
}
.feature {
   color: var(--bs-yellow); 
   display: inline-flex;
 align-items:center;
  justify-content:space-between;
  font-size: 16px!important;
  gap: 5px;
}

/* LEFT CONTENT */
.hulwa-content{
  color:#fff;
  flex:1;
  animation: slideLeft 1s ease forwards;
}

.hulwa-content h1{
  font-size:42px;
  font-weight:700;
  margin-bottom:20px;
  line-height:1.2;
}

.hulwa-content p{
  font-size:16px;
  margin-bottom:25px;

}

.features{
  display:flex;
  gap:25px;
  margin-bottom:30px;
  flex-wrap:wrap;
}

.feature{
  font-size:14px;
  font-weight:500;
}


/* RIGHT IMAGE */
.hulwa-image{
  flex:1;
  text-align:center;
  animation: slideRight 1s ease forwards;
}

.hulwa-image img{
  width:100%;
  max-width:450px;
  animation: float 4s ease-in-out infinite;
}

/* ANIMATIONS */
@keyframes slideLeft{
  from{
    opacity:0;
    transform:translateX(-60px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes slideRight{
  from{
    opacity:0;
    transform:translateX(60px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes float{
  0%{ transform:translateY(0px); }
  50%{ transform:translateY(-20px); }
  100%{ transform:translateY(0px); }
}

/* RESPONSIVE */
@media(max-width:991px){
  .hulwa_container{
    flex-direction:column;
    text-align:center;
  }

  .hulwa{
    border-radius:0;
    padding:60px 20px;
  }

  .hulwa-content h1{
    font-size:32px;
  }
  .hulwa{

    width:100%;
}
}



#navbar.scrolled {
    background-color: #fff; /* Change to your desired color */

  box-shadow: 0px 2px 4px #e0e0e0;
}



.productss{
  padding:80px 0;
  background-color: #f1e3d4;
}
.productss h2 {
    font-size: 30px!important;
}
.text-purple {
            color: #4b3fbf;
        }

        /* Oculta la línea de tabs predeterminada */
        .nav-tabs {
            border-bottom: solid 1px #000;
            display: flex;
            justify-content: left;
            gap: 10px;
        }

        /* Estilo individual de cada tab como una card */
        .nav-tabs .nav-link {
        
           
            
            color:var(--bs-second-color);
            padding: 5px 20px;

            transition: all 0.3s ease-in-out;
            text-transform: uppercase;
            font-weight: 700;
              border: 0px;
        }

        /* Efecto hover para que parezca una card con elevación */
        .nav-tabs .nav-link:hover {
            background:none;
            border: 0px;
            color: var(--bs-red);
        }

        /* Card activa */
        .nav-tabs .nav-link.active {
            background:none;
            color:var(--bs-red);
         border: 0px;
       
         
           
            
        }
.pr2 {
  padding-right: 15px;
}
        /* Contenido de los tabs como una card */
        .tab-content {
            margin-top: 30px;
            background: none!important;
            border-radius: 10px;
        }

        @media (max-width: 776px) {
            .tab-content>.tab-pane {
                display: block;
                opacity: 1;
            }
        }

        @media (min-width: 992px) {

            /* Mantiene el borde superior en tabs inactivos */
            .tab-pane.accordion-item {
                border: 1px solid #dee2e6;
                border-radius: 10px;
                background: none!important;
            }

            /* Asegura que el borde superior sea visible siempre */
            .tab-pane.accordion-item:not(.show) {
                border-top: 1px solid #dee2e6;
            }
        }


        /* Acordeon */

        .accordion-button:not(.collapsed) {
            color: var(--bs-red) ;
            background-color:#fffaeb;
            padding: 0px 8px;

        }

        .accordion-button {
            background-color: #f8f9fa;
            color: black;
            text-transform: uppercase;
            font-weight: 700;
        }

        /* Mantiene la flecha original de Bootstrap pero cambia su color */
        .accordion-button::after {
            filter: brightness(0);
            /* Flecha negra por defecto */
        }

        /* Flecha blanca cuando el acordeón está activo */
        .accordion-button:not(.collapsed)::after {
            filter: brightness(20) invert(1);
            /* Invierte el color de negro a blanco */
        }

        .accordion-button:focus {
            box-shadow: none !important;
        }

.subtitle{
  color:#d63300;
  font-weight:600;
  text-align:center;
}

.productss h2{
  text-align:center;

  font-size:36px;
}



/*#news-slider {
  margin-top: 80px;
}*/

.owl-carousel .owl-wrapper {
    display: flex !important;
}
.owl-carousel .owl-item img {
    width: 100%;
    height: 200px!important;
    object-fit: cover;
    max-width: initial;
}

.owl-carousel .owl-item .post-description {
    width: 100%;
    height: 100%;

}
.post-slide {
	background: #fff;
	
	margin:0px 10px;
 height: 100%;
	padding-bottom: 20px;
  }
  .post-description {
     height: 100%;
  }
  .post-slide .post-img {
	position: relative;
	overflow: hidden;

  }
  .post-slide .post-img img {
	width: 100%;
	height: auto;
	transform: scale(1, 1);
	transition: transform 0.2s linear;
  }
  .post-slide:hover .post-img img {
	transform: scale(1.1, 1.1);
  }
  .post-slide .over-layer {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	background: linear-gradient(
	  -45deg,
	  rgba(198, 40, 0, 0.75) 0%,
	  rgba(198, 40, 0, 0.6) 100%
	);
	transition: all 0.5s linear;
  }
  .post-slide:hover .over-layer {
	opacity: 1;
	text-decoration: none;
  }
  .post-slide .over-layer i {
	position: relative;
	top: 45%;
	text-align: center;
	display: block;
	color: #fff;
	font-size: 25px;
  width: 100%;
  }
  .post-slide .post-content {
	background: #fff;
	padding: 2px 20px 10px;
	border-radius: 15px;
 
  }
  .post-slide .post-title {
	font-size: 18px;
	font-weight: bold;
	color:var(--bs-primery-color);
	display: inline-block;
  padding: 12px 0px 0px 0px;

	transition: all 0.3s ease 0s;
  }
    .post-slide h5 {
      color: var(--bs-primery-color);
    }
  .post-slide .post-title a:hover {
	text-decoration: none;
	color: var(--clr-blue);
  }
  .post-slide .post-description {
	line-height: 24px;
	color: #808080;

  }
  .post-slide .post-date {
	color: #a9a9a9;
	font-size: 14px;
  }
  .post-slide .post-date i {
	font-size: 20px;
	margin-right: 8px;
	color: #cfdace;
  }
  .post-slide .read-more {
	padding: 10px 25px 10px 25px;
	float: left;
	font-size: 12px;
	background:var(--clr-white);
	color: var(--clr-pink);
	border: solid 1px;
	border-color: var(--clr-black);
	
	text-transform: uppercase;
	text-decoration: none;
	
  }
  .post-slide .read-more:hover {
	background:var(--clr-pink);
	text-decoration: none;
	color: var(--clr-white);
	text-decoration: none;
	border-color: var(--clr-white);
  }
  .owl-controls .owl-buttons {
	text-align: center;
	margin-top: 20px;
  }
  .owl-controls .owl-buttons .owl-prev {
	background: #fff;
	position: absolute;
	top: -13%;
	left: 15px;
	padding: 0 18px 0 15px;
	border-radius: 50px;
	box-shadow: 3px 14px 25px -10px #92b4d0;
	transition: background 0.5s ease 0s;
  }
  .owl-controls .owl-buttons .owl-next {
	background: #fff;
	position: absolute;
	top: -13%;
	right: 15px;
	padding: 0 15px 0 18px;
	border-radius: 50px;
	box-shadow: -3px 14px 25px -10px #92b4d0;
	transition: background 0.5s ease 0s;
  }
  .owl-controls .owl-buttons .owl-prev:after,
  .owl-controls .owl-buttons .owl-next:after {
	content: "\f104";
	font-family: FontAwesome;
	color: #333;
	font-size: 30px;
  }
  .owl-controls .owl-buttons .owl-next:after {
	content: "\f105";
  }
  
  
	.owl-nav {
	  display: none;
	}
  
	.owl-pagination {
	  text-align: center;
    padding-top: 8px;
  }
  .owl-page {
	   display: inline-block;
  }
   .owl-page span {
		position: relative;
		height: 10px;
		width: 10px;
		border-radius: 50%;
		display: flex;
		background:var(--bs-second-color);
	
	
		margin: 0 5px;
	  }
   .owl-page .active span {
		box-shadow: none;
   }
  .owl-page.active span {
		background:var(--bs-primery-color);
		  box-shadow: none;
		  height: 12px;
		  width: 12px;
		  margin-bottom: -1px;
		}
  @media only screen and (max-width: 1280px) {
	.post-slide .post-content {
	  padding: 0px 15px 25px 15px;
	}
  }
  .accordion-body {
    padding: 0px;
  }

 @media (max-width: 992px) {
.post-slide {
    margin:0px 0px;
 
}
}



/* ================= tradition SECTION ================= */

.tradition {
  background:#fff;
  padding: 80px 5%;
  background-image: url(../images/liqufybg.png);
  background-position: top right 20px;
  background-repeat: no-repeat;
}

.tradition-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.tradition-content {
  flex: 1;
}

.tradition-content h4 {
  color: #c0392b;
  font-size: 20px;
  margin-bottom: 10px;
}

.tradition-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #111;
}

.tradition-content p {
  color:var(--bs-grey);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
  font-size: 14px;
}



.tradition-image {
  flex: 1;
  text-align: right;
   animation: slideRight 1s ease forwards;
}


.tradition-image img {
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
}

/* ================= FEATURES SECTION ================= */

.features2 {
  background: #fff;
}

.features2-container {
  display: flex;
  min-height: 500px;
}

.features2-image {
  flex: 1;
}

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

.features2-content {
  flex: 1;
  background: #7b0000;
  color: #fff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.features2-item {
  display: flex;
}
.features2-item h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.features2-item p {
  font-size: 14px;
  opacity: 0.8;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .tradition-container {
    flex-direction: column;
    text-align: center;
  }

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

  .tradition-content h1 {
    font-size: 36px;
  }

  .features2-container {
    flex-direction: column;
  }

  .features2-content {
    padding: 50px 30px;
  }
}

@media (max-width: 576px) {

  .tradition {
    padding: 60px 20px;
  }

  .tradition-content h1 {
    font-size: 28px;
  }



  .features2-content {
    padding: 40px 20px;
  }
}


.testimonialsmain {
background-color: #faf2e7;
}

.testimonialscontent {
  background-color: #fff;
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex:1.2;
}
.shadow-effect {
  display: flex;
 align-items:center;
  gap:30px;
  animation:fade 0.6s ease-in-out;
}
.img-circle {
  flex:1;
}
.img-circle img {

}
.testislide img {
  width: auto !important;
}
.testimonial-section{
  padding:80px 5%;
}

.testimonial-container{
  display:flex;
  gap:50px;
  align-items:center;
  max-width:1200px;
  margin:auto;
}

.testimonial-left{
  flex:1;
}

.tag{
  color:#c0392b;
  font-weight:bold;
}

.testimonial-left h2{
  font-size:36px;
  margin:15px 0;
}

.testimonial-left p{
  color:#555;
  margin-bottom:25px;
  line-height:1.6;
}



.testimonial-right{
  flex:1.2;
  background:#fff;
  padding:40px;
  border-radius:20px;
  position:relative;
  overflow:hidden;
}

/* SLIDER */
.testislide{
  display:flex;
  align-items:center;
  gap:30px;
  animation:fade 0.6s ease-in-out;
}



.testislide img{
  border-radius:10px;


}

.review h3{
  margin:10px 0;
}

.review p{
  color:#555;
  margin-bottom:10px;
}

.stars{
  color:orange;
  font-size:18px;
}

/* DOTS */
.dots{
  text-align:right;
  margin-top:20px;
}

.dot{
  height:10px;
  width:10px;
  background:#bbb;
  display:inline-block;
  border-radius:50%;
  margin-left:5px;
  cursor:pointer;
}

.dot.active{
  background:#c0392b;
}

/* ANIMATION */
@keyframes fade{
  from{opacity:0; transform:translateX(20px);}
  to{opacity:1; transform:translateX(0);}
}



/* ================= FOOTER ================= */

footer{

  margin-top:10px;
}

.footer-container{
  display:flex;
  justify-content:space-between;
  padding:50px 5%;
  flex-wrap:wrap;
  gap:30px;

}
.footer-col2{
  flex:2;
  min-width:200px;
}
.footer-col3{
  flex:2;
  min-width:200px;
}
.footer-col{
  flex:1 ;
  min-width:200px;
}
.footer-col2 img {
  width: 100%;
}
.call_iconfooter img {
  width: auto!important;
}
.call_iconfooter {
  color: var(--bs-red);
}
.socialmediafooter img {
  width: auto!important;
}
.socialmediafooter a {
  text-decoration: none;
}
.footer-col h4{
  margin-bottom:15px;
  /*font-size: 14px;*/
  color: var(--bs-second-color);
}

.footer-col ul{
  list-style:none;
   margin: 0px;
  padding: 0px;
}

.footer-col ul li{
  margin-bottom:8px;
  color:#444;
  margin: 0px;
  padding:2px 0px;
  font-size: 14px;
}

.footer-bottom{
  background:#333;
  color:#fff;
  text-align:center;
  font-size:14px;
  padding: 20px;

}
.copy {
  text-align: left;
  align-items: center;
}
.paycards {
  text-align: right;
}
.paycards img {
  padding: 2px;
}
@media(max-width:992px){
  .testimonial-container{
    flex-direction:column;
  }
  .testislide{
    flex-direction:column;
    text-align:center;
  }
  .dots{
    text-align:center;
  }
}

@media(max-width:600px){
  .testimonial-left h2{
    font-size:28px;
  }
}

.features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.feature {
  text-align: left;
  font-weight: 600;
}

.feature img {
  width: 50px;
  display: block;
  margin: 0 auto 10px;
}

.page-header{ background: url(https://www.manjalyhalwa.in/wp-content/uploads/2026/03/New-Project-63.webp);
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat; margin-bottom: 30px; }


@media (max-width: 768px) {

  .features {
    flex-direction: column;   /* Stack items */
    align-items: center;      /* Center horizontally */
    text-align: left;
    justify-content: center;
  }

  .feature {
    
    margin-bottom: 20px;
  }


}