:root {
  --color-dark: #21232a;
  --color-primary: #61b748;
  --color-text-light: #61b748;
  --color-bg-dark: #21232a;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  color: #e0e0e0;
  background-color: #121212;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
header {
  background-color: #21232a;
  color: #61b748;
  padding: 10px 15px; /* Reduced padding for a more compact header */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1000;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

header .logo {
  height: 50px; /* Reduced logo height */
  margin-right: 10px; /* Reduced margin for more compact spacing */
}

header h1 {
  margin: 0;
  padding: 0;
  font-size: 20px; /* Reduced font size */
  font-weight: 700;
  color: #61b748;
}

header nav {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}

header nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

header nav ul li {
  margin-left: 15px; /* Reduced spacing between items */
  float: left;
}

nav ul li a, .dropbtn {
  display: inline-block;
  color: var(--color-text-light);
  text-align: center;
  padding: 8px 15px;
  text-decoration: none;
}

nav ul li a:hover, .dropdown:hover .dropbtn {
  background-color: var(--color-primary);
}

nav ul li.dropdown {
  display: inline-block;
}

nav ul li .dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--color-dark);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

nav ul li .dropdown-content a {
  color: var(--color-text-light);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

nav ul li .dropdown-content a:hover {
  background-color: var(--color-primary);
}

nav ul li.dropdown:hover .dropdown-content {
  display: block;
}

header nav ul li:first-child {
  margin-left: 0;
}

header nav ul li a {
  color: #61b748;
  text-decoration: none;
  font-size: 14px; /* Reduced font size */
  font-weight: 500;
  padding: 8px 15px; /* Reduced padding for a smaller button-like appearance */
  border: 2px solid #61b748;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  display: inline-block;
}

header nav ul li a:hover {
  color: #fff;
  background-color: #61b748;
  border-color: #61b748;
}

/* Store Title Image */
.store-title {
  width: 100px; /* Adjust width as necessary */
  height: auto; /* Maintain aspect ratio */
}

header .store-title {
  margin-left: 10px; /* Adjust spacing if needed */
}

/* Responsive Header */
@media (max-width: 768px) {
  header {
      flex-direction: column;
      text-align: center;
      padding: 10px 15px; /* Ensure padding adjustment for smaller screens */
  }

  header .logo {
      margin: 0;
  }

  header nav {
      margin: 10px 0 0;
  }

  header nav ul {
      flex-direction: column;
  }

  header nav ul li {
      margin-left: 0;
      margin-bottom: 10px;
  }

  header nav ul li:last-child {
      margin-bottom: 0;
  }
  
  .store-title {
      width: 80px; /* Further reduce the width for small screens */
  }
}



/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #000;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hero-title {
  max-width: 80%;
  height: auto;
  margin: 0 auto;
  animation: fadeInScale 1.5s ease-out, slant 4s infinite alternate;
}

.cta {
  display: inline-block;
  padding: 12px 24px;
  background-color: #61b748;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  transition: transform 0.3s, background-color 0.3s;
  margin-top: 20px;
  animation: bounce 2s infinite, slant 4s infinite alternate;
}

.cta:hover {
  background-color: #4CAF50;
  transform: scale(1.05);
}

/* Keyframe Animations */
@keyframes fadeInScale {
  0% {
      opacity: 0;
      transform: scale(0.9);
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(-10px);
  }
  60% {
      transform: translateY(-5px);
  }
}

@keyframes slant {
  0% {
      transform: rotate(-1deg);
  }
  50% {
      transform: rotate(1deg);
  }
  100% {
      transform: rotate(-1deg);
  }
}

/* Services Section */
.services {
  padding: 50px 0;
  background-color: #1e1e1e;
}

.services h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  color: #61b748;
}

