    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Overpass", sans-serif;
      background-color: #f5f5f5;
    }

.close{
  background-color: transparent;
  border: none;
  position: absolute;
  top: 20px;
  right: 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e53e3e;
  padding: 15px 20px;
  position: relative;
  z-index: 1000;
  position: fixed;
  top: 0;
  width: 100%;
}

.logo {
  display: flex;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.logo img {
  width: 40px;
  height: auto;
  margin-bottom: 5px;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00bcd4;
}

/* Sidebar for mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 250px;
    background: #222;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 20px;
    gap: 46px;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 998;
  }

  .overlay.active {
    display: block;
  }
}






.btn-red {
  background-color: #e33e3e;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0px 40px;
  background: linear-gradient(to right, #000 44%, transparent), url('/assets/img/OIP.webp');
  background-size: cover;
  min-height: 90vh;
  /* background-image: url("/assets/img/OIP.webp"); */
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero-text {
  max-width: 690px;
}

.hero-text .subtitle {
  font-size: 30px;
  margin-bottom: 15px;
  color:#fff;
}

.hero-text h1 {
  font-size: 90px;
  line-height: 1.2;
  color: #fff;
}

.hero-text h1 span {
  color: #e33e3e;
}

.hero-image img {
  /* max-width: 500px; */
  width: 100%;
  /* min-height: 90vh; */
  /* border-radius: 8px; */
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    background: linear-gradient(to bottom, #0000007f 22%, transparent), url('/assets/img/OIP.webp');
    background-repeat: no-repeat;
    min-height: 81vh;
    background-size: cover;
    background-position: center;
    margin-top: 50px;
  }

  .hamburger{
    color: #fff;
  }

 

  .hero-text{
    margin-top: 9rem;
  }

  .hero-text h1 {
    font-size: 46px;
  }

  .hero-text .subtitle{
    font-size: 20px;
  }

  .hero-image {
    margin-top: 30px;
  }

  .logo{
    color: #fff;
  }

  .logo span {
    font-size: 18px;
  }
}


.stats-section {
  background-color: #db3e3e;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.stat-box {
  flex: 1 1 250px;
}

.number {
  font-size: 60px;
  font-weight: 700;
  position: relative;
  line-height: 1;
}

.number .slash {
  font-size: 50%;
}

.underline {
  height: 2px;
  background: white;
  width: 80px;
  margin: 10px auto;
}

.stat-box p {
  font-size: 18px;
  margin-top: 10px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .number {
    font-size: 40px;
  }

  .stat-box p {
    font-size: 16px;
  }
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  min-height: 80vh;
  overflow: hidden;
}

.contact-left, .contact-right {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left {
  background: #111;
  text-align: center;
}

.contact-left h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 30px;
}

.contact-left h2 span {
  color: #e53e3e;
}

.contact-left img {
  max-width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.contact-right {
  background: #1a1a1a;
}

form {
  max-width: 100%;
  margin: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form label {
  font-weight: bold;
  color: #fff;
}

form select,
form input {
  background: #252525;
  border: none;
  padding: 10px;
  color: #fff;
  font-size: 16px;
  width: 100%;
  outline: none;
}

.input-group {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #444;
}

.input-group i {
  padding: 0;
  color: #aaa;
}

.send-btn {
  background: #e53e3e;
  color: #fff;
  padding: 15px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.send-btn i {
  margin-right: 8px;
}

.send-btn:hover {
  background: #c53030;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-left, .contact-right {
    padding: 30px 20px;
  }

  .contact-left h2 {
    font-size: 32px;
  }

  form{
    margin: 10px;
  }

  .contact-left img{
    height:300px;
  }
}


.why-elevators {
  padding: 60px 20px;
  background: #1a1a1a url('/assets/img/1.avif') no-repeat center center / cover;
}

.content-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.left{
  /* background-color: #1a1a1a; */
}

.left, .right {
  flex: 1;
  min-width: 300px;
}

.left h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #fff;
}

.left h1 span {
  color: #e53e3e;
}

.right img {
  max-width: 100%;
  height: auto;
  opacity: 0.8;
  width: 400px;
}

.right{
  display: flex;
  justify-content: center;
  align-items: center;
}

.left .feature {
  margin-bottom: 40px;
  animation: fadeSlide 1s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.left h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 10px;
}

.left p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
}

@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  .left h1 {
    font-size: 32px;
  }

  .left h2 {
    font-size: 24px;
  }

  .left , .right{
    min-width: unset;
  }

  .why-elevators{
    padding: 20px 20px;
  }
}


