 body {
     margin: 0;
     font-family: 'Segoe UI', sans-serif;
     position: relative;
     background: #f4f4f4;
 }

 .navbar {
     display: flex;
     position: sticky;
     top: 0;
     z-index: 10;
     justify-content: space-between;
     align-items: center;
     background-color: white;
     color: black;
     box-shadow: 2px 2px 13px 0px #2e2e2e;
     padding: 0.8rem 2rem;
     flex-wrap: wrap;
 
 }

 .logo-div {
     display: flex;
     gap: 10px;
     justify-content: center;
     align-items: center;
     font-weight: 700;
     font-size: 20px;
 }

 .nav-links {
     display: flex;
     gap: 1.5rem;
 }

 .nav-links a {
     color: black;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s;
     font-size: 20px;
 }

 .nav-links a:hover {
     color: #ffcc00;
 }

 .navbar img {
     height: 50px;
     width: auto;
     border-radius: 50%;
 }

 .menu-toggle {
     display: none;
     font-size: 28px;
     cursor: pointer;
 }



 @media (max-width: 788px) {
     .nav-links {
         flex-direction: column;
         width: 100%;
         display: none;
         background-color: white;
         padding: 1rem 0;
     }
     .company-name{
        font-size: 16px;
     }

     .nav-links.active {
         display: flex;
     }

     .nav-links a {
         padding: 10px 20px;
         border-top: 1px solid #eee;
     }

     .menu-toggle {
         display: block;
         color: black;
     }
 }

 .carousel {
     position: relative;
     max-width: 100%;
     margin: 0px auto;
     height: 90vh;
     overflow: hidden;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
 }

 .slides {
     display: flex;
     width: 300%;
     height: 100%;
     position: relative;
     transition: transform 0.5s ease-in-out;
 }


 .slide {
     position: relative;
     width: calc(100% / 3);
     height: 100%;
 }

 .overlay-on-image {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 60;
     background-color: rgba(0, 0, 0, 0.30)
 }

 .slide img {
     width: 100%;
     mix-blend-mode: color;
     background: white;
     height: 100%;
     object-fit: contain;
     object-position: center center;
 }

 .nav {
     position: absolute;
     bottom: 0;
     width: 100%;
     display: flex;
     justify-content: space-between;
     transform: translateY(-50%);
 }

 .nav button {
     background: rgba(0, 0, 0, 0.5);
     border: none;
     color: white;
     font-size: 2rem;
     padding: 0.5rem 1rem;
     cursor: pointer;
     border-radius: 5px;
 }

 .nav button:hover {
     background: rgba(0, 0, 0, 0.8);
 }


 .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 97%;
     height: 90%;
     background: linear-gradient(to right top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
     display: flex;
     align-items: flex-end;
     justify-content: start;
     padding: 1rem;
     z-index: 2;
     color: white;
     font-size: 1.5rem;
     font-weight: bold;
     text-align: left;
 }

 .overlay ul {
     width: 40%;
     background-color: #ffcc00;
 }

 .different-section {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: center;
     padding: 60px 20px;
     background-color: #fff;
 }

 .section-text {
     display: flex;
     flex-direction: column;
     width: 50%;
     padding: 20px;
 }

 .section-text h2 {
     font-size: 2.5rem;
     margin-bottom: 10px;
     color: #333;
 }

 .section-text p {
     font-size: 1.1rem;
     line-height: 1.6;
     color: #555;
 }


 .section-image {
     flex: 1 1 300px;

     padding: 20px;
     text-align: center;
 }

 .section-image img {
     max-width: 100%;
     height: auto;
     border-radius: 10px;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 }

 @media (max-width: 768px) {
     .different-section {
         flex-direction: column;
     }
     .overlay{
        font-size: 16px;
     }
 }

 .grid-container {
     display: grid;
     grid-template-columns: auto auto;
     gap: 20px;

     padding: 70px 40px;
 }

 .grid-item {

     /* background-image: url("https://picsum.photos/400/300"); */
     overflow: hidd;
     background-color: #e5e2e2;
     height: auto;
     min-height: 300px;
     background-size: cover;
     position: relative;
     background-position: center;
     border-radius: 10px;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
     color: white;
     margin: 10px;
 }

 .icons {
     position: absolute;
     bottom: 0;
     right: 0;
 }


 .grid-text {
     color: rgb(45, 44, 44);
     border-radius: 10px;
     padding: 30px;






 }

 .more-info {
     border: 2px solid black;
     /* width: 50px;
    height: 20px; */
     background-color: #3e3b3b;
     color: #e5e2e2;
 }

 .header-text {
     font-size: 30px;
     font-weight: 500;
 }





 @media (max-width: 768px) {
     .grid-container {
         grid-template-columns: 1fr;
     }
 }


 .info-button {
     background-color: transparent;

     color: rgb(15, 15, 15);
     padding: 10px 20px;
     margin: 10px 60px;
     margin-bottom: 30px;
     border: none;
     border-radius: 5px;
     font-size: 20px;
     cursor: pointer;
     text-decoration: underline;
 }

 footer {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     color: white;
     background: #2c3e50;
     text-align: center;
     padding: 15px;
     margin-top: 40px;
     height: 300px;
     padding: 20px;
     text-align: center;
     font-size: 14px;

 }

 .popup-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.7);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 9999;
 }

 .popup-content {
     background: white;
     width: auto;
     /* max-width: 900px; */
     height: 500px;
     display: flex;
     border-radius: 10px;
     overflow: hidden;
     position: relative;
     box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
 }

 .popup-left,
 .popup-right {
     width: auto;
     height: 100%;
 }

 .popup-left video {
     width: 100%;
     height: 100%;
     object-fit: contain;
 }

 .popup-right img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .close-btn {
     position: absolute;
     top: 10px;
     right: 15px;
     font-size: 28px;
     font-weight: bold;
     cursor: pointer;
     color: #333;
 }

 @media (max-width: 768px) {
     .popup-content {
         
         height: auto;
     }

     .popup-left,
     .popup-right {
         width: 100%;
         height: 400px;
     }
     .popup-right img{
        object-fit: cover;
     }
     .popup-left video{
        object-fit: cover;
     }
 }





.section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 40px;
}

.image-container {
  flex: 1 1 300px;
  max-width: 400px;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.text-container {
  flex: 1 1 300px;
  max-width: 500px;
}

.text-container h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #333;
}

.text-container p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.explore-button {
  display: inline-block;
  
  padding: 12px 24px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.explore-button:hover {
  background-color: #0056b3;
}