/* SECTION */
.about-section {
  padding: 80px 0;
  background: linear-gradient(to right, #05080f, #0b1420);
}

/* CONTAINER */
.about-container {
  width: 90%;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.about-left {
  flex: 1;
}
.image-box {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.image-box img {
  width: 100%;
  border-radius: 15px;
    display: block;
}

/* CONTENT BOX */
.content-box {
  display: none;
  background: #121826;
  padding: 25px;
  border-radius: 10px;
  color:white;
}

/* RIGHT */
.about-right {
  flex: 1;
}

.about-right h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color:white;
}

.about-right p {
  color: #ccc;
  margin-bottom: 15px;
}

.about-right a {
  color: #00c6ff;
  text-decoration: none;
}
.overlay-card {
  position: absolute;
  bottom: 20px;
  right: 20px;

  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);

  padding: 20px;
  border-radius: 10px;
  width: 250px;

  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);

  animation: fadeUp 0.8s ease;
}

.overlay-card h2 {
  color: #00c6ff;
  margin-bottom: 8px;
}

.overlay-card p {
  font-size: 14px;
  color: #ccc;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MENU */
.menu {
  margin-top: 30px;
  
}

.about-item {
  padding: 15px 0;
  border-bottom: 1px solid #2a2f3a;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: white;
  transition: 0.3s;
}

.about-item:hover {
  color: #00c6ff;
  transform: translateX(8px);
}

/* RESPONSIVE */
@media(max-width:900px){
  .about-container {
    flex-direction: column;
  }
}



/*contact */
/* SECTION */
.contact-section {
  position: relative;
  height: 100vh;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* 🎥 VIDEO */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* GREY OVERLAY (IMPORTANT 🔥) */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(28, 31, 38, 0.9); /* grey transparent */
  z-index: -1;
}

/* CONTENT */
.contact-container {
  position: relative;
  padding: 80px 20px;
  color: white;
  text-align: center;
}

/* TITLE */
.contact-title {
  font-size: 40px;
  animation: fadeDown 1s ease;
}

.contact-subtitle {
  color: #ccc;
  margin-bottom: 40px;
  animation: fadeUp 1.2s ease;
}

/* BOX */
.contact-box {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* CARDS */
.contact-info,
.contact-form {
  width: 400px;
  padding: 30px;
  border-radius: 10px;

  background: rgba(42, 47, 58, 0.85); /* transparent grey */
  border: 1px solid #3a3f4a;

  backdrop-filter: blur(5px);
  transition: transform 0.4s ease;
}

/* HOVER */
.contact-info:hover,
.contact-form:hover {
  transform: translateY(-8px);
}

/* TEXT */
.contact-info h3,
.contact-form h3 {
  margin-bottom: 10px;
}

.contact-info p {
  color: #ccc;
  margin-bottom: 15px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;

  border-radius: 6px;
  border: 1px solid #444;

  background: rgba(28, 31, 38, 0.8);
  color: white;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1px solid #00c6ff;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;

  border: none;
  border-radius: 6px;

  background: #00c6ff;
  color: black;

  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #009edc;
  transform: scale(1.03);
}

/* ANIMATION */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}