@import url("http://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
}

html, body {
  font-size: 62.5%;
  height: 100%;
  overflow-x: hidden;

}

header {
    position: fixed; /* Changed from relative to fixed */
    top: 0; /* Align the navbar to the top */
    left: 0; /* Align the navbar to the left */
    width: 100%; /* Ensure it spans the full width */
    background-color: rgb(1, 1, 1);
    height: 85px;
    padding: 3px 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000; /* Increase z-index to ensure it's above other elements */
    text-decoration: none;
  }
  
  @-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .logo1 {
    position: relative;
    width: 160px;
    height: 110px;
    right: 90px;
    bottom: 10px;
    /* Removed negative top and left values */
    opacity: 0; /* Start with logo hidden */
    animation: fadeIn 1.9s ease-in forwards;
  }
  
  nav {
    position: relative;
    display: flex;
    justify-content: end;
    gap: 2.5rem;
    width: auto; /* Adjusted to auto to prevent overflow */
    left: 5rem;
    bottom: 85px;
    background: linear-gradient(45deg,#000000,#333,#022041,#000000);
    padding-right: 12rem;
  }
  .enquiry-wrapper {
    position: absolute;
    right: 70px;
    top: 23.5%; 
    transform: translateY(-50%);
  }
  
  .dropdown {
    right: 20px;
    bottom: 5.5px;
    font-size: 20px;
    height: 100%;
    transition: 0.1s ease;
  }
  .dropdown-menu {
    position: fixed;
    width: 201.5%; /* Adjusted to auto to prevent overflow */
    height: 350%; /* Adjusted to auto to prevent overflow */
    border-radius: 10px; 
    color: #ffbf10;
  }
  .dropdown-menu a:hover {
    color: #ffbf10;
  }
  nav button {
    position: fixed;
    top: 20px;
    left: 90%;
    font-size: 20px;
    height: 45px;
  }
  
  nav a {
    position: relative;
    font-size: 18px;
    color: #fff;
    font-weight: 500;

    margin-left: 40px;
    top: 15px;
    justify-content: space-between;
    overflow: hidden; /* Add this line */
  }
  nav ul{
    display: flex;
    gap: 2rem;
  }
  
  nav a:hover {
    text-decoration: none;
    color: #ffbf10;
  }
  
  nav a:hover::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: #ffbf10;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  /* Adjust the modal backdrop opacity */
  .modal-backdrop.show {
    opacity: 0.5; /* You can change this value to make it lighter */
  }
  .modal-body #phone {
    width: 467px;
  }
  
  /* Ensure the modal is on top of other content */
  .modal {
    z-index: 1050; /* Standard z-index for Bootstrap modals */
  }
  
  
  .form {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    width: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 30px 30px -30px rgba(27, 26, 26, 0.315);
  }
  
  .form .title {
    color: royalblue;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .form input {
    outline: 0;
    border: 1px solid rgb(219, 213, 213);
    padding: 8px 14px;
    border-radius: 8px;
    width: 100%;
    height: 50px;
  }
  #chatbot-toggle-btn {
    position: fixed;
    height: 50px;
    bottom: 23px;
    right: 20px;
    padding: 12px 10px;
    border: none;
    background-color: #1087ff;
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1001;
  }
  #chatbot-toggle-btn:hover {
    background-color: #0074cc;
  }
  .chat-header span:hover{
    color: #ffffff;
  }
  .chatbot-popup {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 150px;
    width: 500px;
    height: 550px;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    background-color: #fff;
    transition: height 0.3s ease;
  }
  .chat-header {
    background-color: #1087ff;
    color: #fff;
    font-size: 20px;
    padding: 15px 20px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #close-btn {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }
  .chat-box {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: calc(100% - 120px);
    overflow-y: auto;
  }
  .suggestions-container {
    width: 200px;
    border-right: 1px solid #ddd;
  
    height: 100%;
    padding: 0 10px;
  }
  
  .suggestion {
    background-color: #fff;
    border: 1.3px solid #1087ff;
    padding: 5px 10px;
    border-radius: 3px;
    margin: 6px 0;
    display: block;
    width: calc(115% - 20px);
    box-sizing: border-box;
    cursor: pointer;
    font-size: 1.2em;
    text-align: center;
  }
  
  .message-container {
    flex-grow: 1;
    padding: 0 10px;
  }
  
  .message-container {
    flex-grow: 1;
    overflow-y: auto;
    font-size: 15px;
    height: 100%;
  }
  .chat-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 20px;
    border-top: 1px solid #ddd;
  }
  #user-input {
    font-family: "Poppins";
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 12px;
    outline: none;
  }
  #send-btn {
    font-family: "Poppins", sans-serif;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    background-color: #1087ff;
    color: #fff;
    border-radius: 12px;
    margin-left: 10px;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  #send-btn:hover {
    background-color: #0074cc;
  }
  .user-message {
    background-color: #f3f3f3;
    color: #333;
    padding: 8px;
    border-radius: 15px;
    margin: 15px 30px;
    position: relative;
    display: block;
    max-width: 80%;
    font-size: 1em;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .user-message::before {
    content: "\1F468";
    position: absolute;
    bottom: -12px;
    right: -10px;
    left: -30px;
    margin-bottom: 7px;
    font-size: 16px;
    background-color: #1087ff;
    color: #fff;
    border-radius: 50%;
    width: 27px;
    height: 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }
  .bot-message {
    background-color: #10ff8f;
    color: #000000;
    padding: 8px;
    border-radius: 15px;
    margin: 10px 30px;
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-right: 10px;
    position: relative;
    display: block;
    max-width: 80%;
    font-size: 0.9em;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .bot-message::before {
  content: url("Icon.png");
    position: absolute;
    bottom: 6px;
    right: -19px;
    left: -21px;
    margin-bottom: 4px;
    font-size: 16px;
    background-color: transparent;
    color: #fff;
    border-radius: 50%;
    width: 2px;
    height: 1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }
  .button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-top: 10px;
  }
  .button-container button {
    padding: 10px 50px;
    border: none;
    background-color: #1087ff;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .button-container button:hover {
    background-color: #0074cc;
  }
  .form textarea {
    border-radius: 8px;
    height: 100px;
    width: 100%;
    resize: none;
    outline: 0;
    padding: 8px 14px;
    border: 1px solid rgb(219, 213, 213);
  }
  
  .form button {
    align-self: flex-end;
    padding: 8px;
    outline: 0;
    border: 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    background-color: royalblue;
    color: #fff;
    cursor: pointer;
  }
  .spinner {
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-top: 8px solid #2c07fd; /* Blue color */
    border-radius: 50%;
    width: 100px; /* Increased size */
    height: 100px; /* Increased size */
    position: fixed; /* Fixed position */
    top: 40%; /* Center vertically */
    left: 45%; /* Center horizontally */
    transform: translate(-50%, -50%);
    z-index: 1050; /* Ensure it's above modal */
    display: none; /* Hide by default */
    animation: spin 1s infinite linear, flicker 1.5s infinite;
  }
  
  @keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
  }
  
  @keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  

