.glass{
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(2px);
    border: 2px solid white;
    height: 22vw;
}
.btn1 button:hover {
    background-color: gray !important;
}
.videopage {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
}

.videopage .badge {
    display: inline-block;
    color: white;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 0.5rem 1rem;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.videopage h1 {
    font-size: 2.5rem;
    width: 90%;
    max-width: 800px;
    margin: auto;
    font-weight: 500;
    margin-bottom: 1rem;
}

.videobox {
    position: relative;
}

.videopage img {
    margin: auto;
    display: block;
}

.videopage .playbutton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

/* Hover Effect for Play Button */
.videopage .playbutton:hover {
    transform: translate(-50%, -50%) scale(1.1);
    transition: transform 0.3s ease-in-out;
}
.caro h3{
    font-size: 1.2vw;
}
.caro p{
    font-size: 1vw;
}
.page3{
    padding: 10vw 5vw;
}
.page3 h2{
    font-size: 2.5vw;
    font-weight: bold;
}
.page3 .badge{
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.2vw 0.4vw;
    border-radius: 0;
    font-size: 1vw;
}
.page3 button{
    border: 2px solid white;
    color: white;
    border-radius: 0;
}
.page3 p{
    font-size: 1vw;
    color: gray;
    margin-bottom: 1vw;
}
.page3 li{
    color: gray;
    font-size: 1vw;
    margin-bottom: 1vw;
}
.page3 li strong{
    color: white;
}
 @media (max-width: 768px) {
    .page3{
        padding: 5vw 1vw;
        flex-direction:column;
        gap: 7vw;
    }
    .page3-content{
        margin-top: 5vw;
        width: 80vw !important;
        text-align: center;
    }
    .page3 .badge{
        font-size: 5vw;
        padding: 0.8vw 1.6vw;
    }
    .page3 h2{
        font-size: 10vw
    }
    .page3 p{
        font-size: 5vw;
    }
    .page3 li{
        font-size: 4vw;
    }
    .page3 .btn{
        width : 50vw !important;
        font-size: 4vw;
    }
    .stability-images{
        width: 80vw !important;
    }
 }
.page4 {
    width: 100%;
    padding: 4rem 2rem;
    background-color: #f8f8f8; /* Light background for contrast */
}

.page4 .top {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2vw;
    margin-bottom: 4rem;
}

.page4 .top .left p {
    display: inline-block;
    background-color: #e0e0e0; /* Grey badge background */
    color: #000; /* Black text */
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page4 .top .left h2 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #000; /* Black text */
    line-height: 1.4;
}

.page4 .top .right {
    color: #333; /* Slightly softer black for readability */
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.6;
}

.page4 .top .right span {
    display: block;
    margin-bottom: 1.5rem;
}
.page4 .btn{
    border-radius: 0;
    font-weight: bold;
    border: 2px solid black;
}
 @media (max-width: 768px) {
     .page4 .top{
         flex-direction: column;
     }
     .page4 .top .left h2 {
        font-size: 2.5rem;
         
     }
 }
.page7 {
  width: 100%;
  padding: 4rem 2rem;
  background-color: #f8f8f8; /* Light background for contrast */
}

/* Top Section */
.page7 .top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  padding: 2vw;
  margin-bottom: 4rem;
}

