* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
/* Header styles */
.header {
  background-color: #4b0e83;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: relative;
  height: 120px;
  border-bottom: 4px solid goldenrod;
}
/* Centering the logo */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  margin-right: 10px;
  margin-top: 15px;
}

/* Navbar styles */
.nav {
  display: flex;
  justify-content: flex-end; /* Align navbar to the right */
  align-items: center;
  width: 100%; /* Navbar stretches across the header */
  flex-wrap: wrap;
  position: relative; /* Necessary for positioning the dropdown on mobile */
}

/* Menu container */
.menu-container ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

/* Main menu items */
.menu-container li {
  list-style: none;
  color: white;
  padding: 10px;
  position: relative;
  font-size: 20px;
  letter-spacing: 0.01ch;
  transition: color 0.3s ease-in-out;
}

i {
  font-family: "Franklin Gothic Medium";
  font-weight: 1200;
}

.menu-container li:hover {
  cursor: pointer;
  color: #d6b05c;
}

/* Dropdown menu */
.menu-container li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  background-color: #4b0e83;
  padding: 0;
  margin: 0;
  list-style: none;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

/* Show dropdown on hover */
.menu-container li:hover ul {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Dropdown items */
.menu-container li ul li {
  padding: 10px 20px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: white;
  font-size: 18px;
  white-space: nowrap;
}

.menu-container li ul li:hover {
  color: #d6b05c;
}

/* Hamburger menu (hidden by default) */
.hamburger {
  display: none;
  font-size: 24px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* Media Queries */

/* Tablet and smaller screens (max-width: 768px) */
@media (max-width: 768px) {
  .menu-container {
    display: none; /* Hide menu by default */
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #4b0e83;
    width: 100%; /* Full width for mobile */
    z-index: 1000;
  }

  .menu-container ul {
    flex-direction: column; /* Stack menu items */
    align-items: flex-start;
  }

  .menu-container li {
    padding: 15px 20px;
    text-align: left;
  }

  .menu-container.active {
    display: flex; /* Show menu when toggled */
  }

  .hamburger {
    display: block; /* Show hamburger menu */
  }
}

/* Mobile screens (max-width: 480px) */
@media (max-width: 480px) {
  .menu-container li ul li {
    font-size: 16px; /* Adjust dropdown font size for smaller screens */
  }
}

.first1 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}
.section1 {
  position: relative;
  width: 100%;
  height: 100vh;
}
.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.section1 img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  z-index: 2;
}
@media (max-width: 768px) {
  .section1 img {
    width: 80%;
    height: auto;
    margin-top: 100px;
  }
}

/* For large screens (laptops and up) */
@media (min-width: 1024px) {
  .background-video {
    object-fit: cover;
  }
}
.winsec {
  border-top: 4px solid goldenrod;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #4b0e83;
  gap: 10px;
  flex-wrap: wrap;
}
.winsec1 {
  width: 100%;
  height: 100%;
}
.winsec h1 {
  font-size: 30px;
  color: white;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 20px;
  margin-top: 70px;
}
.winsec p {
  font-size: 20px;
  color: white;
  text-align: center;
}
.btn .golden {
  height: 48px;
  width: 300px;
  padding: 20px 16px;
  margin: 40px;
  font-size: 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #4b0e83;
  background: linear-gradient(to right, #d4af37, #f3e5ab, #d4af37, #f3e5ab);
  transition: background-position 0.7s ease, transform 0.2s;
  background-position: right;
  letter-spacing: 0.2ch;
  background-size: 200%;
  font-weight: bold;
  flex-wrap: wrap;
}
.btn .golden {
  display: inline-block;
  margin: 0 0.5rem;

  animation: bounce;
  animation-duration: 2s;
}
.btn .golden:hover {
  cursor: pointer;
  background-position: left;
}
.productsec {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #4b0e83;
  flex-wrap: wrap;
}
.product {
  text-align: center;
}
.product h2 {
  font-size: 70px;
  color: #d5b85a;
  margin-bottom: 20px;
  margin-top: 40px;
}
.articlemain {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 10px;
  padding: 20px 10px;
}
.step {
  position: relative;
  margin-left: 60px;
}
.step {
  animation: zoomIn;
  animation-duration: 2s;
}
.step_num {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 3px solid #4b0e83;
  background: #fff;
  font-weight: 900;
  font-size: 20px;
  width: 3rem;
  height: 3rem;
  left: 0;
  top: 0;
}
.step__number {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  background-color: white;
  color: #4b0e83;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}
.step_image {
  display: block;
  border-radius: 50%;
  border: 0.2rem solid #fff;
  max-width: 24rem;
  box-sizing: border-box;
  box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease-in-out;
}
.step_image:hover {
  transform: scale(1.05);
  box-shadow: 6px 12px 30px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.step_title {
  font-size: 17px;
  text-align: center;
  margin-bottom: 10px;
  margin-top: 20px;
  color: white;
}
.articlemain a {
  color: white;
  font-size: 16px;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn .golden {
  height: 48px;
  width: 300px;
  padding: 20px 16px;
  margin: 40px;
  font-size: 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #4b0e83;
  background: linear-gradient(to right, #d4af37, #f3e5ab, #d4af37, #f3e5ab);
  transition: background-position 0.7s ease, transform 0.2s;
  background-position: right;
  letter-spacing: 0.2ch;
  background-size: 200%;
  font-weight: bold;
  text-transform: uppercase;
}

.btn .golden:hover {
  cursor: pointer;
  background-position: left;
}
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4b0e83;
}
.first {
  position: relative;
  margin-top: 20px;
  color: white;
  margin: 80px 40px;
}
.maincontent {
  margin: 20px 80px;
}
h4 {
  font-weight: 500;
  margin-bottom: 1rem;
}
.maincontent p {
  font-size: 15px;
}
.maincontent a b {
  color: white;
  text-decoration: underline;
}
.footer {
  background-color: white;
  padding: 15px 40px;
  font-family: Arial, sans-serif;
}

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

.footer-links {
  display: flex;
  gap: 8px;
  align-items: center;
  gap: 20px;
}

.footer-links a {
  color: #2d004d;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}
.footer-links a:hover {
  text-decoration: underline;
}

.footer__social {
  display: flex;
  gap: 15px;
}
.social-icons {
  font-size: 24px;
  color: #2d004d;
  transition: transform 0.3s;
}
.social-icons:hover {
  transform: scale(1.2);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #3b0073;
}

.copyright {
  font-size: 14px;
}

.mondelez-logo {
  width: 120px;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .header {
    height: auto;
    flex-direction: column;
    padding: 15px;
  }

  .logo img {
    height: auto;
  }

  .section1 img {
    width: 70%; /* Smaller for tablets */
  }

  .winsec h1 {
    font-size: 24px;
  }

  .winsec p {
    font-size: 16px;
  }

  .articlemain {
    gap: 15px;
    padding: 15px;
  }

  .step_image {
    max-width: 18rem;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }
}

/* For mobile devices (screen width less than 768px) */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    padding: 10px;
  }

  .logo img {
    height: 50px;
    margin: 10px 0;
  }

  .nav .menu-container ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .section1 img {
    width: 80%;
  }

  .winsec h1 {
    font-size: 20px;
    text-align: center;
    margin: 10px 0;
  }

  .winsec p {
    font-size: 14px;
  }

  .btn .golden {
    width: 80%;
  }

  .articlemain {
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }

  .step {
    margin: 0 auto;
  }

  .step_image {
    max-width: 14rem;
  }

  .step_title {
    font-size: 14px;
  }

  .footer {
    text-align: center;
    padding: 10px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
