* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  /* font-family: "Alegreya", serif;
  font-family: "Josefin Sans", sans-serif; */
  /* font-family: "Signika Negative", sans-serif; */
  /* font-family: sanfrancisco; */
  font-family: "Rubik", sans-serif;
}
@font-face {
  font-family: Helvetica;
  src: url(../fonts/Helvetica\ Bold\ Condensed.otf);
}
@font-face {
  font-family: sanfrancisco;
  src: url(../fonts/SFUIText-Regular.otf);
}

:root {
  --red-color: #df1e17;
  --cream-color: #feea87;
  --cream-color: #fbefbe;
  --red-hover: #f9332c;
  --cream-hover: #f4db75;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* ------[navbar css |start| ]-------- */



.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color:white;
  color: white;
}
.logo img {
  height: 100px; 
}
.menu-toggle {
  background: var(--red-color);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 1000;
}
.sidebar {
  position: fixed;
  top: 0;
  right: -250px; 
  width: 250px;
  height: 100%;
  background: white;
  color: white;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 1000;

}
.sidebar.active {
  right: 0;
}
.sidebar ul {
  list-style: none;
  padding: 0;
}
.sidebar ul li {
  padding: 15px;
  text-align: center;
  border-bottom: 2px solid #090909;
}
.sidebar ul li a {
  color: var(--red-color);
  text-decoration: none;
  display: block;
  font-weight: 600;
  font-size: 1.2rem;
}
.close-btn {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 25px;
  cursor: pointer;
  color: red;
}
/* ------[navbar css |end| ]-------- */

/* ------[hero css |start| ]-------- */

.hero {
  background-color: var(--red-color);
  padding: 1vw;
  /* border-radius: 1vw; */
}

span {
  color: var(--cream-color);
}

#cream-button {
  background-color: var(--cream-color);
  color: black;
}

#button {
  background-color: var(--red-color);
  color: white;
}

#button:hover {
  background-color: var(--red-hover) !important;
  border: 2px solid var(--cream-color);
  transition: all 0.5s ease-in;
}
#hero-btn {
  /* padding: 0.5vw 2vw; */
  background-color: var(--cream-color);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1vw;
  cursor: pointer;
  position: relative;
  transition: all ease 0.4s;
  overflow: hidden;
  margin-top: 2vw;
}

#hero-btn::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--cream-hover);
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.5s;
}
#hero-btn:hover::after {
  bottom: 0;
  border-radius: 0;
}
#hero-btn a {
  text-decoration: none;
  color: black;
  position: relative;
  z-index: 9;
}

/* ------[image animation |start| ]-------- */

#product-animation {
  -webkit-filter: drop-shadow(5px 10px 5px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(5px 10px 5px rgba(0, 0, 0, 0.3));
  animation: 2s ease-in-out 0s infinite alternate-reverse none running wave;
}
#Strengths-animation {
  animation: 2s ease-in-out 0s infinite alternate-reverse none running wave;
}
@-webkit-keyframes wave {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 80px, 0);
    -ms-transform: translate3d(0, 80px, 0);
    transform: translate3d(0, 80px, 0);
  }
}
@keyframes wave {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 30px, 0);
    -ms-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
}
/* ------[image animation |end| ]-------- */

/* ------[hero css |end| ]-------- */






.service-main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* background-color: #d0cece53; */
  padding: 40px 20px;
}
.service-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;
  max-width: 1200px;
  width: 100%;
}
.service-box {
  position: relative;
  width: 320px;
  background: rgba(255, 255, 255, 0.348);
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  margin-top: 50px;
}
.service-box:hover {
  background: rgba(187, 108, 108, 0.193);
}
.service-icon-wrapper {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
}
.service-icon-shadow {
  width: 170px;
  height: 163px;
  background: rgba(223, 30, 23, 0.3);
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}
.service-icon {
  width: 150px;
  height: 150px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 5px solid white;
  outline: 7px solid var(--red-color);
  transition: transform 0.6s ease-in-out;
}
.service-box:hover .service-icon {
  transform: rotate(360deg);
}
.service-icon img {
  width: 100%;
  height: 90%;
  object-fit: cover;
  border-radius: 50%;
}
.service-header {
  margin-top: 110px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--red-color);
}
.service-content {
  font-size: 17px;
  color: #333333b4;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .service-container {
      gap: 30px;
  }
  .service-box {
      width: 280px;
  }
}
@media (max-width: 768px) {
  .service-container {
      flex-direction: column;
      align-items: center;
  }
  .service-box {
      width: 90%;
  }
}














/* ------[About us |start| ]-------- */