.page7 .top .left p {
  display: inline-block;
  background-color: #e0e0e0; /* Grey badge background */
  color: #000; /* Black text */
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page7 .top .left h2 {
  font-size: 2.5vw;
  font-weight: bold;
  color: #000; /* Black text */
  line-height: 1.4;
}

.page7 .top .right {
  color: #333; /* Slightly softer black for readability */
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.6;
}

.page7 .top .right span {
  display: block;
  margin-bottom: 1.5rem;
}

/* Bottom Section */
.page7 .bottom {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.page7 .bottom .imgtxt {
  position: relative;
  background-color: #000;
  width: 100%;
  max-width: 20vw;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: filter 0.3s ease;
  cursor: pointer;
}

.imgtxt:hover img {
  filter: blur(5px);
}

.page7 .bottom .imgtxt img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page7 .bottom .imgtxt h3 {
  position: absolute;
  left: 1rem;
  bottom: 10rem; /* Initial position for heading */
  font-size: 2vw;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page7 .bottom .imgtxt p {
  position: absolute;
  left: 1rem;
  bottom: 1rem; /* Positioned just below the heading */
  color: #fff;
  margin: 0;
  line-height: 1.4;
  font-size: 1vw;
}

/* Responsive Adjustments */

/* For screens 768px and above */
@media (min-width: 768px) {
  .page7 .top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .page7 .top .left,
  .page7 .top .right {
    width: 48%;
  }
}

/* For screens smaller than 768px */
@media (max-width: 767px) {
  .page7 {
    padding: 2rem 1rem;
  }
  
  /* Stack header sections vertically */
  .page7 .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .page7 .top .left h2 {
    font-size: 2rem; /* Adjust heading size on mobile */
  }
  
  .page7 .top .left p {
    font-size: 0.8rem;
  }
  
  .page7 .top .right {
    font-size: 0.9rem;
    max-width: 100%;
  }
  
  /* Bottom cards adjustments */
  .page7 .bottom .imgtxt {
    max-width: 100%; /* Allow cards to take full width */
  }
  
  .page7 .bottom .imgtxt h3 {
    font-size: 1.5rem; /* Larger text for readability */
    bottom: 6rem; /* Adjust overlay positioning */
  }
  
  .page7 .bottom .imgtxt p {
    font-size: 1rem; /* Increase description font size */
    bottom: 1rem;
  }
}
.card1{
    height: 10vw;
}
.collaborate h1{
    font-size: 2.5vw;
    margin-bottom: 1vw;
    font-weight: bold;
}
.collaborate p{
    margin-bottom: 1vw;
}
.collaborate{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 80vw;
    margin: 5vw auto;
    border: 5px solid black;
}
.collaborate button{
    border-radius: 0;
    font-weight: 600;
    font-size: 1vw;
}
.textr{
    margin:auto;
    width:50vw;
    text-align: center;
    padding: 5vw 2vw;
}
.text2{
    width: 35vw;
    padding: 2em;
    text-align: center;
}
.button2{
    border: 2px solid white;
    padding: 0.4vw 0.8vw;
}
.button2:hover{
    background-color: white;
    color: black;
}
.text{
    width: 35vw;
    text-align: center;
    padding: 5vw 2vw;
}
 @media (max-width: 768px) {
     .collaborate{
         flex-direction: column-reverse !important;
     }
     .collaborate h1{
         font-size: 5vw;
     }
     .collaborate .text{
         width: 85vw;
     }
    .collaborate button{
         width: 40vw;
         font-size: 3vw;
     }
 }
 .mapcontainer {
  perspective: 1000px; /* Adjust this value to control depth */
}

.map {
  display: block;
  width: 100%;
  transition: transform 0.3s ease, filter 0.3s ease;
  transform-style: preserve-3d;
}
/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
  .collaborate {
    flex-direction: column;      /* Stack vertically */
    margin: 2rem 1rem;           /* Reduced margins */
    padding: 2rem;               /* Reduced padding */
    border-width: 2px;           /* Thinner border on mobile */
  }
  .collaborate h1 {
    font-size: 1.8rem;           /* Fixed font size on mobile */
    margin-bottom: 1rem;
  }
  .collaborate p {
    font-size: 1rem;             /* Fixed font size for better readability */
    margin-bottom: 1rem;
  }
  .collaborate button {
    font-size: 1rem;             /* Slightly smaller button text */
    padding: 0.8rem 1.5rem;       /* Adjust button padding */
  }
  .mapcontainer {
    margin-top: 2rem;
    width: 100%;
  }
  .map {
    width: 100%;
  }
}
/* On hover, tilt the image and add a drop shadow for a 3D effect */
.map:hover {
  transform: rotateX(10deg) rotateY(10deg);
  filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 0.5));
}