@font-face {
  font-family: Helvetic;
  src: url(./Helvetica.ttc);
}

@font-face {
  font-family: codeRaptor;
  src: url(./CodePredators-Regular.otf);
}

:root {
  --primary-color: #000;
  --secondary-color: #fff;
  --yellow-color: #f9d131;
  --green-color: #3d543f;
  --font-family-primary: "Helvetic", Arial, sans-serif;
  --font-family-secondary: "codeRaptor";
  --font-h1: 4rem;
  --font-p: 20px;
  --font-link: 1.2rem;
  --font-link-hover: 1.2rem;
  --font-link-dropdown: 1rem;
  --font-mobile-h1: 2rem;
  --font-mobile-p: 1.5rem;
  --font-mobile-small: 18px;
  --font-mobile-medium: 24px;
  --font-mobile-link: 1rem;
  --font-mobile-link-small: 0.9rem;
  --font-carousel-h2: 50px;
  --font-carousel-control: 2rem;
  --font-carousel-control-mobile: 1.5rem;
  --font-carousel-control-small: 1.2rem;
  --line-height-p: 2rem;
  --letter-spacing-p: 2px;
  --letter-spacing-h1: 7px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 12px;
  /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: var(--primary-color);
  /* Background of the scrollbar track */
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  /* Color of the scrollbar thumb */
  border-radius: 10px;
  /* Roundness of the scrollbar thumb */
  border: 3px solid #f1f1f1;
  /* Padding around the scrollbar thumb */
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
  /* Color of the scrollbar thumb when hovered */
}
html,
body {
  overflow-x: hidden;
}

html {
  scrollbar-width: thin;
  /* Width of the scrollbar */
  scrollbar-color: var(--yellow-color) var(--primary-color);
  /* Color of the scrollbar thumb and track */
}

body {
  font-family: var(--font-family-primary);
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

header {
  color: var(--secondary-color);
  position: relative;
  width: 100%;
  z-index: 1000;
}

nav {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 5rem;
  background-color: rgba(249, 209, 49, 0.1);
  backdrop-filter: blur(20px);
}

nav .logo img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  height: 100%;
  width: max-content;
}

nav ul li {
  list-style: none;
  position: relative;
  letter-spacing: none;
  line-height: none;
}

nav ul li a {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: var(--font-link);
  transition: all 0.3s ease-in;
  text-transform: capitalize;
}

nav ul li a:hover {
  color: var(--yellow-color);
  text-decoration: underline;
}

nav ul li a:active,
.nav-menu li a.active {
  background: var(--yellow-color);
  color: var(--primary-color);
  padding: 1rem;
  border-radius: 0.5rem;
  width: max-content;
}

.menu-toggle {
  display: none;
}

/* hero section */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background-repeat: no-repeat;
  padding: 2px;
  background-size: cover;
  background-position: center;
  color: var(--secondary-color);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Adjust the opacity as needed */
  z-index: 1;
}

.hero-section h1,
.hero-section p {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-family: var(--font-family-secondary);
  font-size: var(--font-h1);
  letter-spacing: var(--letter-spacing-h1);
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: var(--font-p);
  font-family: var(--font-family-primary);
  text-align: center;
  max-width: 80%;
  line-height: 1.5;
  letter-spacing: var(--letter-spacing-p);
  line-height: var(--line-height-p);
  margin-bottom: 3rem;
}

.hero-section img {
  object-fit: cover;
  object-position: center;
  width: inherit;
}

.btn {
  background: var(--yellow-color);
  color: var(--primary-color);
  padding: 20px;
  font-family: var(--font-family-primary);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.3s ease-in;
  z-index: 1;
}

.btn:hover {
  background: var(--green-color);
}

.dropdown {
  margin-top: 1rem;
  width: max-content;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-color);
  padding: 1rem;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 1);
  border-radius: 0.5rem;
  transition: all 0.5s ease-in;
  z-index: 100000;
}

.dropdown li {
  margin-bottom: 2rem;
}

.dropdown li a {
  color: var(--secondary-color);
  font-size: var(--font-link-dropdown);
  text-align: center;
}

