@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200&display=swap');

html {
  
  height: 100%;
  font-family: 'Inter', sans-serif;
}
* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;


}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}
@keyframes slideInDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* NAVBAR styles */
.navbar {
  position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideInDown 1.5s ease-out; /* Apply the animation */
    color: #fff;
    z-index: 1000; /* Make sure the navbar appears above other content */
    display: flex;
    justify-content:center;
    align-items: center;
    padding-right: 10%;
    padding-left: 10%;
    background-color: rgb(255, 255, 255);
    border-bottom-left-radius: 10px; /* Adjust the value to set the left border radius */
    border-bottom-right-radius: 10px; /* Adjust the value to set the right border radius */
  

}

.nav-links a {
  color:#204C73;
}

/* LOGO */

.nav-logo img{
  width:25%;
 
}

/* NAVBAR MENU */
.menu {
  
  display: flex;
  gap: 1em;
  font-size: 25px;
  
}
.menu li {
  padding: 5px 14px;
}

.menu li a{
  position: relative;
  color: #204C73;
  font-size: 20px;
  font-weight: 500;
  padding: 6px 0;
  text-decoration: none;
}
.menu li a:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #1383A9;
  border-radius: 12px;
  transition: all 0.4s ease;
}
.menu li a:hover:before{
  width: 100%;
}
.menu li.center a:before{
  left: 50%;
  transform: translateX(-50%);
}
.menu li.upward a:before{
  width: 100%;
  bottom: -5px;
  opacity: 0;
}
.menu li.upward a:hover:before{
  bottom: 0px;
  opacity: 1;
}
.menu li.forward a:before{
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.menu li.forward a:hover:before{
  transform: scaleX(1);
  transform-origin: left;
}


input[type=checkbox] {
  display: none;
} 

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
  color: #1F3B63;
}

/* APPLYING MEDIA QUERIES */
@media (max-width: 768px) {
 .menu {
    display:none;
    position: absolute;
    background-color:white;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
  }

  .menu li:hover {
    display: inline-block;
    background-color:#1F3B63;
    transition: 0.3s ease;
  }

  .menu li + li {
    margin-top: 12px;
  }

  input[type=checkbox]:checked ~ .menu {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);
  }

  .dropdown li:hover {
    background-color: #1F3B63;
  }
}


/* Language switch styles */
.language-switch {
  margin-left: auto; /* Pushes the language switch to the right */
  display: flex;
  align-items: center;
}

.language-switch a {
  font-size: 20px;
  padding: 6px 10px;
  color: #204C73;
  text-decoration: none;
}

.language-switch a.active {
  background: #1F3B63;
  color: white;
  border-radius: 12px;
}