.service-boxes {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.service-box {
  width: 30%;
  padding: 20px;
  margin: 0 10px;
  background-color: #2c2c2c;
  border: 2px solid #61b748;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
}

.service-box a {
  text-decoration: none;
  color: inherit;
}

.service-icon {
  font-size: 40px;
  color: #61b748;
  margin-bottom: 10px;
}

.service-box h3 {
  margin-top: 10px;
  color: #61b748;
}

/* Service details section */
.service-details {
  padding: 20px 0;
  background-color: var(--color-bg-dark);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-item {
  position: relative;
  width: calc(33.333% - 20px); /* Adjust as needed */
  box-sizing: border-box;
  background-color: var(--color-dark);
  color: var(--color-text-light);
  border-radius: 5px;
  overflow: hidden;
}

.service-item img {
  width: 100%;
  height: auto;
  display: block;
}

.service-item h3 {
  margin: 10px 0;
  text-align: center;
  color: var(--color-text-light);
}

.order-btn {
  display: none;
  text-align: center;
  background-color: var(--color-primary);
  color: var(--color-dark);
  padding: 10px;
  text-decoration: none;
  border-radius: 5px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.service-item:hover .order-btn {
  display: block;
}

/* Info Boxes Section */
.info-boxes {
  background-color: var(--color-bg-dark);
  padding: 60px 0;
}

.info-boxes .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.info-box {
  background-color: var(--color-dark);
  border-radius: 8px;
  text-align: center;
  padding: 20px;
  flex: 1;
  min-width: 280px;
}

.info-box-icon {
  margin-bottom: 10px;
}

.info-box-icon svg {
  fill: var(--color-primary);
  width: 48px;
  height: auto;
}

.info-box-title {
  font-size: 18px;
  color: var(--color-text-light);
  margin: 10px 0;
}

.info-box-content p {
  color: var(--color-text-light);
  font-size: 14px;
}


/* Products Section */
.products {
  padding: 50px 0;
  background-color: #1e1e1e;
}

.products h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  color: #61b748;
}

.product-boxes {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.product-box {
  flex: 1 1 calc(33.333% - 20px);
  padding: 20px;
  background-color: #2c2c2c;
  border: 2px solid #61b748;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-box h3 a {
  text-decoration: none;
  color: #61b748;
  font-size: 24px;
}

.product-box h3 a:hover {
  color: #4CAF50;
}

.product-box p {
  font-size: 16px;
  color: #61b748;
}

.product-box:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .product-box {
      flex: 1 1 100%;
  }
}

/* Glowing Text */
.glowing-text {
  font-weight: bold;
  color: var(--color-text-light);
  position: relative;
  display: inline-block;
  margin-top: 10px;
  font-size: 1.2em;
  text-shadow: 0 0 10px var(--color-primary), 0 0 20px var(--color-primary), 0 0 30px var(--color-primary), 0 0 40px var(--color-primary);
  animation: glow-animation 1.5s infinite;
}

@keyframes glow-animation {
  0% {
      text-shadow: 0 0 10px var(--color-primary), 0 0 20px var(--color-primary), 0 0 30px var(--color-primary), 0 0 40px var(--color-primary);
  }
  50% {
      text-shadow: 0 0 20px var(--color-primary), 0 0 30px var(--color-primary), 0 0 40px var(--color-primary), 0 0 50px var(--color-primary);
  }
  100% {
      text-shadow: 0 0 10px var(--color-primary), 0 0 20px var(--color-primary), 0 0 30px var(--color-primary), 0 0 40px var(--color-primary);
  }
}

/* Media Section */
.media {
  padding: 60px 0;
  background-color: #1c1c1c;
}

.media h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2em;
  color: #61b748;
}

.media-boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.media-box {
  flex: 1;
  position: relative;
  overflow: hidden;
  border: 2px solid #61b748;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #000;
}

.media-box video,
.media-box img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.media-box .description {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #61b748;
  padding: 10px;
  border-top: 2px solid #61b748;
  box-sizing: border-box;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 1.2em;
}

.media-box:hover {
  transform: scale(1.05);
}

.media-box:hover .description {
  opacity: 1;
}

.media-box::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 12px;
  border: 2px solid #61b748;
  box-shadow: 0 0 15px #61b748, 0 0 25px #61b748, 0 0 35px #61b748;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: -1;
}

@media (min-width: 992px) {
  .media-box {
      height: 400px;
  }
}

@media (max-width: 991.98px) {
  .media-box {
      height: 350px;
  }
}

@media (max-width: 767.98px) {
  .media-box {
      height: 300px;
  }
}

/* Apps Used Section */
.apps-used {
  position: relative;
}

.apps-used::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: calc(100% + 20px);
  background: #1e1e1e;
  transform: rotate(5deg);
  transform-origin: bottom right;
  transition: all 0.3s ease-out 0s;
  opacity: 0.9;
  z-index: -1;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  margin-right: 10px;
}

