* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --red: #d1242b;
  --dark-blue: #1a2d32;
  --blue: #008bb3;
  --green: #97a95e;
  --gray: rgb(211, 211, 211);
  --poppins-font: "Poppins", sans-serif;
}

::selection {
  background-color: var(--primary-color);
  color: var(--black-two);
}

::-webkit-scrollbar {
  width: 13px;
}

::-webkit-scrollbar {
  height: 0.5rem;
  width: 0.9rem;
  background-color: var(--black);
}

::-webkit-scrollbar-thumb {
  background-color: var(--white);
  border-radius: 12px;
  border: 3px solid var(--black);
}

body,
html {
  overflow-x: hidden;
}

body {
  font-family: var(--poppins-font);
}

li {
  list-style-type: none;
}

/* Header Start  */

.header-wrapper {
  background-color: var(--gray);
  padding: 10px 0;
}

.navbar{
    background-color: var(--gray);
    height: 100px;
  padding: 10px 0;
}

.nav-link {
    font-size: 20px;
    font-weight: 500;
}

.logo-wrapper img {
  width: 200px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Search-area {
  display: flex;
  gap: 19px;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 0;
  flex-direction: column;
  background: var(--white);
  width: 260px;
  padding: 45px 25px !important;
  transition: 1s;
  position: fixed;
  top: 0;
  left: -1500px;
  height: 100vh;
  z-index: 99999;
  /* overflow: scroll; */
  justify-content: start;
}

.active-sidebar {
  left: 0 !important;
  transition: 1s;
}

.nav-links li {
  width: 100%;
  text-align: center;
}

.nav-links li a {
  background-color: var(--red);
  display: block;
  padding: 10px;
  text-decoration: none;
  color: var(--white);
}

.hamburger i {
  color: var(--black);
  font-size: 24px;
  cursor: pointer;
}

.Search-area .search-box a {
  color: var(--black);
  font-size: 24px;
  cursor: pointer;
}

.Search-area .search-box a:hover {
  color: var(--black);
}

.hero-banner {
  padding: 80px 0;
}

.banner-hd {
  color: var(--dark-blue);
  font-size: 80px;
  margin-bottom: 30px;
  font-weight: bolder;
}

.banner-para {
  color: var(--dark-blue);
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: bolder;
}

.primary-btn {
  background-color: var(--red);
  color: var(--white);
  border-radius: 10px;
  padding: 24px 30px;
  text-decoration: none;
  font-size: 25px;
  font-weight: bold;
}

.works,
.Solution,
.benefit,
.Investment,
.Trusted,
.footer,
.Discover,
.burner,
.Griddle,
.Company,
.Jouney {
  background-color: var(--gray);
  padding: 80px 0;
}

.Solution{
    background-color: var(--gray);
  padding: 80px 120px;
}
.hyd-sec {
    background-color: var(--gray);
  padding: 40px 80px;
}

.sec-hd {
  color: var(--dark-blue);
  font-size: 50px;
  margin-bottom: 20px;
  /* text-align: center; */
  font-weight: 800;
}

.sec-para {
  color: var(--dark-blue);
  font-size: 25px;
  margin-bottom: 0;
  font-weight: 400;
}

.sec-list {
    padding-left: 1.5rem;
    list-style-type: disc;
}

.sec-list li {
    list-style-position: outside;
    list-style-type: disc;
    display: list-item !important; /* Important to override Bootstrap */
    margin-bottom: 1rem;
}

.position {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 200px;
  width: 200px;
}

/* works */

.works {
  background: var(--dark-blue) !important;
}

.works .sec-hd,
.works .sec-para {
  color: var(--white);
  text-align: center;
}

.works .sec-para {
  line-height: 35px;
  margin-bottom: 60px;
}

/* Solution */

.Solution {
  background: var(--white) !important;
}

.Solution .sec-para {
  margin-bottom: 60px;
  line-height: 35px;
  text-align: center;
}

.Solution .sec-para span {
  font-weight: 800;
}

.card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-mega-wrapper {
  margin: 15px;
}

.card-top {
  text-align: center;
  margin-bottom: 30px;
}

.solution-para {
  font-size: 25px;
  /* margin-bottom: 30px; */
  text-align: start;
  /* line-height: 45px; */
  font-weight: 800;
}

.solution-mini-para {
  font-size: 25px;
  margin-bottom: 30px;
  text-align: start;
  font-weight: 400;
}

/* benefit */
.benefit {
  background: var(--green) !important;
}

.benefit .sec-hd {
  color: var(--white);
  text-align: center;
  margin-bottom: 50px;
}

.benefit-card-wrapper {
  display: flex;
}

.benefit .card-mega-wrapper {
  text-align: center !important;
}

.benefit .card-top img {
  border-radius: 100%;
  height: 200px;
}

.benefit .card-bottom .solution-para,
.benefit .card-bottom .solution-mini-para {
  text-align: center !important;
  color: var(--white) !important;
}

/* Investment */
.Investment {
  background: var(--white) !important;
}

.Investment .sec-hd {
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 50px;
}

.Investment-card-wrapper {
  display: flex;
}

.Investment .card-mega-wrapper {
  text-align: start !important;
}

.Investment .card-top img {
  border-radius: 100%;
  height: 200px;
}

.Investment .card-bottom .solution-para,
.Investment .card-bottom .solution-mini-para {
  text-align: start !important;
  color: var(--dark-blue) !important;
}

/* help */
.help {
    background: var(--dark-blue) url("../images/new/picture.png") no-repeat center center;
    background-size: cover;
    height: 90vh;
  }

.help .sec-hd {
  color: var(--white);
  line-height: 55px;
}

.help {
  padding-top: 10vh;
}

/* Trusted */
.Trusted .card-bottom .solution-para,
.Trusted .card-bottom .solution-mini-para {
  text-align: start !important;
  padding: 0 0 0 40px;
  color: var(--dark-blue) !important;
}

/* footer */
.footer {
  background: var(--white) !important;
}

.footer .sec-hd {
  color: var(--dark-blue) !important;
  margin-bottom: 60px !important;
}

.footer .primary-btn {
  text-align: center !important;
}

.footer .resize {
  width: 70% !important;
  text-align: center !important;
  margin-bottom: 80px;
}

/* about-banner */

.about-banner {
  background: url("../images/commercial\ kitchens.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-banner .banner-hd,
.about-banner .banner-para {
  color: var(--white);
}

.about-banner .banner-para {
  margin-bottom: 100px;
}

.products-section .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s;
}

.products-section .card:hover {
    transform: translateY(-5px);
}

.products-section .btn-danger {
    background-color: #e00000;
    border-color: #e00000;
}

.products-section .btn-danger:hover {
    background-color: #c20000;
}
.product-image {
    max-height: 200px;       /* Adjust height as needed */
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}


/* Discover */
.Discover {
  background: var(--white) !important;
}

.Discover .sec-hd {
  margin-bottom: 45px;
}

.center-img-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.resize1 {
  width: 200px;
}

.center-img-content .sec-hd {
  text-align: start !important;
}

/* burner */
.burner {
  background: var(--white) !important;
}

.burner-wrapper {
  background: var(--gray);
  border-radius: 20px;
  padding: 80px 60px;
}

.burner-content-wrapper {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.burner-content-wrapper .sec-hd {
  text-align: start !important;
  margin-bottom: 0;
  border-right: 3px solid var(--dark-blue);
  padding-right: 20px;
}

.burner-content-wrapper p {
  border: none !important;
  font-weight: 400;
}

/* Griddle */
.Griddle {
  background: var(--white) !important;
}

.burner-wrapper .banner-hd {
  text-align: start !important;
  color: var(--blue);
  font-style: italic;
}

.burner-wrapper .sec-para {
  text-align: start;
}

.resize2 {
  width: 50% !important;
  text-align: center;
}

/* contact */
.contact {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
}

.contact video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* fallback if not using Bootstrap 5 */
}

/* Company */
.Company {
  background: var(--white) !important;
}

.Company .sec-para {
  color: var(--green) !important;
  text-align: center;
}

.Company .sec-para span {
  font-weight: 700;
}

.sec-new-para {
  color: var(--dark-blue);
  font-size: 25px;
  margin-bottom: 0;
  font-weight: 400;
  text-align: justify;
}

/* Jouney */
.Jouney {
  background: var(--green) !important;
}

.date-wrapper {
  display: flex;
  justify-content: start;
  align-items: baseline;
    gap: 50px;
  margin-bottom: 20px;
}

.Jouney .sec-hd,
.Jouney .solution-para,
.Jouney .sec-new-para {
  color: var(--white) !important;
}

.self .sec-para {
  color: var(--white) !important;
  text-align: center;
}
.hero-banner,
.hyd-sec {
  position: relative;
}

.join-btn {
    /* margin-top: 20px; */
    font-size: 40px;
  position: absolute;
  /* padding: 20px 90px; */
  margin-bottom: 10px;
  width: 40%;
  left: 50%;
  transform: translateX(-50%) translateY(50%); /* Center and push down into next section */
  bottom: 0;
  z-index: 10;
}
