body {
     font-family: 'Prince Town';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #000000;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    animation: slideBackground 10s infinite;
}

@keyframes slideBackground {
    0% {
        background-image: url('../images/CATEOGAR-1/churan\ goli.jpg');
    }

    33% {
        background-image: url('../images/CATEOGAR-1/churan\ goli.jpg');
    }

    66% {
        background-image: url('../images/CATEOGAR-1/churan\ goli.jpg');
    }

    100% {
        background-image: url('../images/CATEOGAR-1/churan\ goli.jpg');
    }
}

.hero-banner .content {
    position: relative;
    z-index: 1;
}

.hero-banner h1 {
    font-size: 4em;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
    opacity: 0;
    animation: slideInLeft 1s forwards;
}

.hero-banner p {
    font-size: 1.5em;
    margin-bottom: 30px;
    opacity: 0;
    animation: slideInLeft 1.5s forwards;
    animation-delay: 0.5s;
    color: #000000;
}

.hero-banner .cta-btn {
    padding: 12px 30px;
    background-color: #f44336;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s;
    opacity: 0;
    animation: slideInLeft 2s forwards;
    animation-delay: 1s;
}

.hero-banner .cta-btn:hover {
    background-color: #d32f2f;
}
  .card-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    .card {
      width: 300px;
      display: flex;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      overflow: hidden;
    }
    .label {
    
    }
    .content {
      padding: 15px;
      flex: 1;
       
    }
    .content h4 {
      margin: 0 0 8px;
      font-size: 20px;
      /* color: #333; */
      /* writing-mode: vertical-rl; */
      /* transform: rotate(180deg); */
      background: linear-gradient(to bottom, #f8a74a, #ffd297);;
      color: rgb(0, 0, 0);
      font-weight: bold;
      padding: 10px;
      /* font-size: 14px; */
      text-align: center;
    }
    .content p {
      margin: 0;
      color: #020000;
      font-size: 16px;
    }
@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Product Section */
.product-section {
    position: relative;
    padding: 20px 10%;
    background-color: #fff;
    overflow: hidden;
}

.product-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}

.product-text {
    flex: 1 1 50%;
    padding-right: 40px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.2s ease;
    position: relative;
}