svg {
  display: block;
  overflow: visible;
}

.slider-container {
  position: relative;
  height: 100vh;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: all-scroll;
  overflow: hidden; /* Hide overflow */
 
}

.slider-control {
  z-index: 2;
  position: absolute;
  top: 0;
  width: 10%;
  height: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  will-change: opacity;
  opacity: 0;

}

.test{
    position: absolute;
    top: 60%;
    left: 110%;
    width: 100%;
    height: 100%;
}
.test h1{
    font-size: 3.2rem;
    font-weight: 600;
}
.test .slider__test{
    font-size: 16px;
}
.custom-bullet {
  list-style-type: disc;
  padding-left: 15px; 
  font-size: 1.7rem;
  color: #ffffff; 
}
.span-right{
  position: relative;
  bottom: 30px;
  font-size: 2.5rem;
  text-align:right ;
}
.modal-bodyt,
.modal-headert,
.modal-bodyp,
.modal-headerp,
.modal-bodyd,
.modal-headerd {
  position: relative;
  right: 50px;
  width: 600px;
  background-color: white;
  padding: 20px;
  box-shadow: 0 30px 30px -30px rgba(27, 26, 26, 0.315);
}

.slider-control.inactive:hover {
  cursor: pointer;
}
.slider-control:not(.inactive):hover {
  opacity: 1;
  cursor: pointer;
}
.slider-control.left {
  left: 0;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 100%);
}
.slider-control.right {
  right: 0;
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 100%);
}