.dropdown.show {
  display: block;
}
/* Product Carousel Styles */
.product-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10rem;
  width: 100%;
  height: 100%;
  padding: 2rem 5rem;
  color: var(--secondary-color);
  background-color: #000;
  backdrop-filter: blur(10px);
  /* Added for glassy effect */
  border-radius: 15px;
  /* Optional: Add rounded corners for better effect */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Optional: Add shadow for depth */

  text-align: center;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(249, 209, 49, 0.3);
  backdrop-filter: blur(30px);
  /* Added for glassy effect */
  border-radius: 15px;
  /* Optional: Add rounded corners for better effect */
  z-index: 1;
}

.product-carousel h2,
.product-carousel .carousel-container {
  position: relative;
  z-index: 5;
}

.product-carousel h2 {
  font-family: var(--font-family-secondary);
  font-size: var(--font-carousel-h2);
  letter-spacing: var(--letter-spacing-h1);
  font-weight: bold;
  color: var(--secondary-color);
  margin-top: 1rem;
  z-index: 5;
}

.product-carousel p {
  font-size: var(--font-p);
  font-family: var(--font-family-primary);
  text-align: center;
  max-width: 80%;
  line-height: 1.5;
  letter-spacing: var(--letter-spacing-p);
  line-height: var(--line-height-p);
  z-index: 5;
}

.carousel-container {
  position: relative;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 4rem;
}

.carousel-track-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.carousel-track {
  width: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  min-width: 100%;
  box-sizing: border-box;
  padding: 2rem;
  flex: 0 0 100%;
}

.carousel-slide img {
  max-width: 50%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-slide h1 {
  text-align: center;
  font-family: var(--font-family-secondary);
  font-size: var(--font-mobile-h1);
  /* letter spacing for h1 */
  letter-spacing: var(--letter-spacing-h1);
}

.carousel-slide p {
  /* letter spacing */
  line-height: var(--line-height-p);
  letter-spacing: var(--letter-spacing-p);
  font-size: var(--font-mobile-p);
  font-weight: 600;
  font-family: var(--font-family-primary);
  max-width: 70%;
  text-align: center;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: var(--secondary-color);
  font-size: var(--font-carousel-control);
  cursor: pointer;
  z-index: 1000;
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}

/* section how to apply */

.section-how-to-apply {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.section-how-to-apply h1 {
  font-size: 3.6rem;
  font-family: var(--font-family-secondary);
  letter-spacing: var(--letter-spacing-h1);
  margin-bottom: 3rem;
  align-items: center;
  text-align: center;
}

.section-how-to-apply p {
  font-size: var(--font-p);
  font-family: var(--font-family-primary);
  text-align: center;
  max-width: 80%;
  letter-spacing: var(--letter-spacing-p);
  line-height: var(--line-height-p);
  margin-bottom: 3rem;
}

.section-project {
  position: relative;
  width: 100%;
  background-color: var(--yellow-color);
  color: var(--secondary-color);
  padding: 10rem 0;
  overflow: hidden;
  z-index: 0;
  /* Ensure the section itself is above the overlay */
}

.section-project::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
  /* Ensure the overlay is behind the section */
}

.section-project .container {
  position: relative;
  /* Ensure content within container respects z-index */
  z-index: 1;
  /* Bring content within container above the overlay */
  width: 80%;
  max-width: 100%;
  height: 700px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 5rem;
}

.section-project h1 {
  font-size: var(--font-h1);
  font-family: var(--font-family-secondary);
  letter-spacing: var(--letter-spacing-h1);
  margin-bottom: 3rem;
  position: relative;
  /* Ensure heading respects z-index */
  z-index: 1;
  /* Bring heading above the overlay */
}

.image-gallery-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  gap: 2rem;
  position: relative;
  /* Ensure container respects z-index */
  z-index: 1;
  /* Bring container above the overlay */
}

.image-gallery-left {
  position: relative;
  flex: 1;
  max-width: 50%;
  height: 100%;
  padding: 1rem;
}

.image-gallery-left::before {
  content: "Learn More";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  background-color: var(--primary-color);
  /* Adjust button background color */
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.image-gallery-left:hover::before {
  opacity: 1;
}

.image-gallery-left img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.2);
  object-fit: fill;
}

.image-gallery-right {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  padding: 1rem;
  gap: 1rem;
}