#about-tagline {
  color: var(--red-color);
}
#about-details {
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.aboutus .carousel-item {
  max-height: 550px;
  max-width: 700px;
}
.carousel-item {
  max-height: 450px;
  max-width: 700px;
}

#btn {
  background-color: var(--red-color);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1vw;
  cursor: pointer;
  position: relative;
  transition: all ease 0.4s;
  overflow: hidden;
  margin-top: 2vw;
}

#btn::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--red-hover);
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.5s;
}
#btn:hover::after {
  bottom: 0;
  border-radius: 0;
}
#btn a {
  text-decoration: none;
  color: white;
  position: relative;
  z-index: 9;
}
.about_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 3vw;
  padding-right: 10vw;
}

.about_btn button {
  height: 3vw;
  width: 9vw;
  background-color: white;
  /* border: 1px solid rgba(0, 0, 0, 0.367); */
  border: none;
  font-weight: 600;
  font-size: 1vw;
  cursor: pointer;
  position: relative;
  transition: all ease 0.4s;
  overflow: hidden;
}

.about_btn button::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #ef7f1a;
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
}
.about_btn button:hover::after {
  bottom: 0;
  border-radius: 0;
}

.about_btn button a {
  text-decoration: none;
  color: black;
  position: relative;
  z-index: 9;
}






/* ------[About us |end| ]-------- */

.hmproblk img {
  height: 180px;
  -webkit-filter: drop-shadow(5px 10px 5px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(5px 10px 5px rgba(0, 0, 0, 0.3));
}

/* ------[all parts headings |start| ]-------- */
#usptitlediv h3 {
  font-size: 42px;
  text-transform: capitalize;
  color: black;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1;
  font-family: "Playball", cursive;
}
#usptitlediv h3 span {
  display: block;
  color: var(--red-color);
  margin-left: 1.3em;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
/* ------[all parts headings |end| ]-------- */

/* ------[our products |start| ]-------- */

.prorowsec img {
  height: 440px;
  -webkit-filter: drop-shadow(5px 10px 5px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(5px 10px 5px rgba(0, 0, 0, 0.3));
}

.our-products img {
  height: auto;
  max-width: 65%;
}
/* ------[our products |end| ]-------- */

/* ------[our Strengths |start| ]-------- */
.uspsec .uspblock {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  margin-left: 26px;
  /* justify-content: center; */
  /* margin-right: 30px; */
}

.uspsec .uspblock .uspcnt p {
  font-size: 25px;
  font-weight: 600;
}

/* ------[our Strengths |end| ]-------- */

/* ------[Franchise |start| ]-------- */
.Franchise {
  background-color: var(--red-color);
  padding: 45px 45px;
  color: white;
}
.Franchise img {
  height: 380px;
  max-width: 380px;
  border-radius: 50%;
  /* border: 5px solid var(--cream-color); */
  object-fit: cover;
  display: flex;
  align-content: center;
  /* margin-left: -30vw; */
}
.Franchise h4 {
  font-size: 2.7vw;
}
.Franchise h2 {
  font-size: 3.8vw;
}
.Franchise p {
  font-size: 1.5vw;
  width: 40vw;
}
/* ------[Franchise |end| ]-------- */

/* .enviorment img {
  height: 650px;
  width: 1500px;
  align-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
} */
/*------------------------------
  [ DEALER INQUIRY ]
--------------------------------*/

/* ------[about us page  css|start| ]-------- */

.about-img {
  background: url(../img/pencilsketchadjusted-5887443.jpeg);
  height: 500px;
  width: 500px;
  background-size: cover;
  background-repeat: no-repeat;
}
.boy-img {
  background: url(../img/boy\ Element.png);
  height: 390px;
  width: 200px;
  background-size: cover;
  background-repeat: no-repeat;
}
.about {
  margin-top: -3rem;
  margin-bottom: 7rem;
}
#mission-vision h2 span {
  color: var(--red-color);
}
#mission-vision h2 {
  font-size: 2.6rem;
  font-weight: 600;
}

#mission-vision h4 {
  font-size: 2rem;
  font-weight: 600;
}
#vision {
  border: 1px solid rgb(181, 179, 179);
  margin-right: -15px;
}
#mission {
  border: 1px solid rgb(181, 179, 179);
}

      

.core-purpose {
  text-align: center;
  padding: 20px;
}

.core-purpose h1 {
  font-size: 5.5rem;
  margin-top: 6rem;
  color: rgb(243, 237, 237);

}

.marquee-container {
  width: 100%;
  overflow: hidden;
  background-color: rgb(222, 216, 216);
  padding: 1rem 0;
  position: relative;
}

