* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #e67514;
}

.main-container {
  width: 100%;
}

/* HEADER */
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e67514;
  position: fixed;
  top: 0;
  left: 0;
  padding: 10px 20px;
  z-index: 1000;
  box-shadow: rgba(6, 5, 5, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.left-side {
  display: flex;
  align-items: center;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 10px;
}

.title {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
}

.right-side {
  display: flex;
  gap: 20px;
}

a {
  text-decoration: none;
}

.heads-one {
  position: relative;
  display: inline-block;
  color: white;
  transition: color 0.3s ease;
  font-weight: 600;
  font-size: 18px;
}

.heads-one::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -3px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.heads-one:hover {
  color: #000;
  cursor: pointer;
}

.heads-one:hover::after {
  width: 100%;
}

/* TOGGLE (MOBILE) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
}

/* HERO SECTION */
.hero {
  width: 100%;
  height: 100vh;
  background-image: url("./back-ram.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding-left: 30px;
  padding-right: 30px;
}

.content {
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: white;
}

.content-two {
  font-size: 18px;
  font-weight: 500;
  color: white;
  margin-top: 10px;
  max-width: 500px;
}

.buttons {
  margin-top: 20px;
}
button:hover {
  transform: scale(1.09); /* Slight zoom */
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Soft shadow */
}

.order_button,
.view_button {
  padding: 12px 24px;
  margin: 10px 10px 0 0;
  border-radius: 8px;
  font-size: 18px;
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 2px 2px 2px white;
}

.order_button {
  background-color: black;
}

.view_button {
  background-color: #e28229;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .right-side {
    display: none;
    flex-direction: column;
    background-color: #e67514;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .right-side.show {
    display: flex;
  }

  .logo {
    width: 50px;
    height: 50px;
  }

  .title {
    font-size: 22px;
  }

  .content {
    font-size: 32px;
  }

  .content-two {
    font-size: 16px;
    max-width: 100%;
  }

  .order_button,
  .view_button {
    font-size: 16px;
    padding: 10px 18px;
  }
}

/* main-page-css-end-------------------------------------------------------------------------- */

/* product page css start----------------------------------------------------------------------------------  */

.maiCon {
  padding: 20px;
  background-color: #c9c4c4;
}

.product-container {
  width: 100%;
}

.cards-group {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  width: 30%;
  height: 500px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.card p {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0;
}

.card button {
  display: block;
  margin: 10px auto 20px auto;
  width: 80%;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  background-color: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.card button:hover {
  background-color: #e67514;
  color: white;
}

/* Media Queries */
@media (max-width: 1024px) {
  .card {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .right-side {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 20px;
    background-color: #e67514;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .right-side.active {
    display: flex;
  }

  .right-side a {
    margin: 10px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .card {
    width: 90%;
  }
}

/* service page start css--------------------------------------------------------------------------- */
.service-main {
  margin-top: 100px;
  background-color: #e67514;
}

.section-box {
  display: flex;
  background-color: #e2dfdf;
  width: 100%;
  height: 600px;
}

.section-box:nth-child(even) {
  background-color: #e67514;
}

.section-text,
.section-img {
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-heading {
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}

.section-content {
  font-size: 23px;
  font-weight: 500;
  text-align: justify;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.section-img img {
  width: 80%;
  height: 90%;
  object-fit: contain;
  margin: auto;
  transition: transform 0.3s ease;
}

.section-img img:hover {
  transform: scale(1.08);
}

.card-service {
  width: 100%;
  background-color: #e67514;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 60px 20px;
}

.card1,
.card2,
.card3 {
  width: 300px;
  height: 300px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 1px 57px 58px,
    rgba(0, 0, 0, 0.12) 1px -15px 34px, rgba(0, 0, 0, 0.12) 2px 6px 8px,
    rgba(0, 0, 0, 0.17) 2px 16px 17px, rgba(0, 0, 0, 0.09) 0px -6px 8px;
  margin: 20px 0;
  text-align: center;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card1:hover,
.card2:hover,
.card3:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.card-content {
  font-size: 22px;
}

@media (max-width: 768px) {
  .right-side {
    display: none;
  }

  .menu-icon {
    display: flex;
  }

  .mobile-menu.show {
    display: flex;
  }

  .section-box {
    flex-direction: column;
    height: auto;
  }

  .section-text,
  .section-img {
    width: 100%;
    height: auto;
  }

  .section-img img {
    width: 90%;
    height: auto;
  }

  .card1,
  .card2,
  .card3 {
    width: 90%;
  }

  .brand {
    font-size: 30px;
  }
}

/* about page css ----------------------------------------------------------------------------*/

.main-container-about {
  padding-top: 100px;
  background-color: #e67514;
}

.about-section {
  background: #f0f0f0;
  padding: 40px 20px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.about-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 1000px;
  margin: auto;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px;
}

.cards-section {
  padding: 40px 20px;
  background-color: #e67514;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.card-offer {
  background: #fff;
  border-radius: 12px;
  width: 280px;
  padding: 20px;
  height: 200px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 20px;
  transition: transform 0.3s ease;
}

.card-offer:hover {
  transform: scale(1.05);
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-text {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.card-offer button {
  background: #e67514;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.why-choose {
  padding: 40px 20px;
  background-color: #fefefe;
}

.choose-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.point {
  flex: 1 1 300px;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.review-section {
  padding: 40px 20px;
  background: #e2dfdf;
}

.review-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 20px;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: scale(1.05);
}

.review-text {
  font-size: 15px;
  font-weight: 500;
  text-align: justify;
}

.review-rating {
  text-align: center;
  font-size: 18px;
  margin-top: 10px;
}

.review-name {
  text-align: center;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .brand-name {
    font-size: 22px;
  }

  .heads {
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
  }

  .about-text,
  .point {
    font-size: 16px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-text {
    font-size: 14px;
  }
}

/* contact page css------------------------------------------------------------ */

.main-contact {
  padding-top: 100px;
  padding-bottom: 50px;
  width: 100%;
  background-color: #e67514;
}

.contact-box {
  background-color: white;
  width: 90%;
  margin: auto;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  box-sizing: border-box;
}

.left-contact,
.right-contact {
  box-sizing: border-box;
  padding: 10px;
}

.left-contact {
  width: 100%;
  margin-top: 40px;
}

.right-contact {
  width: 100%;
}

.contact-icons,
.contact-icons-lo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 10px;
  margin-top: 10px;
}

.contact-heading {
  font-size: 22px;
  margin-left: 15px;
  color: #000000;
}

.contact-tag {
  display: block;
  margin-left: 25px;
  color: #0192f9;
}

.box-contact-right {
  margin-top: 20px;
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
}

.contact-heading-what {
  font-size: 22px;
  margin-left: 15px;
  margin-top: 20px;
  color: #000000;
}

.whatsapp-box {
  margin-top: 10px;
  margin-left: 15px;
}

@media (min-width: 768px) {
  .left-contact {
    width: 40%;
  }

  .right-contact {
    width: 60%;
  }

  .right-side {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .right-side {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .contact-heading,
  .contact-heading-what {
    font-size: 20px;
    margin-left: 10px;
  }

  .contact-icons,
  .contact-icons-lo {
    margin-left: 10px;
  }

  .contact-tag {
    margin-left: 20px;
  }

  .whatsapp-box {
    margin-left: 10px;
  }
}

.contact-one {
  height: 25%;
  width: 70%;
  background-color: #e28229;
  border-radius: 10px;
  border-left: #e28229;
  border-width: 20px;
}
.contact-one1 {
  height: 100%;
  width: 99%;
  background-color: #e5e0e0;
  border-radius: 10px;
  border-width: 20px;
}
.contact-one2 {
  height: 23%;
  width: 70%;
  background-color: #e28229;
  border-radius: 10px;
  border-left: #e28229;
  border-width: 20px;
  margin-left: 3%;
  margin-top: 0;
  margin-bottom: 20px;
}