/*Intro*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section styles */
.Introduction {
  display: flex;
  flex-direction: column-reverse;
  padding: 10% 5%;
  background-color: white;
  padding-bottom: 5%;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.Introduction .text-section {
  text-align: center;
}

.Introduction .main-text {
  font-size: 4rem;
  text-align: center;
  color: grey;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: mainTextFadeIn 2s forwards;
  animation-delay: 1s;
}

.Introduction .description {
  font-size: 2rem;
  color: grey;
  position: relative;
  overflow: hidden;
  opacity: 1;
  animation: mainFadeIn 10s forwards;
}

.Introduction .description::before {
  content: '';
  width: 0%;
  height: 100%;
  background: #204C73;
  position: absolute;
  top: 0;
  left: 0;
  animation: mainBlock 2s cubic-bezier(.74, .06, .4, .92) forwards;
  animation-delay: 1s;
  z-index: 1;
}

.Introduction .info-section {
  text-align: center;
  margin-top: 1rem;
  opacity: 0;
  animation: mainFadeIn 2s forwards;
  animation-delay: 2s;
}

.Introduction .info-section img {
  max-width: 100%; /* Set the maximum width to 100% */
  height: auto; /* Allow the image to scale proportionally */
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .Introduction {
    padding: 10% 10%; /* Adjust padding for smaller screens */
  }

  .Introduction .main-text {
    font-size: 3rem; /* Adjust font size for smaller screens */
  }

  .Introduction .description {
    font-size: 1.5rem; /* Adjust font size for smaller screens */
  }

  .Introduction .info-section {
    font-size: 1rem; /* Adjust font size for smaller screens */
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .Introduction {
    padding: 10% 10%; /* Adjust padding for tablets */
  }

  .Introduction .main-text {
    font-size: 4rem; /* Adjust font size for tablets */
  }

  .Introduction .description {
    font-size: 2rem; /* Adjust font size for tablets */
  }

  .Introduction .info-section {
    font-size: 1.5rem; /* Adjust font size for tablets */
  }
}

@media (min-width: 1025px) {
  .Introduction {
    padding: 10% 20%;
  }

  .Introduction .main-text {
    font-size: 7rem;
  }

  .Introduction .description {
    font-size: 4rem;
  }

  .Introduction .info-section {
    font-size: 2rem;
  }
}

@keyframes mainBlock {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}

@keyframes mainFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes mainTextFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Banner */

@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}


/* Styles for the slideshow container */
.banner {
  height: 70vh;
  overflow: hidden;
  border-radius: 4%;
  margin: 2% 12%;
  text-align: center; /* Center-align content within the banner */
  position: relative;
}

/* Styles for the individual slides */
.slide {
  display: none;
  height: 70vh;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: transform 1s ease-in-out; /* Add a smooth transition */
  background-image: linear-gradient(to right, rgba(32, 76, 115, 2.0), rgba(0, 0, 0, 0.1));
  z-index: 0;
}

/* Styles for the video */
.slide video {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  object-fit: cover; /* Maintain aspect ratio and cover the slide */
}
/* Styles for the slide image */
.slide-image img {
  width: 100%;
  height: auto;
}

/* Styles for the text overlay */
.slide-text {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 
  color: #fff;
  padding: 20px;
  text-align: center;
  
  transition: opacity 0.3s ease-in-out;
}


/* Keyframes for text animation */
@keyframes slideIn {
  0% {
      transform: translateY(20px);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

/* Apply animation to banner text */
.animate-slide {
  animation: slideIn 1s ease-in-out;
}
/* Styles for the title in the text overlay */
.slide-text h2 {
  margin: 0;
  font-size: 2.5rem;
  text-align: left;
  z-index: 1;
}

/* Styles for the description in the text overlay */
.slide-text p {
  margin: 0;
  font-size: 1rem;
}

/* Styles for the number bullets */
.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #717171;
}

/* Sliding animation */
@keyframes slide {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(0);
  }
}

/* Responsive styles */
@media (max-width: 768px) {

 .banner{
  height: 50vh;
 }

  .slide-text h2 {
      font-size: 1.2rem;
  }

  .slide-text p {
      font-size: 0.9rem;
  }
}



/* ... Introduction/Into ... */

@keyframes expandText {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.intro {
  padding: 2.5% 15% 8% 15%; 
  display: flex;
  background-image: url(images/oman-bg-opaque.png);
  background-size: 32%;
  transform: scale(0);
  opacity: 0;
  background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    background-color: white;
    background-position:70%;   
    transition: opacity 0.7s ease-in-out;
 
}

#intro-text {
  flex: 1;
  justify-content: space-between;
  padding-right: 20px;
}

#intro-text h1 {

  font-size: 4rem;
  content: center;
  color: #1F3B63;
  border-bottom: 1px solid #d3d3d3;
}

#intro-text h2 {
  padding-top: 2.5%;
  font-size: 2rem;
  color: #6b6b6b;
}

#intro-text p {
  padding-top: 1.5%;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: justify; /* Add this property for text justification */
  color: #555;
}
#description-section {
  margin-top: 4%;
  color: #555;
  font-size: 1rem;
}

.description-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.description-column {
  flex: 1;
  padding: 0 10px;
  text-align: left;
}
.description-column h3{
  text-align: center;
}
.center-description {
  text-align: center;
  margin-top: 2.5%;
}