.marquee-content {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--red-color);
  animation: marquee 20s linear infinite;
}
.marquee-content span{
  color: var(--red-color);
}

@keyframes marquee {
  from {
      transform: translateX(100%);
  }
  to {
      transform: translateX(-100%);
  }
}

/* 📱 Mobile Responsive Styles */
@media (max-width: 1024px) {
  .core-purpose h1 {
      font-size: 4rem;
      margin-top: 4rem;
  }
  .marquee-content {
      font-size: 1.2rem;
      animation-duration: 10s;
  }
}

@media (max-width: 768px) {
  .core-purpose h1 {
      font-size: 3rem;
      margin-top: 3rem;
  }
  .marquee-content {
      font-size: 1rem;
      animation-duration: 8s;
  }
}

@media (max-width: 480px) {
  .core-purpose h1 {
      font-size: 2.5rem;
      margin-top: 2rem;
  }
  .marquee-content {
      font-size: 0.9rem;
      animation-duration: 6s;
  }
}
/* ------[about us page  css|end| ]-------- */

/* ------[contact page  css|start| ]-------- */
#contact-details #red {
  color: var(--red-color);
}

#contact-address {
  width: 100%;
  font-size: 4.4vw;
  font-weight: 400;
}

#contact-details a {
  text-decoration: none;
  color: var(--red-color);
  font-size: 4vw;
  font-weight: 400;
}
.call-email i {
  color: var(--red-color);
  font-size: 4vw;
  font-weight: 400;
}
#contact-form {
  border: 1px solid rgb(206, 201, 201);
  padding: 3.5vw;
  border-radius: 18px;
}
.flag {
  background-color: whitesmoke;
  width: 20%;
  padding: 5px;
  border-radius: 50%;
}
#icons i {
  font-size: 8vw;
  padding: 10px;
  margin-right: 4px;
  border: 1px solid rgb(206, 201, 201);
  border-radius: 50%;
}

/* ------[contact page  css|end| ]-------- */

/* ------[product page  css|start| ]-------- */

.subtitle {
  color: var(--red-color);
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
}
#product-details .title {
  font-size: 5rem;
  font-weight: 600;
  line-height: 40px;
}
/* #Products a {
  background-color: #ef7f1a;
  padding: 1rem;
  border-radius: 100%;
} */
.probtn {
  padding: 16px 15px;
  color: #fff;
  background: var(--red-color);
  border: 1px solid #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.2;
  margin-top: 4px;
  display: inline-block;
  height: 70px;
  width: 70px;
  text-align: center;
  border-style: dashed;
  box-shadow: 4px 4px 0 #00000038;
  transition: all 0.1slinear;
}
#product-details {
  display: flex;
  align-items: center;
  justify-content: center;
}

.toastproduct {
  background: url(../img/milkproduct.png);
  height: 400px;
  width: 400px;
  background-size: cover;
  background-repeat: no-repeat;
}

.khariproduct {
  background: url(../img/khariproduct.png);
  height: 400px;
  width: 400px;
  background-size: contain;
  background-repeat: no-repeat;
}

