@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh; 
  margin: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: none;
  color: white;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 30px;
  margin-right: 10px;
}

.logo-span{
  font-size: 18px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  list-style-type: none; 
  margin: 0; 
  padding: 0; 
  position: absolute; 
  right: 90px;
}

.nav-links li {
  margin: 0 15px;
  position: relative;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.services-link {
  display: flex;
  align-items: center;
}

.dropdown-icon {
  margin-left: 5px;
}

.dropdown-menu {
  display: none; 
  position: absolute;
  background-color: #cd5a1e;
  color: white;
  top: 100%;
  left: 0;
  border-radius: 5px;
  list-style-type: none;
  padding: 16px 0;
  width: 130px;
}

.dropdown-menu li {
  text-align: center;
}

.dropdown-menu li:hover{
  background-color: black;
  padding: 6px 4px;
}

/* .who-we-are{
  display: flex;
  align-items: center;
} */

.drop-icon{
  font-size: 16px;
  margin-left: 5px;
}

.dropdown-menu li {
  margin: 5px 0;
}
.dropdown-menu li a{
  color: white;
  font-size: 12px;
}

.dropdown-menu.show {
  display: block;
}

.box{
  border: 2px solid #cd5a1e;
  color: white;
  padding: 4px 8px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
}

.box:hover{
  font-size: 14px;
  background-color: #cd5a1e;
}

.slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
  background: linear-gradient(0deg, rgba(144, 27, 118, .2), rgba(144, 27, 118, .2));

}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-content {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  z-index: 3;
  width: 100%;
}

.slide-content h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 50px;
}

.slide-content p {
  font-size: 1.5rem;
  margin-top: 10px;
}

.italic-text{
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
}

.box-btn{
  border: 2px solid #cd5a1e;
  color: white;
  padding: 7px 14px;
  border-radius: 5px;
  width: 200px;
  margin: 10px auto;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
}

.box-btn:hover{
  font-size: 16px;
  background-color: #cd5a1e;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2rem;
  }
  .slide-content p {
    font-size: 1rem;
  }
}

/* Slider controls */
.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  z-index: 100;
  transform: translateY(-50%);
}

.nav-button {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.nav-button ion-icon{
  font-size: 30px;
}

.nav-button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.prev {
  margin-left: 20px;
}

.next {
  margin-right: 20px;
}

/* Chat with Us Button */
.chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff8c00;
  padding: 15px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: 16px;
  z-index: 1000;
}

.chat-button:hover {
  background-color: #e07b00;
}

/* Chat Popup */
.chat-popup {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 20px;
  background-color: #333;
  padding: 20px;
  border-radius: 5px;
  color: white;
  z-index: 999;
}

.chat-popup.active {
  display: block;
}


footer {
  background-color: #341d2e; 
  color: white;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
  width: 100%;
}

.footer2-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px;
  gap: 10px;
}

.footer2-container p {
  margin: 5px 0;
  font-size: 12px;
}

footer a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

.footer{
  position: fixed;
  width: 100%;
  bottom: 0;
}


/* Existing CSS remains the same until navbar styles */

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger ion-icon {
  font-size: 32px;
  color: white;
}

.close-icon {
  display: none;
}


@media screen and (min-width: 2560px) {
  .slide-content h1 {
    font-size: 4rem;
  }
  
  .slide-content p {
    font-size: 2rem;
  }
  
  .logo-span {
    font-size: 24px;
  }
  
  .nav-links a {
    font-size: 18px;
  }
}

/* For Regular Desktop (1920px) */
@media screen and (max-width: 1920px) {
  .slide-content h1 {
    font-size: 3rem;
  }
}

/* For Smaller Desktops (1366px) */
@media screen and (max-width: 1366px) {
  .logo-span {
    font-size: 16px;
  }
  
  .slide-content h1 {
    font-size: 2.5rem;
  }
}

/* Tablet and Mobile Styles */
@media screen and (max-width: 1024px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
    padding-top: 60px;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .box {
    display: none;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    text-align: center;
    background: transparent;
    padding: 10px 0;
  }

  .logo-span {
    font-size: 14px;
  }

  .slide-content h1 {
    font-size: 1.8rem;
    line-height: normal;
    padding: 0 20px;
  }

  .slide-content p {
    font-size: 1rem;
    padding: 0 20px;
  }

  .italic-text {
    font-size: 0.9rem;
  }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
  .logo img {
    height: 25px;
  }

  .logo-span {
    font-size: 12px;
  }

  .slide-content h1 {
    font-size: 1.5rem;
  }

  .nav-button {
    padding: 4px 8px;
  }

  .nav-button ion-icon {
    font-size: 24px;
  }
}