.image-thumbnail {
  position: relative;
  flex: 0 0 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
}

.image-thumbnail::before {
  content: "Learn More";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  background-color: var(--primary-color);
  /* Adjust button background color */
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.image-thumbnail:hover::before {
  opacity: 1;
}

.image-thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.2);
  object-fit: fill;
}

/* Footer Styles */
footer {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.footer {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.footer .image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  z-index: 2;
  padding: 20px;
}

.footer-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo-footer {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 1rem;
}

.logo-footer img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.footer-icons i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin: 0 0.5rem;
  transition: color 0.3s ease-in-out;
}

.footer-icons i:hover {
  color: var(--yellow-color);
}

.footer-1 {
  flex: 1;
  text-align: left;
}

.footer-1 h3 {
  width: 100%;
  font-family: var(--font-family-secondary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-h1);
  white-space: nowrap;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.5rem;
  list-style: none;
  white-space: nowrap;
}

.footer-list a {
  color: var (--secondary-color);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease-in-out;
}

.footer-list a:hover {
  color: var(--yellow-color);
}

.footer-1 img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--yellow-color);
  position: relative;
  height: 50px;
}

.copyright::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.copyright p {
  font-size: 1rem;
  font-family: var(--font-family-primary);
  z-index: 2;
  letter-spacing: var(--letter-spacing-p);
  line-height: var(--line-height-p);
}

li {
  list-style: none;
  text-align: start;

  letter-spacing: var(--letter-spacing-p);
  line-height: var(--line-height-p);
}

a {
  text-decoration: none;
  font-style: none;
  color: var(--secondary-color);
}

/* Ensure the grid container is styled properly */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: var(--yellow-color);
  padding: 2rem;
  position: relative;
}

.product-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Adjust the opacity as needed */
  z-index: 1;
}

/* Style each product card */
.product-card {
  position: relative;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  background-color: var(--yellow-color);
  z-index: 2;
  height: 750px;
}

.product-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

/* Style the image */
.product-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Style the content */
.product-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.product-title {
  font-family: var(--font-family-secondary);
  font-size: 2rem;
  margin: 0 0 10px;
  color: var(--primary-color);
  letter-spacing: var(--letter-spacing-h1);
  min-height: 100px;
}

.product-content p {
  flex-grow: 1;
  margin: 10px 0;
  color: #666;
  letter-spacing: var(--letter-spacing-p);
  line-height: var(--line-height-p);
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f9d131;
  color: #000;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background-color: #3d543f;
  color: #fff;
}

/* single product */
.hero-single-product-section {
  width: 100%;
  height: 100%;
  margin-bottom: 10rem;
}

.product-detail-section .container {
  display: flex;
  flex-wrap: wrap;
  padding: 5rem;
  gap: 2rem;
  justify-content: center;
}

.product-detail-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

.product-image-gallery {
  margin-top: 3.5rem;
  flex: 1;
  min-width: 300px;
}

.img-display {
  overflow: hidden;
  margin-bottom: 1rem;
}

.img-showcase {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.img-showcase img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.img-select {
  width: 100%;
  display: flex;
  gap: 0.5rem;
}

.img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}

.img-item img:hover {
  border: 2px solid var(--yellow-color);
}

