@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@200..700&family=Poppins:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
   overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: 'Poppins';
   overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

header {
  position: sticky;
  top: 0;
  background-color: #f5f5f5;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0px 100px;
  height: 100px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
}

nav {
  flex: 1;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-left: -50px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 15px;
}

nav ul li a:hover {
  color: #F58634;
}

/* Dropdown Styles */
nav ul li .dropdown {
  display: none;
  position: absolute;
  top: 18px;
  left: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  min-width: 180px;
  z-index: 999;
}

nav ul li:hover .dropdown {
  display: block;
}

nav ul li .dropdown a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  color: black;
}

nav ul li .dropdown a:hover {
  color: #F58634;
  background-color: #f0f0f0;
}

.icons {
  display: flex;
  gap: 15px;
}

.icon-box {
  background-color: #111;
  color: white;
  padding: 5px 10px;
  border-radius: 2px;
  transition: background-color 0.3s, color 0.3s;
}

.icon-box:hover {
  background-color: #F58634;
  color: white;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 600px) {
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #f5f5f5;
    display: none;
    flex-direction: column;
    padding: 20px 0;
  }

  nav.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 25px;
  }

  nav ul li a {
    margin-left: 50px;
  }

  .icons {
    display: none;
  }

  .hamburger {
    display: block;
    color: #111;
  }
}

@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #f5f5f5;
    display: none;
    flex-direction: column;
    padding: 20px 0;
  }

  nav.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 25px;
  }

  nav ul li a {
    margin-left: 50px;
  }

  .icons {
    display: none;
  }

  .hamburger {
    display: block;
    color: #111;
  }
}

@media (max-width: 820px) {
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #f5f5f5;
    display: none;
    flex-direction: column;
    padding: 20px 0;
  }

  nav.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 25px;
  }

  nav ul li a {
    margin-left: 50px;
  }

  .icons {
    display: none;
  }

  .hamburger {
    display: block;
    color: #111;
  }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px;
  max-width: 900px;
  width: 90%;
  position: relative;
  border-radius: 8px;
  overflow-y: auto;
  max-height: 90vh;
  transform: translateY(-50px);
  opacity: 0;
}

.popup-content img {
  max-width: 100%;
  margin-bottom: 10px;
}

.popup-content h2 {
  margin: 10px 0 5px;
  font-family: 'Bebas Neue';
  letter-spacing: 3px;
}

.popup-content p {
  margin: 0 0 20px;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.slides {
  display: flex;
  transition: transform 0.8s ease-in-out;
  width: 100%;
}

.slide {
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1349 / 472;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.slide-content {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
  max-width: 600px;
  width: 90%;
  word-wrap: break-word;
  overflow: hidden;
}

.slide-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 5px;
}

.slide-content p {
  font-size: 1.3rem;
  font-weight: 300;
  margin-top: 20px;
}

.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.dot {
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: red;
  opacity: 1;
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slide {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  .slide-content h1 {
    font-size: 1.6rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .slide {
    aspect-ratio: 16 / 10;
  }
}

.about-section {
  padding: 90px 20px;
  text-align: center;
  color: #000;
  background: url('images/freepik__adjust__97225.jpeg')center/cover no-repeat;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}

.about-section p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 1100px;
  margin: 0 auto 50px;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
}

.stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.stat-box {
  display: flex;
  align-items: center;
  font-size: 60px;
  font-weight: bold;
  color: #F58634;
}

.stat-box span {
  font-size: 20px;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  margin-left: 10px;
  transform: skewX(-15deg);
  font-style: italic;
  font-weight: bold;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .stat-box {
    font-size: 40px;
    flex-direction: column;
    text-align: center;
  }

  .stat-box span {
    margin-left: 0;
    margin-top: 10px;
    transform: skewX(0);
  }
}

.products-wrapper {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
  position: relative;
  font-family: 'Bebas Neue';
  letter-spacing: 10px;
  margin-top: 30px;
}

.products-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  padding: 40px;
}

.product-left,
.product-right {
  flex: 1;
  min-width: 300px;
}

.product-left {
  background: url('images/Eros02.png') center/cover no-repeat;
  padding: 40px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 700px;
  border-radius: 12px;
  position: relative;
  margin-top: 0px;
}

.product-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
}

.product-left h2,
.product-left p {
  position: relative;
  z-index: 1;
}

.product-left h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.product-left p {
  font-size: 1rem;
}

.product-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product-card {
  background-size: cover;
  background-position: center;
  color: white;
  padding: 30px;
  border-radius: 12px;
  min-height: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 20px
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
}

.product-card h2,
.product-card p {
  position: relative;
  z-index: 1;
}

.product-card h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .products-section {
    flex-direction: column;
  }

  .product-left,
  .product-right {
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }
}

.rental-section {
  background-color: #000000;
  padding: 80px 20px;
  text-align: center;
}

.rental-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.rental-icon {
  width: 120px;
  height: 120px;
  filter: brightness(0) invert(1);
}

.rental-section p {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: inline-block;
  border-top: 4px double rgba(255, 255, 255, 0.762);
  border-bottom: 4px double rgba(255, 255, 255, 0.762);
  padding: 2em 1em;
  color: white;
  max-width: 90%;
  font-size: 1rem;
  box-sizing: border-box;
}

