@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}
nav.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  background-color: #fff;
}
header {
  background-color: #222;
  padding: 1rem 0;
}
nav .logo img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #000f38;
  font-weight: bold;
}

nav ul li a.active {
  color: #007BFF;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ffcc00;
}
body {
  background-color: #fff;
  color: #333;
}

.About {
  width: 90%;
  margin: 50px auto;
  text-align: center;
}

.About-left {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.About_Img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.4s ease-in-out;
  cursor: pointer;
}

.About_Img:hover {
  transform: scale(1.03);
}

/* Play button overlay */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 10px 18px;
  cursor: pointer;
  pointer-events: none;
}

/* About text styles */
.About h3 {
  font-size: 20px;
  margin-top: 30px;
  font-weight: 600;
  color: #000;
}

.About h2 {
  font-size: 35px;
  color: #000f38;
  margin: 10px 0 20px;
}

.About p {
  color: #676767;
  margin-bottom: 15px;
  line-height: 1.6;
  padding: 0 10px;
}

/* Side Video Popup Styles */
.video-side-popup {
  position: fixed;
  top: 0;
  right: 0;
  width: 40%;
  height: 100vh;
  background: #000;
  display: none;
  z-index: 999;
  padding: 20px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.4);
}

.video-side-popup video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.side-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  z-index: 1000;
}

/* Responsive */
@media (max-width: 768px) {
  .video-side-popup {
    width: 100%;
    height: 50vh;
    bottom: 0;
    right: auto;
    top: auto;
  }

  .side-close-btn {
    top: 5px;
    right: 10px;
  }
}