.product-details {
  flex: 1;
  min-width: 300px;
  padding: 1rem;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-title1 {
  font-size: 4rem;
  letter-spacing: var(--letter-spacing-h1);
  margin-bottom: 1rem;
  font-family: var(--font-family-secondary);
}

.product-description1 {
  margin-top: 4rem;
  line-height: var(--line-height-p);
  letter-spacing: var(--letter-spacing-p);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.product-specs1 {
  font-size: 1rem;
  margin-top: 5rem;
}

.product-specs1 h3 {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-family: var(--font-family-secondary);
  letter-spacing: var(--letter-spacing-h1);
}

.product-specs1 ul {
  list-style: none;
  padding: 0;
}

.product-specs1 li {
  margin-top: 4rem;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  list-style: disc;
  margin-left: 1.5rem;
}

.table-single-product {
  width: 100%;
}

.table-single-product table {
  width: 90%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  margin-right: 5rem;
  margin-left: 5rem;
}

.table-single-product th,
.table-single-product td {
  padding: 1rem;
  border: 1px solid var(--primary-color);
  text-align: center;
}

.table-single-product th {
  background-color: var(--yellow-color);
  color: var(--primary-color);
  font-weight: bold;
}

.table-single-product td {
  color: var(--secondary-color);
}

.table-single-product td a {
  color: var(--yellow-color);
  text-decoration: none;
}

.table-single-product td a:hover {
  text-decoration: underline;
}

.related-products {
  margin-top: 3rem;
}

.related-products h1 {
  font-size: 4rem;
  letter-spacing: var(--letter-spacing-h1);
  margin-bottom: 2rem;
  font-family: var(--font-family-secondary);
  color: var(--secondary-color);
  text-align: center;
}

.related-products .box-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.related-products .box {
  flex: 1 1 300px;
  background-color: var(--primary-color);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.related-products .box:hover {
  transform: scale(1.05);
}

.related-products .box .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.related-products .box .content {
  padding: 1rem;
}

.related-products .box .content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-p);
}

.related-products .box .content p {
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-p);
}

.related-products .box .content .btn {
  background-color: var(--yellow-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.related-products .box .content .btn:hover {
  background-color: var(--green-color);
  color: var(--secondary-color);
}

/* single how to apply */

.entry-header {
  text-align: center;
  margin-bottom: 2rem;
}

.entry-title {
  letter-spacing: 2px;
  margin-top: 5rem;
  margin-bottom: 5rem;
  font-size: var(--font-h1);
  font-family: var(--font-family-secondary);
  color: var(--secondary-color);
  letter-spacing: var(--letter-spacing-h1);
}

.entry-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 800px;
}

.video-container video,
.video-container iframe {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.explanations-list {
  margin-top: 5rem;
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 2rem;
  text-align: left;
}

.explanations-list li {
  list-style: disc;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: var(--secondary-color);
  letter-spacing: var(--letter-spacing-p);
  line-height: var(--line-height-p);
}

.additional-content {
  margin-top: 10rem;
  margin-bottom: 5rem;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  letter-spacing: var(--letter-spacing-p);
  line-height: var(--line-height-p);
}

.additional-content h1 {
  letter-spacing: var(--letter-spacing-h1);
  font-size: 2rem;
  font-family: var(--font-family-primary);
}

/* Contact Page Styles */
.page-header {
  text-align: center;
  margin-bottom: 2rem;
  z-index: 2;
}

.page-title {
  font-size: 2.5rem;
  font-family: var(--font-family-secondary);
  color: var(--primary-color);
  letter-spacing: var(--letter-spacing-h1);
}

.page-content {
  max-width: 100%;
  margin: 0 auto;
}

.submit-project-section {
  position: relative;
  background-color: var(--yellow-color);
  color: var(--primary-color);
  padding: 2rem;
  border-radius: 10px;
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
  z-index: 0;
  overflow: hidden;
}

.submit-project-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.submit-project-section h2 {
  font-size: var(--font-h1);
  font-family: var(--font-family-secondary);
  letter-spacing: var(--letter-spacing-h1);
  margin-bottom: 1rem;
  z-index: 1;
  position: relative;
}

.submit-project-section p {
  margin-bottom: 2rem;
  z-index: 1;
  position: relative;
  letter-spacing: var(--letter-spacing-p);
  line-height: var(--line-height-p);
}

.submit-project-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1;
  position: relative;
}

.submit-project-section label {
  text-align: left;
}

.submit-project-section input,
.submit-project-section textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
}

.submit-project-section button {
  padding: 0.5rem 2rem;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-project-section button:hover {
  background-color: var(--yellow-color);
}

.contact-info-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  padding: 2rem;
  border-radius: 10px;
  max-width: 100%;
  height: 100vh; /* This can be adjusted based on your layout needs */
  text-align: center;
  z-index: 2;
  background-image: url("<?php echo get_template_directory_uri(); ?>/build/assets/Rami Request-03.jpg"); /* Move the image here */
  background-size: cover; /* Cover the entire section */
  background-position: center; /* Center the image */
}

.contact-info-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1; /* This z-index should be less than the content inside the section */
}