.butterproduct {
  background: url(../img/Home\ Product-3.png);
  height: 400px;
  width: 400px;
  background-size: contain;
  background-repeat: no-repeat;
}
.cookiesproduct {
  background: url(../img/cookies.png);
  height: 300px;
  width: 300px;
  background-size: contain;
  background-repeat: no-repeat;
}
.creamrollproduct {
  background: url(../img/cream_roll.png);
  height: 420px;
  width: 420px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* ------[product page  css|end| ]-------- */

/* ------[footer  css|start| ]-------- */
.footer-section {
  background-color: var(--red-color);
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.footer-top {
  padding-top: 96px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.footer-top p,
.company-footer-contact-list li {
  color: #ffffff;
}

.company-footer-contact-list {
  margin-top: 10px;
}

.company-footer-contact-list li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}

.company-footer-contact-list li + li {
  margin-top: 5px;
}

.company-footer-contact-list li i {
  margin-right: 10px;
  font-size: 20px;
  display: inline-block;
}

.footer-top .site-logo {
  margin-bottom: 30px;
  display: block;
  max-width: 170px;
}

.widget-title {
  text-transform: capitalize;
  font-size: 26px;
}

.footer-top .widget-title {
  color: #ffffff;
  margin-bottom: 40px;
}

.courses-link-list li + li {
  margin-top: 10px;
}

.courses-link-list li a {
  color: #ffffff;
  text-transform: capitalize;
  font-family: var(--para-font);
  font-weight: 400;
}

.courses-link-list li a:hover {
  color: #ffb606;
}

.courses-link-list li i {
  margin-right: 5px;
}

.footer-top .small-post-title a {
  font-family: var(--para-font);
  color: #ffffff;
  font-weight: 400;
}

.small-post-item .post-date {
  color: #ffb606;
  margin-bottom: 3px;
  font-family: var(--para-font);
  font-weight: 400;
}

.small-post-list li + li {
  margin-top: 30px;
}

.news-letter-form {
  margin-top: 15px;
}

.news-letter-form input {
  width: 100%;
  padding: 12px 25px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: none;
}

.news-letter-form input[type="submit"] {
  width: auto;
  border: none;
  background-color: #ffb606;
  padding: 9px 30px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: #ffffff;
  margin-top: 10px;
}

.footer-bottom {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.149);
}

.copy-right-text {
  color: var(--red-color);
}

.copy-right-text a {
  color: #ffb606;

}

.terms-privacy li + li {
  margin-left: 10px;
}

.terms-privacy li a {
  color:var(--red-color);
  position: relative;
  font-weight: 500;
}

.terms-privacy li a:after {
  position: absolute;
  content: "-";
  color: #ffffff;
  display: inline-block;
  top: 0;
  right: -18px;
}

.terms-privacy li + li a:after {
  display: none;
}

.footer-section a {
  text-decoration: none;
}
.footer-section img {
  height: 100px;
  width: 700px;
}

/* ------[footer  css|end| ]-------- */


/* ------[product toast css|start| ]-------- */


.main-toast{
  display: flex;
  height:100%;
  justify-content: center;
  align-items: center;
  background-color: #f3f4f6;
  margin: 0;
}
.product-cart-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 55px;
  margin-top: 5vw;
}
.product-cart {
  width: 320px;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  text-align: left;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin-left: -24px;
 
}

.product-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.product-info {
  padding: 15px;
  font-family: 'Arial', sans-serif;
}
.product-name {
  font-weight: bold;
  color: var(--red-color);
  font-size: 25px;
  margin-bottom: 4px;
}
.product-weight {
  color: var(--red-hover);
  font-size: 18px;
}
.product-cart:hover {
  transform: scale(1.05);
  background-color: #e8f5e9;
}

.border-green { border-color: #4CAF50; }
.border-red { border-color: #F44336; }
.border-blue { border-color: #2196F3; }
.border-orange { border-color: #FF9800; }
.border-yellow { border-color: #FFD700; }
.border-red {border-color: red;}
.border-brown {border-color:brown;}
.border-blue {border-color:rgb(20, 122, 137);}







    .feature-main {
        /* background-color: #f8f8f8; */
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }

    /* Feature Section */
    .feature-section {
        width: 90%;
        max-width: 1200px;
        padding: 50px 0;
    }

    /* Container */
    .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }

    /* Left Side Content */
    .left-content {
        flex: 1;
        max-width: 50%;
    }
    .sub-heading {
        color: #D2691E;
        font-size: 14px;
        text-transform: uppercase;
        font-weight: bold;
    }
    .main-heading {
        font-size: 36px;
        font-weight: bold;
        margin: 10px 0;
        color: #333;
    }
    .description {
        font-size: 16px;
        color: #2d2d2de9;
        margin-bottom: 20px;
        padding-top: 15px;
    }

    /* Feature List */
    .feature-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 50px;
    }
    .feature-box {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 18px;
        color: #333;
        transition: all 0.3s ease-in-out;
    }
    
    /* Icon Background */
    .feature-box i {
        font-size: 24px;
        background: #f1d4af; /* Light brown */
        padding: 15px;
        border-radius: 50%;
        color: #D2691E;
        transition: all 0.3s ease;
    }
    .feature-box h5{
        font-size: 1.3rem;
        font-weight: 700;
    }
 
    /* Hover Effects */
    .feature-box:hover {
        color: #D2691E;
    }
    .feature-box:hover i {
        background: #D2691E;
        color: #fff;
    }

    /* Right Side Images */
    .right-images {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .right-images img {
        width: 620px;
        height: auto;
        border-radius: 8px;
        transition: 0.3s ease;
        margin-right: -100px;
    }
    .right-images img:hover {
        transform: scale(1.05);
    }

    /* Responsive Design */
    @media (max-width: 900px) {
        .container {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .left-content {
            max-width: 100%;
        }
        .feature-list {
            grid-template-columns: 1fr;
        }
        .right-images img {
          width: 400px;
          height: auto;
          border-radius: 8px;
          transition: 0.3s ease;
          margin-right: -12px;
      }
    }




   