.footer {
  background-color: #1a1a1a;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left {
  flex: 1;
  min-width: 280px;
}

.footer-left .logo {
  width: 60px;
  margin-bottom: 10px;
}

.footer-left h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.footer-left h3 {
  margin-top: 20px;
  color: #e53e3e;
  font-size: 18px;
}


.footer-left p {
  color: #ccc;
  line-height: 1.6;
  margin-top: 10px;
  font-size: 15px;
}

.footer-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.social-icons a {
  color: #e53e3e;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.contact-info p {
  font-size: 15px;
  color: #ccc;
  margin: 10px 0;
}

.contact-info i {
  color: #e53e3e;
  margin-right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }

  .foo{
    display: flex;
    text-align: center;
  justify-content: center;
  }
}


.designs-section {
  text-align: center;
  padding: 60px 20px;
  background: #1a1a1a url('background-lines.png') no-repeat center center/cover;
}

.designs-section h1 {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}

.designs-section h1 span {
  color: #e53935;
}

.tabs {
  margin: 30px 0 20px;
}

.tab {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  margin: 0 10px;
  cursor: pointer;
  color: #ccc;
}

.tab.active {
  color: #e53935;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: scroll;
  overflow-y: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 300px;
  margin: 0 20px;
  text-align: center;
}

.slide img {
  width: 100%;
  height: 80%;
  max-width: 300px;
  border-radius: 5px;
}

.slide p {
  background-color: #e53935;
  color: white;
  padding: 10px;
  margin-top: 10px;
  font-weight: 600;
  border-radius: 3px;
}

.nav-btn {
  background: #e53935;
  border: none;
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  position: absolute;
  bottom: -20px;
  transition: transform 0.2s;
}

.nav-btn:hover {
  transform: scale(1.1);
}

.prev {
  left: 45%;
}

.next {
  right: 45%;
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    /* min-width: 90%; */
    margin: 0 10px;
  }

  .prev {
    left: 40%;
  }

  .next {
    right: 40%;
  }

  .designs-section h1{
    font-size: 32px;
  }
}


.capabilities-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #1a1a1a;
}

.capabilities-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight {
    color: #e62828;
}

.subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 50px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.capability-card {
    background: #111;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #222;
    animation: fadeInUp 1s ease forwards;
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 25px rgba(230, 40, 40, 0.3);
}

.cap{
  color: #fff;
}

.icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.capability-card h3 {
    color: #e62828;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.capability-card p {
    font-size: 0.95rem;
    color: #bbb;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive font sizes */
@media (max-width: 768px) {
    .capabilities-section h1 {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .capabilities-grid{
      grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
}


/* Section Layout */
.about-section {
    padding: 50px 20px;
    background-color: #1a1a1a;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Image Side */
.about-image {
    position: relative;
    flex: 1 1 450px;
    animation: fadeInLeft 1s ease forwards;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}

/* Red Box Overlay */
.red-box {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background-color: #e62828;
    padding: 20px 25px;
    max-width: 250px;
    animation: fadeInUp 1.2s ease forwards;
}

.red-box h3 {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Text Side */
.about-content {
    flex: 1 1 500px;
    animation: fadeInRight 1s ease forwards;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #fff;
}

.highlight {
    color: #e62828;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 15px;
}

/* Animations */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    .red-box {
        position: static;
        margin-top: 15px;
        right: auto;
    }

    .about-content H2{
      font-size: 32PX;
    }
}

.popup-content{
  overflow: hidden;
}

/* Popup Overlay */
.popup-overlay {
  display: none; 
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex; 
  align-items: center; 
  justify-content: center;
  z-index: 9999;
}

/* Popup Box */
.popup-content {
  background: #252525;
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: fadeIn 0.4s ease-in-out;
}

@media screen and (min-width:320px) and (max-width:768px){
  .popup-content{
    max-width: 90%;
  }
}

.popup-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 25px;
  cursor: pointer;
  color: red;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