.contact-info-section h2 {
  margin-top: 2rem;
  width: 100%;
  font-size: var(--font-h1);
  font-family: var(--font-family-secondary);
  letter-spacing: var(--letter-spacing-h1);
  margin-bottom: 1rem;
  z-index: 2;
}

.contact-info-section p {
  margin-top: 4rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: var(--letter-spacing-p);
  line-height: var(--line-height-p);
  z-index: 2;
}

.contact-info-section a {
  color: var(--secondary-color);
  text-decoration: none;
  z-index: 2;
}

.contact-info-section a:hover {
  text-decoration: underline;
  z-index: 2;
}

/* live search */
.product-search {
  text-align: center;
}

#product-search {
  width: 50%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* live search how to apply */
.product-search {
  margin-bottom: 20px;
  text-align: center;
}

#term-search {
  width: 50%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* scrolling button footer */
#scrollToTopBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Fixed/sticky position */
  bottom: 0;
  /* Place the button at the bottom of the page */
  right: 30px;
  /* Place the button 30px from the right */
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  background-color: var(--primary-color);
  /* Set a background color */
  color: white;
  /* Text color */
  cursor: pointer;
  /* Add a mouse pointer on hover */
  padding: 10px 20px;
  /* Some padding */
  border-radius: 10px 10px 0 0;
  /* Rounded corners */
  font-size: 30px;
  /* Increase font size */
  transition: all 0.5s ease-in;
}

