/* RESET + GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  overflow-x: hidden; /* ✅ Prevents horizontal scroll */
}
body {
  font-family: "Poppins", Arial, sans-serif;
  background: #000;
  color: #fff;
}

/* =====================
   NAVBAR
===================== */
.navbar {
  background-color: #000 !important;
  padding: 15px 40px;
}
.navbar-brand {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff !important;
}
.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin-right: 10px;
  transition: 0.3s;
  white-space: nowrap;
}
.nav-link:hover {
  color: #00b4d8 !important;
}

/* Dropdown */
.dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  min-width: 220px;
}
.dropdown-item {
  color: #000;
  font-weight: 500;
  padding: 10px 20px;
  transition: 0.3s;
}
.dropdown-item:hover {
  color: #0077b6;
  background-color: #f8f9fa;
}
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  display: block;
}
.nav-item.dropdown:hover > .nav-link {
  color: #00b4d8 !important;
}
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  display: block;
}
.header{
  font-family: sans, "sans Fallback", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

   .header-section h1{
      font-family: sans, "sans Fallback", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 49.32px;
font-weight: 700;
line-height: 53.388px;
color: rgb(0, 0, 0);
border:2px solid pink;
    }
    #award .col-md-5 {
  display: flex;
}

#award .bg-white {
  flex: 1;
}


     .journey{
      font-family: sans, "sans Fallback", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 19.2044px;
font-weight: 400;
line-height: 5;
color: rgb(0, 0, 0);
    }


/* =====================
   ABOUT SECTION
===================== */
.about-section {
  display: flex;
  justify-content: center;
  padding: 80px 5%;
  background-color: #000;
  width: 100%;
}
.container1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Video Box */
.video-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}
.video-wrapper video {
  width: 100%;
  height: auto;
  border-radius: 25px;
  display: block;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  background: rgba(255, 255, 255, 0.25);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  padding: 15px 25px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
}
.play-btn:hover {
  background: #00b4d8;
}

/* Text Content */
.text-image-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #111;
  border-radius: 25px;
  padding: 40px;
}
.text-content h3 {
  font-size: 1.9rem;
  margin-bottom: 15px;
}
.text-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}
.text-content .btn {
  background: #00b4d8;
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  margin-top: 20px;
  transition: 0.3s;
}
.text-content .btn:hover {
  background: #0077b6;
}

/* =====================
   FOOTER
===================== */
.footer {
  background-color: #000;
  color: #fff;
  padding: 50px 0;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.social-icons a {
  color: #fff;
  margin-right: 15px;
  font-size: 1.25rem;
}
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 0.875rem;
}

/* =====================
   RESPONSIVE DESIGN
===================== */

/* Tablets */
@media (max-width: 1024px) {
  .container1 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .text-image-box {
    text-align: center;
  }
  .navbar {
    padding: 10px 20px;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .navbar-brand {
    font-size: 20px;
  }
  .about-section {
    padding: 40px 20px;
  }
  .text-content h3 {
    font-size: 1.5rem;
  }
  .text-content p {
    font-size: 0.95rem;
  }
  .play-btn {
    font-size: 1rem;
    padding: 10px 18px;
  }

 .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  position: static !important;
  box-shadow: none;
  background: none;
  padding-left: 15px;
}

  .dropdown-item {
    color: #fff;
  }
  .dropdown-item:hover {
    color: #00b4d8;
  }

  /* Footer columns stack */
  .footer .col-md-2,
  .footer .col-md-3 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .social-icons {
    text-align: center;
    margin-top: 10px;
  }
}

/* Extra Small (≤480px) */
@media (max-width: 480px) {
  .navbar-brand {
    font-size: 18px;
  }
  .text-content h3 {
    font-size: 1.3rem;
  }
  .text-content p {
    font-size: 0.9rem;
  }
  .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}