.product-text h2 {
    font-size: 6rem;
    margin-bottom: 20px;
    background: linear-gradient(120deg, #d35400, #f39c12, #d35400);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: waterWave 4s ease-in-out infinite;
    font-weight: bolder;
    text-shadow: 2px 2px 8px rgba(243, 156, 18, 0.4); /* glowing effect */
    -webkit-text-stroke: 1px rgba(211, 84, 0, 0.4); /* subtle text outline */
    letter-spacing: 1px;
}

@keyframes waterWave {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

.product-text p {
    font-size: 2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-text .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #c0392b;
}

.product-image {
    flex: 1 1 45%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 1.2s ease;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    animation: float 4s ease-in-out infinite;
    cursor: pointer;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.product-section.show .product-text {
    transform: scale(1);
    opacity: 1;
}

.product-section.show .product-image {
    transform: translateX(0);
    opacity: 1;
}

@keyframes zoomBounce {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.product-image.clicked img {
    animation: zoomBounce 0.6s ease;
}

.product-text-with-bg {
    position: relative;
    flex: 1 1 50%;
    padding-right: 40px;
    z-index: 1;
   
}

.product-text-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url('../images/CATEOGAR-1/erasebg-transformed.png');
    background-size: cover;
    background-position: center;
    opacity: 0.80;
    /* Adjust transparency */
    border-radius: 20px;
    z-index: 1;
}

.product-text {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.2s ease;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    /* Optional: add white translucent bg for readability */
    border-radius: 20px;
}

/* Ensure existing animations still work */
.product-section.show .product-text {
    transform: scale(1);
    opacity: 1;
}


/* Font Awesome berries */
.fa-berry {
    position: absolute;
    top: -40px;
    color: #b30059;
    font-size: 20px;
    opacity: 0.85;
    animation: fall linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(200px) rotate(360deg);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .product-main {
        flex-direction: column;
    }

    .product-text {
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }
        .product-text h2{
       font-size: 4rem;
    }
}


.heading-section_pre_mixes {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    margin-top: 20px;
    background: #fce5bb;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* opacity: 0; */
    transition: opacity 1s ease-in-out;
}

/* Large Text Animation */
.shikanji-heading {
    font-size: 5rem;
    font-weight: bold;
    color: #27ae60;
    text-transform: uppercase;
    background: linear-gradient(120deg, #8f1848, #f05332);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: textSlideIn 3s ease-in-out forwards;
    margin-right: 30px;
    /* Space between text and GIF */
}

/* Slide In Animation for Heading */
@keyframes textSlideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Diagonal Rotation Animation for GIF */
.shikanji-gif {
    animation: gifRotateDiagonal 2s ease-out forwards;
    width: 150px;
    /* Adjust the size of the GIF */
    height: auto;
    transform-origin: center;
}

/* Diagonal Rotation and Translation for GIF */
@keyframes gifRotateDiagonal {
    0% {
        transform: translate(150%, -150%) rotate(45deg);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0) rotate(0);
        opacity: 1;
    }
}

.shikanji-heading.animate {
    animation: textSlideIn 3s ease-in-out forwards;
}

.shikanji-gif.animate {
    animation: gifRotateDiagonal 2s ease-out forwards;
}


/* slogan */
.moving-heading {
    text-align: center;
    overflow: hidden;
    margin: 20px 0;
}

.moving-heading h1 {
    font-size: 70px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ff4d00;
    animation: moveHeading 8s linear infinite;
    white-space: nowrap;
    display: inline-block;
}

@keyframes moveHeading {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


.product-4 {
    position: relative;
    background-image: url('../images/CATEOGAR-1/Shikanji.jpg');
    /* actual background */
    background-size: cover;
    background-position: center;
    padding: 20px 0;
    color: #030303;
    overflow: hidden;
}

.product-4-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* 50% transparent overlay */
    z-index: 1;
}

.product-4-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.product-4-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.product-4-text {
    flex: 1 1 50%;
    max-width: 600px;
}

.product-4-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.product-4-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
}

.product-4-image {
    flex: 1 1 40%;
    text-align: center;
}


.product-4-image img {
    max-width: 100%;
    height: 500px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .product-4-content {
        flex-direction: column;
        text-align: center;
    }

    .product-4-text,
    .product-4-image {
        flex: 1 1 100%;
    }
}

/* kachori class */
.product-kachori {
    background-color: #fff8f0;
    /* Warm off-white tone */
}

.product-kachori h2 {
    background: linear-gradient(120deg, #a0522d, #d2691e, #a0522d);
    /* Brownish gradient */
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: waterWave 4s ease-in-out infinite;
}

.product-kachori .product-text-bg {
    background-image: url('../images/CATEOGAR-1/spice-pattern.png');
    /* Replace with actual spice/bg image */
    background-size: cover;
    opacity: 0.6;
}

/* Inherit all other product-section styles already written */

/* sambhar css */
.sambhar {
    background: linear-gradient(to right, #fff8e1, #fff3cd);
    padding: 80px 10%;
    overflow: hidden;
}

.sambhar-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sambhar-image {
    flex: 1 1 45%;
    text-align: center;
}

.sambhar-image img {
    max-width: 100%;
    width: 480px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: floatSambar 4s ease-in-out infinite;
}

@keyframes floatSambar {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.sambhar-text {
    flex: 1 1 50%;
    padding: 20px;
    background: #fffbe6;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sambhar-text h2 {
    font-size: 2.8rem;
    background: linear-gradient(90deg, #d35400, #f39c12);
    -webkit-background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: waveText 4s linear infinite;
    margin-bottom: 20px;
}

@keyframes waveText {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

.sambhar-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5c3d03;
    margin-bottom: 15px;
}

.section-1 .product-text-bg {
    background-image: url('../images/CATEOGAR-1/mango.png');
}

.section-2 .product-text-bg {
    background-image: none;
}

.section-3 .product-text-bg {
    background-image: none;
}


/*------------------------------------------------------------------
    FOOTER AREA
-------------------------------------------------------------------*/

.footer-main{}
.footer-news{
	background:url(../images/banner/1.jpg) no-repeat center;
	background-attachment:fixed;
	background-size:cover;
	position:relative;
}

.footer-news::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.50);
    position: absolute;
    top: 0;
    left: 0;
}

.ft-title.color-white {
    color: #fff;
}
.ft-title {
    letter-spacing: 0.96px;
    margin-bottom: 22px;
    font-family: 'Prince Town';
	font-size: 52px;
}

.footer-news p {
    margin-bottom: 40px;
    font-size: 16px;
	font-family: 'Prince Town';
	color:#ffffff;
	text-align:center;
}

.footer-news form{
	max-width:650px;
	margin: 0 auto;
	text-align:center;
	width:100%;
	position:relative;
    margin-bottom: 20px;
}

.footer-news form input{
	width:100%;
	border:2px dotted #ccc;
	background:#f5f5f5;
	color:#202020;
	padding:12px;
	text-transform:capitalize;
	border-radius: 4px;
	opacity: 1;
	min-height:53px;
}
.footer-news form a{
	border:2px dotted #ccc;
	padding: 0px 19px;
    font-size: 18px;
    position: absolute;
    top: 0;
    right: 0;
	border-radius: 4px;
    min-width: inherit;
    height: 53px;
    line-height: 51px;
	color:#ffffff;
}

.footer-news form a:hover{
	background:#f5f5f5;
	color:#202020;
}

.footer-box{
	background:#202020;
}

/*.footer-in-main{
	max-width:960px;
	margin:0 auto;
	width:100%;
}*/

.footer-logo{
	padding-bottom:40px;
  
}

.footer-socials {
    margin: 10px 0;
    line-height: 30px;
    padding: 4px;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.socials-box {
    display: table-cell;
    vertical-align: middle;
    margin: 1px 0px;
    padding: 4px;
}
.footer-box {
	background-image:-moz-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.57) 0%,rgba(0, 0, 0, 0.87) 100%), url(../images/banner2/3.jpg);
	background-image:-webkit-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0.57) 0%,rgba(0, 0, 0, 0.87) 100%), url(../images/banner2/3.jpg);
	background-image:radial-gradient(ellipse at center, rgba(0, 0, 0, 0.57) 0%,rgba(0, 0, 0, 0.87) 100%), url(../images/banner2/3.jpg);
	background-color:#111;background-position:center;background-repeat:no-repeat;background-size:cover
	}
.socials-box li {
    display: inline-block;
    opacity: 1;
    margin-right: 7px;
}
.footer-box .social-circle-border{
	background-color: transparent;
	color: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.social-circle-border {
    font-size: 20px;
    line-height: 23px;
    margin-right: 2px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background-color: transparent;
    color: #6f6f6f;
    text-align: center;
}


.footer-box-a h3{
	font-size:24px;
    font-family: 'Prince Town';
}
.footer-box-a p{
	font-size: 14px;
	font-family: 'Prince Town', sans-serif;
	color:#ffffff;
	line-height: 25px;
}


.footer-box-b h3{
	font-size:24px;
    font-family: 'Prince Town';
}
.footer-box-b p{
	font-size: 14px;
	font-family: 'Prince Town', sans-serif;
	color:#ffffff;
}
.footer-box-b ul li{
	line-height:30px;
}
.footer-box-b ul li a{
	color:#ffffff;
}

.footer-box-b ul li a:hover{
	padding-left:5px;
}	

.footer-box-c h3{
	font-size:24px;
    font-family: 'Prince Town';
}
.footer-box-c p{
	font-size: 14px;
	font-family: 'Prince Town', sans-serif;
	color:#ffffff;
}


.footer-box-c p i{
	font-size: 20px;
    position: relative;
    top: 4px;
    float: left;
    min-width: 20px;
    text-align: center;
}

.footer-box-c p span{
	display: table;
    padding-left: 12px;
	padding-top:1px;
}

.footer-box-c p a{
	color:#ffffff;
}



.footer-box-d h3{
	font-size:24px;
    font-family: 'Prince Town';
}
.footer-box-d p{
	font-size: 14px;
	font-family: 'Prince Town', sans-serif;
	color:#ffffff;
}

.footer-box-d ul{
	margin:0px;
	padding:0px;
	list-style:none;
}
.footer-box-d ul li{
	display: inline-block;
    width: 100%;
	padding-bottom:12px;
}
.footer-box-d ul li p{
	padding:0px;
	margin:0px;
}
.footer-box-d ul li span{
	color: #666;
}

/*------------------------------------------------------------------
    COPYRIGHT AREA
-------------------------------------------------------------------*/

.copyright-main{
	border-top: 2px dotted #fff;
	text-align:center;
	padding-top:25px;
	margin-top:70px;
	padding-bottom:25px;
}

.copyright-main .copy-title{
	letter-spacing: 1px;
	color:#fff;
	font-family: 'Prince Town', sans-serif;
	font-size:14px;
	padding-bottom:0px;
}
/*------------------------------------------------------------------
    HEADER AREA
-------------------------------------------------------------------*/

#site-header{
	
}
#header{}
.logo{
	float:left;
    
}
.logo img {
    width: 120px; /* adjust as needed */
    height: auto; /* maintains aspect ratio */
  }
  
.header-block-top{
	position: absolute;
    z-index: 11;
    width: 100%;
    top: 0;
    left: 0;
}

.main-menu{}
.header-block-top .navbar-brand {
    margin: 0 !important;
    padding: 15px 0 15px;
    display: inline-block;
    line-height: normal;
    font-size: 100%;
    height: 100%;
}
.main-menu .navbar-default{
	background-color:transparent;
}
.main-menu .navbar{
	min-height:inherit;
	border-radius:0px;
	border:none;
	margin:0px;
}
.main-menu nav .navbar-header .navbar-brand{
	height:inherit;
}
.main-menu .navbar-default .navbar-nav li a{
	color:#fff;
}
.main-menu nav li a{
	padding: 43px 0px 15px;
	margin: 0 14px;
	color: #fff;
	font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.6px;
	position:relative;
	-webkit-transition: color 0.4s;
    transition: color 0.4s;
    font-weight: 500;
    font-size: 14px;
}

.main-menu nav li a::after,  .main-menu nav li a::before{
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: center left;
    transform-origin: center left;
    -webkit-transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}



.main-menu nav li a::before {
    background: #b5b5b5;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.main-menu nav li.active a::before {
	-webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.main-menu nav li.active a::after, .main-menu nav li.active a::before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.main-menu nav li a:hover::before, .main-menu nav li a:focus::before {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.main-menu .navbar-default .navbar-nav .active a{
	background-color:transparent;
}

.fixed-menu {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #202020;
    transition: 0.5s;
    padding: 10px 0 0 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.fixed-menu .navbar-brand{
	padding: 10px 0 10px;
}

.fixed-menu .navbar-brand>img {
    max-width: 150px;
}

.fixed-menu .main-menu nav li a{
    padding: 32px 0px 10px 0;
}

.navbar-nav .dropdown-menu {
    background-color: #202020;
    border: none;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    z-index: 1000;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-nav .dropdown-menu li a {
  color: #fff;
  padding: 8px 15px;
  display: block;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 1px;
}

.navbar-nav .dropdown-menu li a:hover {
    background-color: #333;
    color: #e75b1e;
}
/*------------------------------------------------------------------
    GALLERY AREA
-------------------------------------------------------------------*/

.gallery-main{
	
}

.gallery-main .title-caption{
	color: #666;
}

/* new gallery */

.gal-container{
	padding: 12px;
}
.gal-item{
	overflow: hidden;
	padding: 3px;
}
.gal-item .box{
	height: 350px;
	overflow: hidden;
}
.box img{
	height: 100%;
	width: 100%;
	object-fit:cover;
	-o-object-fit:cover;
}
.box video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.gal-item a:focus{
	outline: none;
}
.gal-item a:after{
	content:"\e003";
	font-family: 'Glyphicons Halflings';
	opacity: 0;
	background-color: rgba(231, 91, 30, 0.75);
	position: absolute;
	right: 3px;
	left: 3px;
	top: 3px;
	bottom: 3px;
	text-align: center;
    line-height: 350px;
    font-size: 30px;
    color: #fff;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}
.gal-item a:hover:after{
	opacity: 1;
}
.modal-open .gal-container .modal{
	background-color: rgba(0,0,0,0.4);
}
.modal-open .gal-item .modal-body{
	padding: 0px;
}
.modal-open .gal-item button.close{
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: #000;
    opacity: 1;
    color: #fff;
    z-index: 999;
    right: -12px;
    top: -12px;
    border-radius: 50%;
    font-size: 15px;
    border: 2px solid #fff;
    line-height: 25px;
    -webkit-box-shadow: 0 0 1px 1px rgba(0,0,0,0.35);
	box-shadow: 0 0 1px 1px rgba(0,0,0,0.35);
}
.modal-open .gal-item button.close:focus{
	outline: none;
}
.modal-open .gal-item button.close span{
	position: relative;
	top: -3px;
	font-weight: lighter;
	text-shadow:none;
}
.gal-container .modal-dialogue{
	width: 80%;
}
.gal-container .description{
	position: relative;
	height: 40px;
	top: -40px;
	padding: 10px 25px;
	background-color: rgba(0,0,0,0.5);
	color: #fff;
	text-align: left;
}
.gal-container .description h4{
	margin:0px;
	font-size: 15px;
	font-weight: 300;
	line-height: 20px;
	color:#fff;
}
.gal-container .modal.fade .modal-dialog {
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1);
    top: 100px;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.gal-container .modal.fade.in .modal-dialog {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
    opacity: 1;
}
.block-title{
	font-size:52px;
	font-family: 'nautilus_pompiliusregular';
	font-weight: bold;
}
.title-caption {
    letter-spacing: 0.16px;
    padding: 20px 120px;
	color:#fff;
	font-size: 18px;
}

/*------------------------------------------------------------------
    BLOG AREA
-------------------------------------------------------------------*/

.blog-main{
	background:url(../images/banner/3.jpg) no-repeat center;
	background-attachment:fixed;
	background-size:cover;
	position:relative;
}

.blog-main::before {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.50);
    position: absolute;
    top: 0;
    left: 0;
}

.blog-main h2{
	color:#ffffff;
}

.blog-box{
	padding-top:20px;
}

.blog-block{
	background:#FFF;
	overflow: auto;
	margin-bottom: 20px;
}

.blog-img-box{
	float:left;
	width:50%;
	position: relative;
}

.blog-img-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    opacity: 0;
	transition: .3s all;
	text-align:center;
}

.blog-img-box:hover img{
	-webkit-filter: blur(2px);
	filter: blur(2px);
}
.blog-img-box:hover .overlay {
    opacity: 1;
}

.blog-img-box img{
	width:100%;
}

.overlay i{
	margin-top: 42%;
	border: 1px solid #fff;
	padding: 15px;
	border-radius: 50%;
	color:#ffffff;
	font-size:18px;
}


.blog-dit {
    width: 50%;
    height: 100%;
    float: right;
    text-align: center;
    padding: 65px 2% 0 2%;
}

.blog-dit p{
	font-size: 12px;
	color: #ccc;
}
.blog-dit h2{
	font-size: 22px;
    line-height: 20px;
    color: #000;
	font-weight:500;
    margin-bottom: 20px;
    padding: 10px 30px 13px 30px;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.blog-dit h5{
	font-size: 11px;
	color: #ccc;
}

.blog-btn-v{
	clear:both;
	padding-top:30px;
	text-align:center;
}

.blog-btn-v a {
    color: #fff;
    min-width: 219px;
    padding: 10.5px 20px;
    display: inline-block;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 18px;
}

.blog-btn-v a:hover {
    background: none;
}

@media (max-width: 400px) {
    /* Hero Banner Section */
    .hero-banner {
        height: 400px; /* Reduce height for small screens */
        padding: 20px;
    }

    .hero-banner h1 {
        font-size: 2.5em; /* Adjust font size */
        margin-bottom: 15px;
        margin-top: 32px;
    }

    .hero-banner p {
        font-size: 1.2em; /* Adjust font size */
        margin-bottom: 20px;
    }

    .hero-banner .cta-btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    /* Product Section */
    .product-section {
        padding: 20px 5%;
    }

    .product-main {
        flex-direction: column; /* Stack product text and image */
        align-items: center;
        justify-content: center;
    }

    .product-text {
        flex: 1 1 100%; /* Full width for text */
        padding-right: 0;
        text-align: center;
        opacity: 1; /* Make text visible */
        transform: scale(1); /* Reset scale */
    }

    .product-text h2 {
        font-size: 2rem; /* Adjust heading font size */
        margin-bottom: 10px;
    }

    .product-text p {
        font-size: 1.4rem; /* Adjust text size */
        margin-bottom: 10px;
    }

    .product-text .price {
        font-size: 1.4rem; /* Adjust price font size */
    }

    .product-image {
        flex: 1 1 100%; /* Full width for image */
        text-align: center;
        opacity: 1;
        transform: translateX(0); /* Reset translation */
    }

    .product-image img {
        width: 90%; /* Make image responsive */
        height: auto;
        max-width: 300px; /* Limit the width for small screens */
    }

    /* Slogan Section */
    .moving-heading h1 {
        font-size: 40px; /* Adjust size of moving heading */
    }

    /* Shikanji Heading */
    .shikanji-heading {
        font-size: 3rem; /* Adjust font size */
        margin-right: 0;
    }

    .shikanji-gif {
        width: 100px; /* Adjust GIF size */
    }

    /* Sambhar Section */
    .sambhar-container {
        flex-direction: column; /* Stack content vertically */
        text-align: center;
    }

    .sambhar-image {
        flex: 1 1 100%;
    }

    .sambhar-image img {
        width: 90%; /* Make image responsive */
        height: auto;
    }

    .sambhar-text {
        flex: 1 1 100%; /* Full width for text */
        padding: 20px;
    }

    .sambhar-text h2 {
        font-size: 2.2rem; /* Adjust heading font size */
    }

    .sambhar-text p {
        font-size: 1.1rem; /* Adjust text size */
    }

    /* Product 4 Section */
    .product-4 {
        padding: 10px 5%;
    }

    .product-4-content {
        flex-direction: column; /* Stack content vertically */
    }

    .product-4-image img {
        width: 90%; /* Make image responsive */
        height: auto;
    }
    .footer-logo {
        padding: 10px; /* Add some padding for better spacing */
        text-align: center;
    }

    .footer-logo img {
        width: 80%; /* Scale down the logo */
        max-width: 200px; /* Limit the max width */
        height: auto; /* Ensure the height scales proportionally */
    }
   
    .title-caption {
        letter-spacing: 0.16px;
        padding: 20px 40px;
        color:#fff;
        font-size: 10px;
    }
    .product-text-with-bg {
        padding-right: 4px;
    }
   
}
@media (max-width: 767px) {
    .recipe-image-box {
        margin-bottom: 20px; /* Adjust spacing as needed */
    }
}