#scrollToTopBtn:hover {
  background-color: var(--green-color);
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* Menu Toggle */
  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: var(--font-mobile-medium);
    color: var(--secondary-color);
  }

  /* Navigation Styling */
  nav {
    background-color: transparent;
    backdrop-filter: none;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -250px;
    height: 100%;
    width: max-content;
    background-color: rgba(0, 0, 0, 0.8);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1rem;
    transition: left 0.3s ease;
    z-index: 1001;
  }

  .nav-menu.show {
    left: 0;
  }

  nav .logo img {
    width: 150px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin-bottom: 2rem;
    position: relative;
  }

  nav ul li:hover .dropdown {
    display: block;
  }

  /* Dropdown Styling */
  .dropdown {
    position: absolute;
    top: -100%;
    left: 100%;
    width: 150px;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    z-index: 1002;
  }

  /* Hero Section */
  .hero-section {
    padding: 1rem;
    justify-content: center;
    gap: 1rem;
    text-align: left;
    height: 100%;
  }

  .hero-section h1 {
    font-size: var(--font-mobile-h1);
  }

  .hero-section p {
    font-size: var(--font-mobile-p);
    width: 100%;
  }

  /* Carousel */
  .product-carousel {
    padding: 1rem;
  }

  .product-carousel h2 {
    font-size: var(--font-mobile-medium);
  }

  .carousel-control {
    font-size: var(--font-carousel-control-mobile);
  }

  .carousel-track {
    flex: 1;
    width: 100%;
    transform: translateX(-100%);
  }

  .carousel-slide {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .carousel-slide p {
    font-size: var(--font-mobile-p);
  }

  .carousel-slide img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  /* Section Styles */
  .section-how-to-apply,
  .section-project {
    width: 100%;
    height: 100%;
  }

  .section-project .container {
    margin-bottom: 5rem;
  }

  .section-project h1,
  .section-how-to-apply h1 {
    font-size: var(--font-mobile-medium);
  }

  /* Image Gallery */
  .image-gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
  }

  .image-thumbnail {
    max-width: calc(50% - 1rem);
    margin-bottom: 1rem;
  }

  /* Footer Styling */
  footer,
  .footer {
    height: fit-content;
    padding: 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-1 h3 {
    margin-bottom: 1rem;
  }

  .footer-list li {
    margin-bottom: 0.5rem;
  }
  .copyright {
    height: 100%;
  }

  /* Product Grid */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    position: relative;
  }

  .product-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  .product-card {
    position: relative;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background-color: var(--yellow-color);
    z-index: 2;
    height: 100%;
  }

  .product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  /* Section Titles */
  .page-title,
  .submit-project-section h2,
  .contact-info-section h2,
  .entry-title,
  .additional-content h1,
  .related-products h1 {
    font-size: var(--font-mobile-h1);
  }

  /* Video Container */
  .video-container {
    width: 100%;
    padding: 0 1rem;
  }

  .video-container video,
  .video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  /* Explanations List */
  .explanations-list {
    margin-top: 2rem;
    padding-left: 1rem;
  }

  .explanations-list li {
    font-size: var(--font-mobile-p);
  }

  /* Additional Content */
  .additional-content {
    margin-top: 5rem;
    margin-bottom: 2rem;
  }

  /* Product Details */
  .product-detail-section .container {
    padding: 2rem;
    gap: 1rem;
  }

  .product-title1,
  .product-description1,
  .product-specs1 {
    font-size: 1rem;
  }

  .product-specs1 h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .table-single-product {
    width: 100%;
    margin: 0;
  }

  .table-single-product th,
  .table-single-product td {
    padding: 0.5rem;
  }

  /* Related Products */
  .related-products .box-container {
    gap: 1rem;
  }

  .related-products .box {
    flex: 1 1 100%;
  }

  .related-products .box .content h3 {
    font-size: 1rem;
  }
  .table-single-product table {
    margin-left: 3rem;
    width: 80%;
  }
  .table-single-product table tr td {
    font-size: 16px;
  }
  .product-specs1 ul li {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 1rem;
  }

  nav .logo img {
    width: 120px;
  }

  nav ul li a {
    font-size: var(--font-mobile-link-small);
  }

  .container {
    width: 100%;
    padding: 0;
    margin: 0;
    justify-content: start;
    align-items: centers;
  }

  /* Hero Section */
  .hero-section {
    padding: 1rem;
    text-align: center;
  }

  .hero-section h1 {
    font-size: var(--font-mobile-medium);
  }

  .hero-section p {
    font-size: var(--font-mobile-small);
  }

  /* Product Carousel */
  .product-carousel h2 {
    font-size: var(--font-mobile-medium);
  }

  .carousel-control {
    font-size: var(--font-carousel-control-small);
  }

  .carousel-track {
    width: 100%;
    overflow: hidden;
  }

  .carousel-slide {
    width: 100%;
    padding: 1rem;
    text-align: center;
  }

  /* Project Section */
  .section-project {
    padding: 2rem 0;
  }

  .image-gallery-container {
    flex-direction: column;
    padding: 1rem;
    align-items: center;
  }

  .image-thumbnail {
    width: 100%;
    margin-bottom: 1rem;
  }

  /* Footer */
  footer {
    padding: 0;
    margin: 0;
    height: 100%;
  }

  .footer {
    width: 100%;
    height: 100%;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-1 h3 {
    margin-bottom: 0.5rem;
  }

  .footer-list li {
    margin-bottom: 0.5rem;
  }

  .footer-1 img {
    width: 80px;
  }

  /* Product Grid */
  .product-grid {
    grid-template-columns: 1fr;
  }

  /* Submit Project Section */
  .submit-project-section {
    padding: 1rem;
    margin: 1rem auto;
  }

  .submit-project-section h2 {
    font-size: var(--font-mobile-medium);
    margin-top: 2rem;
  }

  .submit-project-section p {
    font-size: var(--font-mobile-small);
    margin-top: 1rem;
  }

  /* Contact Info Section */
  .contact-info-section {
    padding: 1rem;
    margin: 2rem auto;
    text-align: center;
  }

  .contact-info-section h2 {
    font-size: var(--font-mobile-medium);
  }

  .contact-info-section p {
    font-size: var(--font-mobile-small);
  }

  /* Entry Title */
  .entry-title {
    font-size: var(--font-mobile-medium);
    margin: 1rem 0;
  }

  /* Video Container */
  .video-container {
    width: 100%;
    padding: 1rem;
  }

  .video-container video,
  .video-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
  }

  /* Explanations List */
  .explanations-list {
    margin-top: 1rem;
    padding-left: 0.5rem;
  }

  .explanations-list li {
    font-size: var(--font-mobile-small);
  }

  /* Additional Content */
  .additional-content {
    margin-top: 3rem;
    margin-bottom: 1rem;
  }

  .additional-content h1 {
    font-size: var(--font-mobile-medium);
  }
}
