@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

/* Header */
.header {
  background: #fff;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* box-shadow: 0 5px 8px #f2f2f2; */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 35%;
  height: auto;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: #b698e0;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hard.jpg') center/cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Black overlay with 60% opacity */
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeIn 2s ease-in-out;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
  color: #fff;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ddd;
}

.btn {
  background: #b698e0;
  color: #111;
  padding: 12px 35px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  margin: 0 10px;
}

.btn:hover {
  background: #fff;
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: #0b1c3f;
  padding: 40px 20px;
  color: #fff;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer-right input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  margin-bottom: 10px;
}

.footer-right button {
  background-color: #b698e0;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #0b0c10;
    width: 100%;
    display: none;
    flex-direction: column;
    padding: 20px;
    
  }

  nav.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
    color: #fff;
  }

  .menu-toggle {
    display: block;
    color: #000;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .footer-container {
    flex-direction: column;
  }

  nav a {
  color: #fff;
  }

  .logo {
  width: 35%;
  height: auto;
}

  

}



.features-section {
  padding: 60px 20px;
  background-color: #fff;
  
  text-align: center;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #000;
}

.features-boxes {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  transition: transform 0.3s ease;
  border: #000 solid 2px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 3rem;
  color: #b698e0;
  margin-bottom: 20px;
  display: block;
}

.feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .features-boxes {
    flex-direction: column;
    gap: 20px;
  }

  .section-heading {
    font-size: 2rem;
  }
}



.rental-section {
  padding: 60px 20px;
  background-color:  #b698e0;
  
  text-align: center;
}

.rental-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-subheading {
  font-size: 1.2rem;
  margin-bottom: 40px;
  margin-top: 10px;;
  color: #000;
}

.rental-boxes {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.rental-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  transition: transform 0.3s ease;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: #000 solid 2px;
}

.rental-box:hover {
  transform: translateY(-5px);
}

.rental-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.rental-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .rental-boxes {
    flex-direction: column;
    gap: 20px;
  }

  .section-heading {
    font-size: 2rem;
  }

  .section-subheading {
    font-size: 1rem;
  }
}


.custom-section {
  padding: 60px 20px;
  background-color: #fff;
 
  text-align: center;
}

.custom-container {
  max-width: 1200px;
  margin: 0 auto;
}

 .section-subheading {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color:#000;
}

.custom-section
{
   
   color:#000;
   font-size: 1.2rem;
}

.custom-boxes {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.custom-box {
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  background-color: #1f2833;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.custom-box:hover {
  transform: translateY(-5px);
}

.custom-box img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-boxes {
    flex-direction: column;
    gap: 20px;
    margin-left: 30px;

  }

  .section-heading {
    font-size: 2rem;
  }

  .section-subheading {
    font-size: 1rem;
  }
  
}


.testimonial-section {
  padding: 60px 20px;
  background-color: #b698e0;
 
  text-align: center;
}

.testimonial-container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-heading {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-subheading {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #000;
}

.testimonial-box {
  background-color: #1f2833;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.testimonial-box p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #eee;
}

.testimonial-box h4 {
  font-size: 1rem;
  color: #9ddfed;
  font-weight: 600;
}

/* Swiper overrides */
.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-box {
    padding: 20px;
  }

  .section-heading {
    font-size: 2rem;
  }

  .section-subheading {
    font-size: 1rem;
  }
}



.desktop-section {
  padding: 60px 20px;
  background-color: #fff;
  
  text-align: center;
}

.desktop-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-subheading {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #000;
}

.desktop-boxes {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.desktop-box {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  background-color: #1f2833;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.desktop-box:hover {
  transform: translateY(-5px);
}

.desktop-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-boxes {
    flex-direction: column;
    gap: 20px;
  }

  .section-heading {
    font-size: 2rem;
  }

  .section-subheading {
    font-size: 1rem;
  }
}



.corporate-section {
  padding: 60px 20px;
  background-color: #b698e0;
  
  text-align: center;
}

.corporate-container {
  max-width: 1200px;
  margin: 0 auto;
}

.corporate-section .section-subheading {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #000;
}

.corporate-boxes {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.corporate-box {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  background-color: #1f2833;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.corporate-box:hover {
  transform: translateY(-5px);
}

.corporate-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.explore-btn {
  background: #9ddfed;
  color: #111;
  padding: 12px 35px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.explore-btn:hover {
  background: #fff;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .corporate-boxes {
    flex-direction: column;
    gap: 20px;
  }

  .section-heading {
    font-size: 2rem;
  }

  .section-subheading {
    font-size: 1rem;
  }
}


.custom-desktop-section {
  padding: 60px 20px;
  background-color: #fff;
}

.custom-desktop-container {
  max-width: 1200px;
  margin: 0 auto;
}

.custom-desktop-header {
  text-align: center;
  margin-bottom: 50px;
}

.custom-desktop-header h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 15px;
}

.custom-desktop-header p {
  font-size: 1.2rem;
  color: #000
}

.custom-desktop-split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.custom-desktop-image {
  flex: 1;
  min-width: 300px;
}

.custom-desktop-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.custom-desktop-features {
  flex: 1;
  min-width: 300px;
}

.feature-item {
  margin-bottom: 30px;
}

.feature-item h3 {
  font-size: 1.3rem;
  color: #000;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-desktop-split {
    flex-direction: column;
  }

  .custom-desktop-header h2 {
    font-size: 2rem;
  }

  .custom-desktop-header p {
    font-size: 1rem;
  }
}


.tech-section {
  padding: 60px 20px;
  background-color: #fff;
 
  text-align: center;
}

.tech-container {
  max-width: 1200px;
  /* margin: 0 auto; */
  margin-top: 20px;
}

.tech-header h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 15px;
}

.tech-header p {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 40px;
}

.tech-boxes {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.tech-box {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease;
  text-align: center;
  border: #000 solid 2px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tech-box:hover {
  transform: translateY(-5px);
}

.tech-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.tech-box h3 {
  font-size: 1.3rem;
  color: #000;
  margin-bottom: 10px;
}

.tech-box p {
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .tech-boxes {
    flex-direction: column;
    gap: 20px;
  }

  .tech-header h2 {
    font-size: 2rem;
  }

  .tech-header p {
    font-size: 1rem;
  }
}




.contact-section {
  padding: 60px 20px;
  background-color: #fff;
  

}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;

}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 15px;
}

.contact-header p {
  font-size: 1.2rem;
  color: #000;
}

/* Two-column layout */
.contact-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

/* Left: Icon Boxes */
.contact-info {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
}

.info-box {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  flex: 1;
  border: #000 solid 2px;
}

.info-box i {
  font-size: 2rem;
  color: #b698e0;
  margin-bottom: 10px;
  display: block;
}

.info-box h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #000;
}

.info-box p {
  font-size: 1rem;
  color: #000;
}

/* Right: Form */
.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: #000 solid 2px;
  box-shadow: 0 5px 8px #f2f2f2;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
  color: #111;
  font-size: 1rem;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  background-color: #b698e0;
  color: #111;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #111;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-columns {
    flex-direction: column;
  }

  .contact-header h2 {
    font-size: 2rem;
  }

  .contact-header p {
    font-size: 1rem;
  }
}