.rental-section .highlight {
  font: 700 3em/1 "Oswald", sans-serif;
  letter-spacing: 0;
  padding: 0.25em 0 0.325em;
  display: block;
  margin: 0 auto 0.5em;
  text-shadow: 0 0 40px rgba(255, 255, 255, .5);
  background: url(https://i.ibb.co/RDTnNrT/animated-text-fill.png) repeat-y;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: aitf 70s linear infinite;
}

@keyframes aitf {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@media (max-width: 600px) {
  .rental-section p {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    padding: 1.5em 0.5em;
  }

  .rental-section .highlight {
    font-size: 2.2em;
    text-shadow: none;
  }

  .rental-content {
    flex-direction: column;
    text-align: center;
  }

  .rental-icon {
    margin-bottom: 1rem;
  }
}

.clients-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: hidden;
  position: relative;
}

.clients-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #000000;
  margin-top: 30px;
  font-family: 'Bebas Neue';
  letter-spacing: 5px;
}


.clients-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: -20px;
}

.clients-container {
  display: flex;
  gap: 80px;
  animation: scrollLeft 20s linear infinite;
}

.client-logo {
  height: 130px;
  object-fit: contain;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.location-section {
  position: relative;
  width: 100%;
  height: 500px;
}

.location-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.contact-overlay {
  position: absolute;
  top: 80%;
  left: 36%;
  transform: translateY(-50%);
  background-color: black;
  color: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 550px;
  z-index: 10;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
}

.contact-item i {
  font-size: 20px;
  color: #F58634;
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  .contact-overlay {
    left: 5%;
    right: 5%;
    width: 90%;
    padding: 20px;
  }
}

.contact-section {
  position: relative;
  padding: 60px 20px 55px;
  background: #f9f9f9;
  overflow: hidden;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-content {
  position: relative;
  z-index: 5;
  max-width: 600px;
  width: 100%;
}

.contact-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-family: 'Bebas Neue';
  letter-spacing: 5px;
}

.contact-content p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
  font-family: Poppins;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  width: 100%;
  background: #fff;
}

.contact-form button {
  padding: 15px;
  background-color: #F58634;
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #000000;
  color: #F58634;
}

.success-message {
  display: none;
  color: green;
  margin-top: 10px;
  font-weight: 500;
}

/* === Glowing Top Border === */
/* === Top Glowing Border === */
.footer-border {
  height: 4px;
  background: linear-gradient(270deg, transparent, #f97316, transparent);
  background-size: 200% auto;
  animation: moveGlow 3s linear infinite;
  margin-bottom: 20px;
}
@keyframes moveGlow {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* === Footer Wrapper === */
.footer {
  position: relative;
  overflow: hidden;
  padding: 40px 180px 0;
  background-color: #000000;
  margin-top: 10px;
}

/* === Main Layout === */
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

/* === Left Section === */
.footer-left {
  max-width: 300px;
}
footer .logo {
  width: 180px;
  margin-bottom: 10px;
}
.description {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.5;
}

/* === Centered Social Icons === */
.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex: 1;
  flex-wrap: wrap;
}
.footer-social a {
  font-size: 24px;
  color: #cbd5e1;
  transition: 0.4s ease;
}
.footer-social a:hover {
  transform: scale(1.4);
  color: #f97316;
  text-shadow: 0 0 8px #f97316;
}

/* === Right Side Links === */
.footer-right {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-column h4 {
  font-size: 14px;
  margin-bottom: 8px;
  color: white;
}
.footer-column a {
  display: block;
  font-size: 13px;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.3s;
}
.footer-column a:hover {
  color: #f97316;
}

/* === Bottom Copyright === */
.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #64748b;
  padding: 20px 0 10px;
}
.footer-links {
  margin-top: 6px;
}
.footer-links a {
  margin: 0 10px;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #f97316;
}

/* === Fade-Up Animations === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animated-fade-up {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }

/* === Mobile Responsive Styling === */
@media (max-width: 1200px) {
  .footer {
    padding: 40px 80px 0;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 0;
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    max-width: 100%;
  }

  footer .logo {
    width: 140px;
  }

  .footer-social {
    margin: 20px 0;
    justify-content: center;
  }

  .footer-right {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }

  .footer-column h4,
  .footer-column a {
    text-align: center;
  }

  .footer-bottom {
    padding: 20px 10px 10px;
  }

  .footer-links a {
    display: inline-block;
    margin: 0 6px;
  }
}

@media (max-width: 480px) {
  .footer-social a {
    font-size: 18px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .description {
    font-size: 12px;
  }

  .footer-column h4 {
    font-size: 13px;
  }

  .footer-column a {
    font-size: 12px;
  }
}

.call-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0db310;
  color: white;
  font-size: 18px;
  padding: 12px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.call-float:hover {
  background-color: #41d800;
  transform: scale(1.05);
}

.call-float i {
  font-size: 20px;
}

.call-label {
  font-weight: 600;
}

@media (max-width: 480px) {
  .call-label {
    display: none;
  }
}