body {
  margin: 0;
  padding: 0;
  background: #000000;
  color: white;
}





.navbar {
  border: 1px white solid;
  position: fixed; /* Fix the navbar to the top */
  top: 0;
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Adjust the left position to center the navbar */
  width: 100%; /* Full width */
  z-index: 100; /* Ensure it's above other content */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  padding: 20px;
  border-bottom-left-radius: 80px; 
  border-bottom-right-radius: 80px;
  margin: 0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Optional shadow */
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-list li {
  margin: 0 15px;
}

.nav-list a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease-in-out;
}

.nav-right {
  display: flex;
  align-items: center;
}

.nav-right a {
  color: white;
  margin-left: 20px;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

a:hover {
  border: none;
  padding: 10px;
  border-radius: 20px;
  background-color: white;
  box-shadow: 0 0 20px 0 white;
  color: black;
}

.search-icon::before {
  content: "";
  display: inline-block;
  background-image: url("../image/search.png");
  background-size: cover;
  height: 22px;
  width: 22px;
}

.login, .signup {
  text-transform: uppercase;
  border: 2px solid white;
  border-radius: 20px;
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
}

.login:hover, .signup:hover {
  background: white;
  color: black;
  font-size: 20px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.signup {
  border-left: 2px solid white;
  padding-left: 20px;
}








.main {
  position: relative;
  top: 0; /* Start directly below the navbar */
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1; /* Keep it below the navbar */
}

.main-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.main-item {
  min-width: 100%;
  height: 100vh;
  position: relative;
}

.main-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-90%);
  bottom: 25%;
  color: white;
  text-align: left;
  -webkit-text-stroke: 0.7px rgb(0, 0, 0);
  text-shadow: 0 5px #ff6f00,    
                0 0 10px #ff8f00,  
                0 0 20px #ffa726,   
                0 0 30px #ffca28, 
                0 0 40px #ffd54f,   
                0 0 55px #ffeb3b,  
                0 0 70px #ff0000;
}

.main-caption>h2 {
  font-size: 3.5rem;
}

.main-caption>p {
  font-size: 2.5rem;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

.dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0px 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #717171;
}








.jumbotron {
  background-color:rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: left;
  margin: 2rem auto;
  width: 80%;
}

.jumbotron h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.jumbotron p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 0.25rem;
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* Container and Cards */
.container {
  display: flex;
  justify-content: space-around;
  margin: 2rem auto;
  width: 80%;
}

.card {
  background-color: #343a40;
  padding: 2rem;
  border-radius: 0.5rem;
  width: 45%;
  text-align: center;
}

.card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 0.25rem;
}

.btn-outline:hover {
  background-color: #fff;
  color: #343a40;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
      flex-direction: column;
      align-items: center;
  }

  .card {
      width: 80%;
      margin-bottom: 2rem;
  }
}









.info {
  display: flex;
  flex-direction: column;
  padding: 5%;
  padding-top: 0px;
}

.info1, .info2, .info3 {
  margin: 2%;
  border: white 1px solid;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  border-radius: 10px;
}


.info1 .para1, .info2 .para2, .info3 .para3 {
  flex: 1;
  padding: 0 20px;
  font-size: 1.2rem;
  line-height: 1.5;
}

.info img {
  height: 400px;
  border-radius: 10px;
}


.info1:hover, .info2:hover, .info3:hover {
  box-shadow: 0 0 20px white;
  transform: scale(1.05); 
}

.info1:hover img, .info2:hover img, .info3:hover img {
  filter: brightness(1.3); 
}

.info1:hover .para1, .info2:hover .para2, .info3:hover .para3 {
  color: #f0e68c;
}

@media (max-width: 768px) {
  .info1, .info2, .info3 {
      flex-direction: column;
      align-items: center;
  }

  .info img {
      max-width: 80%;
      margin: 10px 0;
  }
}









footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 50px 0;
  font-family: 'Arial', sans-serif;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  justify-content: space-between;
  gap: 40px;
}

/* Left Side: Company Info */
.footer-left {
  flex: 1;
  min-width: 300px;
}

.footer-left h4 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #f39c12;
  position: relative;
}

.footer-left p {
  margin-bottom: 20px;
  color: #bdc3c7;
}

blockquote {
  background-color: #34495e;
  padding: 15px;
  border-left: 5px solid #f39c12;
  font-style: italic;
  color: #ecf0f1;
}

footer blockquote p {
  margin: 0;
}

/* Right Side: Links, Contact, and Map */
.footer-right {
  flex: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-links, .footer-contact, .footer-map {
  flex: 1;
  min-width: 200px;
}

.footer-links h4, .footer-contact h4, .footer-map h4 {
  font-size: 20px;
  color: #f39c12;
  margin-bottom: 15px;
  position: relative;
}

.footer-links ul, .footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li, .footer-contact ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #f39c12;
  text-decoration: underline;
}

.footer-contact ul li {
  color: #bdc3c7;
}

.footer-map iframe {
  width: 100%;
  height: 150px;
  border: none;
  margin-top: 10px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.footer-map iframe:hover {
  transform: scale(1.05);
}

/* Social Icons and Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #7f8c8d;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f39c12;
  border-radius: 50%;
  color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  background-color: #d35400;
  transform: scale(1.1);
}

.footer-bottom p {
  color: #bdc3c7;
  font-size: 14px;
}