.breadcrumb-item a {
  color: var(--color-text-light);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

/* Breadcrumb Area */
.breadcrumb-area {
  position: relative;
  padding: 50px 0;
  background-size: cover;
  background-position: center;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  background: url('../assets/img/bg/bg02.jpg') no-repeat;
  background-size: cover;
}

.breadcrumb__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.breadcrumb__content {
  max-width: 600px;
}

.breadcrumb__content .title {
  font-size: 3em;
  color: #fff;
}

.breadcrumb__content nav {
  margin-top: 10px;
}

.breadcrumb .breadcrumb-item a {
  color: #61b748;
}

.breadcrumb .breadcrumb-item.active {
  color: #61b748;
}

.breadcrumb__img img {
  max-width: 100%;
}

/* About Section */
.about {
  padding: 60px 0;
}

.about h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.about p {
  font-size: 1.1em;
  line-height: 1.6;
}

.about h3, .about h4 {
  margin-top: 30px;
  font-size: 1.8em;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  font-size: 1.1em;
  margin-bottom: 10px;
}

/* Team Section */
.team {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 30px;
}

.team-member {
  text-align: center;
  margin-bottom: 20px;
  padding: 10px;
  border: 2px solid #61b748;
  border-radius: 10px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
}

.team-member:hover {
  transform: scale(1.05);
  border-color: #333;
}

.team-member h4 {
  margin: 10px 0 5px;
  font-size: 1.2em;
}

.team-member p {
  font-size: 1em;
  color: #666;
}

.portfolio-button {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: var(--color-primary);
  color: var(--color-bg-dark);
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.portfolio-button:hover {
  background-color: darkgreen; /* Adjust as needed */
}

/* Footer Section */
footer {
  background-color: var(--color-dark);
  color: var(--color-text-light);
  text-align: center;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.footer-style-two {
  position: relative;
  padding: 0;
  background: transparent;
}

.footer-style-two .footer-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.footer-content {
  position: relative;
  z-index: 1;
}

/* Footer Navigation */
.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 20px;
}

.footer-nav .logo {
  text-align: center;
}

.footer-nav .footer-links {
  display: flex;
  gap: 20px;
}

.footer-nav .footer-links a {
  color: var(--color-text-light);
  text-decoration: none;
}

.footer-nav .footer-links a:hover {
  text-decoration: underline;
}

/* Footer Text */
.footer-text {
  text-align: center;
  color: var(--color-text-light);
}

.footer-text a {
  color: var(--color-primary);
}

.footer-text a:hover {
  text-decoration: underline;
}

/* Footer Widgets */
.footer__top-wrap {
  padding: 40px 20px;
  border-top: 1px solid #151d23;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer__top-wrap .footer-widget {
  flex: 1;
  margin: 0 20px;
}

.footer-widget {
  margin-bottom: 30px;
  text-align: left;
}

.footer-widget .fw-title {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 10px;
}

.footer-widget ul li a {
  font-size: 15px;
  color: var(--color-text-light);
}

.footer-widget ul li a:hover {
  color: var(--color-primary);
}

/* Footer Logo */
footer .footer-logo {
  margin: 20px auto;
  display: flex;
  justify-content: center;
}

footer .footer-logo img {
  max-width: 150px;
  height: auto;
}

/* Connect With Us Section */
.connect-with-us {
  text-align: left;
}

.connect-with-us h4 {
  margin-bottom: 15px;
}

.connect-with-us ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.connect-with-us ul li {
  margin-bottom: 10px;
}

/* List Wrap */
.list-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-wrap li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.list-wrap li::before {
  content: "\f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 20px;
}

/* Copyright Wrap */
.copyright__wrap {
  background: var(#1c1c1c);
  padding: 20px 0;
}

.copyright__text {
  margin: 0;
  font-size: 14px;
  color: #9f9f9f;
}

.copyright__text p {
  margin: 0;
}

.copyright__text p span {
  color: var(--color-primary);
}

.copyright__menu ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.copyright__menu ul li a {
  color: #9f9f9f;
  text-transform: uppercase;
}

.copyright__menu ul li a:hover {
  color: var(--color-primary);
}

/* Keyframes */
@keyframes tgSlideDown {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Section */
#contact {
  padding: 40px 20px;
  background-color: var(#1c1c1c);
  color: #e0e0e0;
}

#contact h2 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 30px;
  font-size: 2.5em;
  font-weight: 600;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #2c2c2c;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s, transform 0.3s;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 36px;
}

.contact-item:hover {
  background-color: #333;
  transform: scale(1.1);
}

.contact-item i {
  margin: 0;
}

.contact-item:hover i {
  color: #4CAF50;
  text-shadow: 0 0 8px var(--color-primary);
}

/* Custom scrollbar for WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: var(--color-bg-dark); /* Background color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary); /* Color of the scroll thumb (draggable part) */
  border-radius: 10px; /* Optional: rounded corners for the thumb */
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-light); /* Color of the scroll thumb when hovered */
}

/* Custom scrollbar for Firefox */
html {
  scrollbar-width: thin; /* Options: auto, thin, none */
  scrollbar-color: var(--color-primary) var(--color-bg-dark); /* thumb color and track color */
}