/* Media query for screens with a maximum width of 768px (adjust as needed) */
@media (max-width: 768px) {
  .intro {
    padding: 2.5% 5% 8% 5%; /* Further reduce padding for smaller screens */
  }

  #intro-text h1 {
    font-size: 2.5rem; /* Further reduce font size for smaller screens */
  }

  #intro-text h2 {
    font-size: 1.3rem; /* Further reduce font size for smaller screens */
  }

  #intro-text p {
    font-size: 0.9rem; /* Further reduce font size for smaller screens */
  }

  #description-section {
    font-size: 0.8rem; /* Further reduce font size for smaller screens */
  }

  .description-row {
    flex-direction: column; /* Change direction to column for three rows in one column */
  }

  .description-column {
    flex: 1;
    padding: 0;
    text-align: center; /* Center-align text for each row */
    margin-bottom: 10px; /* Add some spacing between rows */
  }

  .description-column h3 {
    text-align: center; /* Center-align headings for each row */
  }
}





/* ... Why us styles ... */
.why-us {
  position: relative;
  color: #fff;
  font-family: "Roboto Mono", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40vh;
  overflow: hidden;
  
  margin: 0% ;
}

.why-us .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin:0% 5% ;
  z-index: -1;
  background-image: url("images/pexels-ahmet-polat-5410923.jpg"); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: row;
  transform: translateZ(-1px) scale(1.1); /* Adjust the scale for parallax effect */
}

.counter-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 30px 50px;
}

.counter {
  font-size: 3rem;
  margin-top: 10px;
}

@media (max-width: 580px) {
  .why-us {
    flex-direction: column;
  }
  .counter{
    font-size: 2rem;
  }
  .why-us {
   
    height: 60vh;
 
   
  }
}

/* ... services ... */

/* Section styles */
.services {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
  margin: 5% 0%;
  
}

.services h1 {
  font-size: 4rem;
  color: #204C73;
  margin-top: 0;
}

.services h2 {
  color: #204C73;
  font-size: 2rem;
}

/* Header styles */
.header {
  text-align: center;
  margin-top: 2.5%;
  margin-bottom: 5%;
}

/* Card container styles */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; /* Align cards to the top of the container */
  margin-top: 20px;
}

.card {
  position: relative;
  width: 300px;
  height: 450px;
  background-color: #ffffff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s, height 0.3s;
  margin: 20px;
  border-radius: 20px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
  
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.card:hover .card-background {
  opacity: 0.4;
}

.card-content {
  position: absolute;
  bottom: -0%;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.7);
  color: #204C73;
  text-align: center;
  padding: 10px;
  transition: bottom 0.3s ease;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #204C73;
  padding: 5px 10px;
}

.card-description {
  font-size: 1rem;
  color: #204C73;
  display: none;
  padding: 5px 10px;
}

.card-description p {
  padding-bottom: 10%;
}

.card:hover .card-description {
  display: block;
}

/* CSS for the "Learn More" button */
.learn-more-button {
  background-color: whitesmoke;
  color: grey;
  border: none;
  margin-top: 20%;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.learn-more-button:hover {
  background-color: white;
  color: #204C73;
  border: 2px solid #204C73;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
  .services h1 {
    font-size: 2rem;
   
    
  }

  .services h2 {
    font-size: 1rem;
  }

  .card {
    width: 250px;
    height: 200px;
  }
  .card-description{
    font-size: 0.9rem;
  }

  .card:hover {
    height: 300px;
  }
  .services{
    margin-bottom: 10%;
  }
}
/* Media query for laptops */
@media (min-width: 1024px) {
  .services {
    padding: 10px; /* Increase padding for laptops */
    
  
  }

  .services h1 {
    font-size: 4.5rem; /* Adjust font size for laptops */
  }

  .services h2 {
    font-size: 2.5rem; /* Adjust font size for laptops */
  }

  .card {
    width: 350px; /* Adjust card width for laptops */
    height: 500px; /* Adjust card height for laptops */
  }

  .card:hover {
    height: 450px; /* Adjust card height on hover for laptops */
  }
}
/* ... promise... */

.promise {
  position: relative;
  font-family: 'Inter', sans-serif;
  text-align: left;
  display: flex;
  flex-direction: column; /* Adjust to a column layout on smaller screens */
  align-items: left; /* Center horizontally */
 
  overflow: hidden;
  margin-top: 0%;
  color: #fff; /* Text color */
}

.parallax-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  transform: translateZ(-1px) scale(1.1);
}