.slider-pagi {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 2rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 0;
  list-style-type: none;
}
.slider-pagi__elem {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 2rem;
  height: 2rem;
  margin: 0 0.5rem;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
}
.slider-pagi__elem:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  background: #fff;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
}
.slider-pagi__elem.active:before, .slider-pagi__elem:hover:before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.slider {
  z-index: 1;
  position: relative;
  height: 100%;
}
.slider.animating {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  will-change: transform;
}
.slider.animating .slide__bg {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  will-change: transform;
}

.slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slide.active .slide__overlay,
.slide.active .slide__text {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.slide__bg {
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background-size: cover;
  will-change: transform;
}
.slide:nth-child(1) {
  left: 0;
}
.slide:nth-child(1) .slide__bg {
  left: 0;
  background-image: url("https://images.unsplash.com/photo-1496171367470-9ed9a91ea931?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
}
.slide:nth-child(1) .slide__overlay-path {
  fill: #121212;
}
@media (max-width: 991px) {
  .slide:nth-child(1) .slide__text {
    background-color: rgba(233, 156, 126, 0.8);
  }
}
.slide:nth-child(2) {
  left: 100%;
}
.slide:nth-child(2) .slide__bg {
  left: -50%;
  background-image: url("https://assets-global.website-files.com/60a76b562a2a810c0a6265fa/610a9dbcb7cb3b6e7a53ada5_Android.jpg");
}
.slide:nth-child(2) .slide__overlay-path {
  fill: #121212;
}
@media (max-width: 991px) {
  .slide:nth-child(2) .slide__text {
    background-color: rgba(225, 204, 174, 0.8);
  }
}
.slide:nth-child(3) {
  left: 200%;
}
.slide:nth-child(3) .slide__bg {
  left: -100%;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=2072&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
}
.slide:nth-child(3) .slide__overlay-path {
  fill: #121212;
}
@media (max-width: 991px) {
  .slide:nth-child(3) .slide__text {
    background-color: rgba(173, 197, 205, 0.8);
  }
}
.slide:nth-child(4) {
  left: 300%;
}
.slide:nth-child(4) .slide__bg {
  left: -150%;
  background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
}
.slide:nth-child(4) .slide__overlay-path {
  fill:  #121212;
}
@media (max-width: 991px) {
  .slide:nth-child(4) .slide__text {
    background-color: rgba(203, 198, 195, 0.8);
  }
}
.slide__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slide__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  min-height: 810px;
  -webkit-transition: opacity 0.2s 0.5s, -webkit-transform 0.5s 0.5s;
  transition: opacity 0.2s 0.5s, -webkit-transform 0.5s 0.5s;
  transition: transform 0.5s 0.5s, opacity 0.2s 0.5s;
  transition: transform 0.5s 0.5s, opacity 0.2s 0.5s, -webkit-transform 0.5s 0.5s;
  will-change: transform, opacity;
  -webkit-transform: translate3d(-20%, 0, 0);
          transform: translate3d(-20%, 0, 0);
  opacity: 0;
}
@media (max-width: 991px) {
  .slide__overlay {
    display: none;
  }
}
.slide__overlay path {
  opacity: 0.8;
}
.slide__text {
  position: absolute;
  width: 25%;
  bottom: 15%;
  top: 100px;
  
  left: 12%;
  color: #fff;
  -webkit-transition: opacity 0.5s 0.8s, -webkit-transform 0.5s 0.8s;
  transition: opacity 0.5s 0.8s, -webkit-transform 0.5s 0.8s;
  transition: transform 0.5s 0.8s, opacity 0.5s 0.8s;
  transition: transform 0.5s 0.8s, opacity 0.5s 0.8s, -webkit-transform 0.5s 0.8s;
  will-change: transform, opacity;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}




a.slide__text-link:hover { text-decoration:none; color:#000000;}





@media (max-width: 991px) {
  .slide__text {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20rem;
    text-align: center;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    -webkit-transition: opacity 0.5s 0.5s, -webkit-transform 0.5s 0.5s;
    transition: opacity 0.5s 0.5s, -webkit-transform 0.5s 0.5s;
    transition: transform 0.5s 0.5s, opacity 0.5s 0.5s;
    transition: transform 0.5s 0.5s, opacity 0.5s 0.5s, -webkit-transform 0.5s 0.5s;
    padding: 0 1rem;
  }
}
.slide__text-heading {
  font-family: "Polar", Helvetica, Arial, sans-serif;
  font-size: 3.6rem;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .slide__text-heading {
    line-height: 15rem;
    font-size: 3.5rem;
  }
}
.slide__text-desc {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 1.8rem;
  margin-bottom: 2px;
}
@media (max-width: 991px) {
  .slide__text-desc {
  display: block;
   
  }
}
.slide__text-link {
  z-index: 5;
  display: inline-block;
  position: relative;
  padding: 0.5rem;
  cursor: pointer;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 2.3rem;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}
@media (max-width: 991px) {
  .slide__text-link {
    display: none;
  }
}
.slide__text-link:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f9f6f6;
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transform: rotateX(-85deg);
          transform: rotateX(-85deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  will-change: transform;
}
.slide__text-link:hover:before {
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
}

footer {
    width: 100%;
    padding: 20px 0;
    margin-top: auto;
    z-index: 1;
    font-size: 1.7rem; /* Increase font size */
    background-color: #f8f9fa; /* Example background color for visibility */
    text-align: center; /* Center the text */
    color: #333; /* Set text color for better readability */
}


@media only screen and (max-width: 479px) {

  .slide:nth-child(1) .slide__text {
    background-color: rgba(233, 156, 126, 0.8);
  }

  .slide:nth-child(2) {
    left: 100%;
  }

  .slide:nth-child(2) .slide__bg {
    left: -50%;
    background-image: url("https://assets-global.website-files.com/60a76b562a2a810c0a6265fa/610a9dbcb7cb3b6e7a53ada5_Android.jpg");
  }

  .slide:nth-child(2) .slide__overlay-path {
    fill: #121212;
  }

  .slide:nth-child(3) {
    left: 200%;
  }

  .slide:nth-child(3) .slide__bg {
    left: -100%;
    background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=2072&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  }

  .slide:nth-child(3) .slide__overlay-path {
    fill: #121212;
  }

  .slide:nth-child(4) {
    left: 300%;
  }

  .slide:nth-child(4) .slide__bg {
    left: -150%;
    background-image: url("https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  }

  .slide:nth-child(4) .slide__overlay-path {
    fill:  #121212;
  }

}
a.ib-mob, a.ib-mob:hover {
  color: unset;
  text-decoration: none;
}
@media screen and (max-width: 768px) {

 body{
  display: inline-block;

 
 }
  header{
    display: flex;
    width: 100%; /* Full width */
  }
  nav{

    display: flex;
    width: 100%; /* Full width */
    
  }
  nav a{
    font-size: 13px;
    font-weight: 600;
    margin-left: 10px;
    margin-right: 10px;
  }
  .modal-body #phone {
    width: 467px;
  }
  .dropdown{
     display: flex;
    padding: 8px;
    bottom: 9px;
      flex-direction: column; /* Stacks dropdown items vertically */
  
  }
  .dropdown-menu{
    display: flex;
    position: fixed;
   width: 18.5rem;
   height: 14rem;
  }
  .modal-body,
  .modal-header,
  .modal-bodyp,
  .modal-headerp,
  .modal-bodyd,
  .modal-headerd {
    right: 0;
    width: 100%;
  }

  .slide__text {
    width: 100%;
    bottom: 0;
    height: 13rem;
    padding: 0 1rem;
  }
  .slide__text-heading {
    font-size: 2.5rem;
   font-weight: 600;
  
  }
  .slide__text-desc {
   font-weight: 600;
   display: block;
   
    font-size: 1.8rem;
    color: #07affd;
   
  }
  .slide__text-desc {
    padding-top: -200px;
}
  .slide__text-link {
    font-size: 1.8rem;
  }
  .slider-container{
    height: 100rem;
  }
  .span-right {
    font-size: 1.5rem;
  }
  .slider-control {
    width: 10%;
  }
  .slider-pagi__elem {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 0.25rem;
  }
  .slider-pagi__elem:before {
    width: 0.9rem;
    height: 0.9rem;
  }
  footer {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 479px) {
  .slide__text {
    height: 12rem;
  }
  .slide__text-heading {
    font-size: 2rem;
  }
 
  .slide__text-link {
    font-size: 1.5rem;
  }
  .slide__text-desc {
    font-size: 3rem;
 
    
  }
  .span-right {
    font-size: 1rem;
    bottom: 10px;
  }
  .slider-control {
    width: 15%;
  }
  footer {
  
    padding: 10px 0;
  }
  
}
@media(max-width:767px){
  .about h1, .vision h1, .feed1 h1{
    font-size:32px;
  }
  .about p{
    font-size:16px;
    line-height:normal;
  }
  .ib-address{
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  
}