.promise-icons {
  width: 100%; /* Take up the full width on smaller screens */
  padding: 5%;
  background-color: #204C73;
  width: 50%;
}

.icon-row {
  margin-bottom: 20px;
  color: whitesmoke;
}

.icon-row h1,
.icon-row h2 {
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 10px;
}

.icon-row p {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.6;
}

.promise-icons .learn-more-button {
  background-color: #204C73;
  color: white;
  border: none;
  border: 2px solid white;
  margin-top: 20px; /* Adjust spacing */
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.promise-icons .learn-more-button:hover {
  background-color: white;
  color: #204C73;
  border: 2px solid grey;
}

/* Media query for responsiveness */
@media (max-width: 768px) {
  .promise {
    min-height: auto; /* Allow content to expand naturally */
    display: absolute;
    padding: 2%;
    background-color: #204C73;
   
  }

  .promise .parallax-bg {
    width: 100%; /* Take up full width on smaller screens */
  }

  .promise-icons {
    padding: 10px; /* Increase padding for smaller screens */
  }

  .icon-row h1,
  .icon-row h2 {
    font-size: 1rem; /* Adjust font size for smaller screens */
    padding: 0% 5%;
  }

  .icon-row p {
    font-size: 0.6rem; /* Adjust font size for smaller screens */
    padding: 0% 5%;
  }
  .promise-icons .learn-more-button {
    background-color: #204C73;
    color: white;
    border: none;
    border: 2px solid white;
    margin-top: 20px; /* Adjust spacing */
    padding: 5px 10px;
    margin: 5%;
    font-size: 0.5rem;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease;
  }
  
  .promise-icons .learn-more-button:hover {
    background-color: white;
    color: #204C73;
    border: 2px solid grey;
  }
}






/* CSS for responsive footer */

footer {
  border-top: 1px solid black;
  padding-top: 40px;
  padding: 5% 12% 0% 12%;
  bottom: 0;
  text-align: center;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-column {
  flex: 1;
  margin-right: 10px;
  
}
footer h2{
  color: #555;
  font-weight: bolder;
}
.about,
.helpful-links,
.contact-us {
  background-color: #fff;
  
 
  text-align: left;
  
}

.about{
 
  line-height: 2rem; /* You can adjust the value as needed */
}
.about p{
margin-top: 5%;

}
.about img {
  max-width: 50%;
  height: auto;
}

.footer-links {
  margin-top: 10%;
  display: flex;
  flex-direction: row; /* Arrange items in a row */
  flex-wrap: wrap; /* Allow items to wrap to the next row if needed */
 
}

.footer-links li {
  flex: 0 0 50%; /* Each list item takes up 50% of the available width */
  list-style: none;
  padding: 5px 0; /* Adjust spacing between items */
  color: #555;
  font-size: 1rem;
}

.footer-links a{
  color: #000;
}
ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
  
}
.contact-us p{
  margin-top: 10%; 
  margin-bottom: 10%; 
}
.contact-us .row{
  flex-direction: row; /* Arrange items in a row */
  flex-wrap: wrap; /* Allow items to wrap to the next row if needed */
  

}
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
  }

  .footer-column {
    flex: 1;
    padding-top: 5%;
    margin-right: 0;
  }
 
}

  .loop-wrapper {
   
    position: relative;
    display: block;
    width: 100%;
    height: 250px;
    padding-left:60%;
    overflow: hidden;
    border-bottom: 3px solid #196189;
    color: #1483a9;
  }
  .mountain {
    position: absolute;
    right: -900px;
    bottom: -20px;
    width: 2px;
    height: 2px;
    box-shadow: 
      0 0 0 50px #1483a9,
      60px 50px 0 70px #1483a9,
      90px 90px 0 50px #1483a9,
      250px 250px 0 50px #1483a9,
      290px 320px 0 50px #1483a9,
      320px 400px 0 50px #1483a9
      ;
    transform: rotate(130deg);
    animation: mtn 4s 4s linear infinite;
  }
  .hill {
    position: absolute;
    right: -900px;
    bottom: -50px;
    width: 400px;
    border-radius: 50%;
    height: 20px;
    box-shadow: 
      0 0 0 50px #1483a9,
      -20px 0 0 20px #1483a9,
      -90px 0 0 50px #1483a9,
      250px 0 0 50px #1483a9,
      290px 0 0 50px #1483a9,
      620px 0 0 50px #1483a9;
    animation: hill 6s 1s linear infinite;
  }
  .tree, .tree:nth-child(2), .tree:nth-child(3) {
    position: absolute;
    height: 100px; 
    width: 35px;
    bottom: 0;
    background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/130015/tree.svg) no-repeat;
  }
  .rock {
    margin-top: -17%;
    height: 2%; 
    width: 2%;
    bottom: -2px;
    border-radius: 20px;
    position: absolute;
    background: #1483a9;
  }
  .truck, .wheels {
    transition: all ease;
    width: 85px;
    margin-right: -60px;
    bottom: 0px;
    right: 50%;
    position: absolute;
    color: #1F3B63;
    background: #1F3B63;
  }
  .truck {
    background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/130015/truck.svg) no-repeat;
    background-size: contain;
    height: 60px;
    
  }
  .truck:before {
    content: " ";
    position: absolute;
    width: 25px;
    box-shadow:
      -30px 28px 0 1.5px grey,
       -35px 18px 0 1.5px grey;
  }
  .wheels {
    background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/130015/wheels.svg) no-repeat;
    height: 15px;
    margin-bottom: 0;
  }
  
  .tree  { animation: tree 3s 0.000s linear infinite; }
  .tree:nth-child(2)  { animation: tree2 2s 0.150s linear infinite; }
  .tree:nth-child(3)  { animation: tree3 8s 0.050s linear infinite; }
  .rock  { animation: rock 4s   -0.530s linear infinite; }
  .truck  { animation: truck 4s   0.080s ease infinite; }
  .wheels  { animation: truck 4s   0.001s ease infinite; }
  .truck:before { animation: wind 1.5s   0.000s ease infinite; }
  
  
  @keyframes tree {
    0%   { transform: translate(1350px); }
    50% {}
    100% { transform: translate(-50px); }
  }
  @keyframes tree2 {
    0%   { transform: translate(650px); }
    50% {}
    100% { transform: translate(-50px); }
  }
  @keyframes tree3 {
    0%   { transform: translate(2750px); }
    50% {}
    100% { transform: translate(-50px); }
  }
  
  @keyframes rock {
    0%   { right: -200px; }
    100% { right: 2000px; }
  }
  @keyframes truck {
    0%   { }
    6%   { transform: translateY(0px); }
    7%   { transform: translateY(-6px); }
    9%   { transform: translateY(0px); }
    10%   { transform: translateY(-1px); }
    11%   { transform: translateY(0px); }
    100%   { }
  }
  @keyframes wind {
    0%   {  }
    50%   { transform: translateY(3px) }
    100%   { }
  }
  @keyframes mtn {
    100% {
      transform: translateX(-2000px) rotate(130deg);
    }
  }
  @keyframes hill {
    100% {
      transform: translateX(-2000px);
    }
  }




  /* Base styles for scroll icon */
.scroll-icon {
  width: 30px;
  height: 50px;
  padding-top: 5%;
  position: relative;
  cursor: pointer;
  animation: bounce 1s infinite;
  animation: mainFadeIn 10s forwards;
}

/* Chevron styles */
.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
 
}

/* Delayed animations for individual chevrons */
.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

/* Chevron pseudo-elements */
.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #1F3B63;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

/* Keyframes for chevron animation */
@keyframes move {
  25% {
      opacity: 1;
  }

  33% {
      opacity: 1;
      transform: translateY(30px);
  }

  67% {
      opacity: 1;
      transform: translateY(40px);
  }

  100% {
      opacity: 0;
      transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .scroll-icon {
      width: 20px; /* Adjust width for smaller screens */
      height: 40px; /* Adjust height for smaller screens */
  }

  .chevron {
      width: 18px; /* Adjust chevron width for smaller screens */
      height: 6px; /* Adjust chevron height for smaller screens */
  }
}

/* Add more media queries as needed for other screen sizes */

.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}
.reveal.active{
  transform: translateY(0);
  opacity: 1;
}