@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

html,
body {
  overflow-x: hidden;
}
body {
  font-family: "poppins", sans-serif;
  background: linear-gradient(90deg, rgb(7, 15, 17) 0 0%, #000427 100%);
  color: #fff;
}

a {
  text-decoration: none;
}

.text-justify {
  text-align: justify;
}
h1,
h2 {
  font-family: "Roboto", sans-serif;
}

section {
  padding: 80px 0;
}

/* header navbar */
.btn-close:focus,
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler {
  border: 1px solid #1e1e1e;
}
.hero {
  height: 100vh;
}
.glass {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: #a0a0a070;
}
.hero-title {
  font-size: 3.5rem;
  color: transparent;
  background-image: linear-gradient(to right, #00f2ff, #f84587, #f3397d);
  animation: shine 4s linear infinite;
  -webkit-background-clip: text; /* For webkit browsers */
  background-clip: text;
}

@keyframes shine {
  0% {
    background-position: -200px;
  }
  100% {
    background-position: 500px;
  }
}
.navbar {
  border: 0.5px solid #a7a7a734;
  transition: transform 0.3s ease;
  background: linear-gradient(
    90deg,
    rgba(18, 24, 41, 0.4),
    rgba(207, 219, 255, 0.178)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
}
.offcanvas {
  z-index: 99999;
}
.navbar-hide {
  transform: translateY(-140%);
}
.navbar-brand img {
  left: 0px;
  top: -13px;
}
.navbar-brand span {
  margin-left: 50px;
}
.hero-img {
  width: 85%;
}

.hero-icons a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.35s ease;
}

/* Hover Effect */
.hero-icons a:hover {
  color: #00e5ff;
  border-color: #00e5ff;
  transform: translateY(-5px) scale(1.1);
  box-shadow:
    0 0 10px #00e5ff,
    0 0 25px #00e5ff,
    0 0 40px rgba(0, 229, 255, 0.5);
}

@keyframes iconGlow {
  0% {
    box-shadow: 0 0 5px rgba(0, 229, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.9);
  }
  100% {
    box-shadow: 0 0 5px rgba(0, 229, 255, 0.4);
  }
}
.hero-icons a:hover {
  animation: iconGlow 1.5s infinite;
}
/* about section */

.about {
  height: 100%;
}
.about-name {
  font-size: 28px;
  color: transparent;
  background-image: linear-gradient(to right, #00f2ff, #f3397d);
  -webkit-background-clip: text; /* For webkit browsers */
  background-clip: text;
}

.about-role {
  font-size: 22px;
  margin-top: 5px;
}

.about-desc {
  font-size: 15px;
}

.about-img img {
  width: 250px;
  max-width: 100%;
}

.counter-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.counter-card h2 {
  color: #00e5ff;
  font-size: 40px;
}

.counter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
/* timeline section  */

.timeline-section {
  background: #060c24;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #00e5ff;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 50px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: #00e5ff;
  border-radius: 50%;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.timeline-year {
  color: #00e5ff;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.timeline-content h5 {
  color: #fff;
  margin-bottom: 8px;
}

.timeline-content p {
  color: #9aa4b2;
  font-size: 14px;
}

/* awards and achievements */
.achievement-card {
  border: 1px solid #b9b9b98f;
  overflow: hidden;
  transition: 0.4s;
}

.achievement-card:hover {
  transform: translateY(-10px);
  border-color: #ffcc00;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* media coverage */
.media-coverage {
  background: #060c24;
}

.media-card {
  background: rgba(110, 110, 110, 0.148);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.4s;
}

.media-card img {
  width: 50%;
  margin-bottom: 15px;
}

.media-card h5 {
  color: #fff;
  margin-bottom: 10px;
}

.media-card p {
  color: #9aa4b2;
  font-size: 14px;
}

.media-card:hover {
  transform: translateY(-8px);
  border-color: #00e5ff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* footer */

.footer {
  background: #060c24;
  color: #fff;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #9aa4b2;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #00e5ff;
}

.footer-social a {
  color: #fff;
  font-size: 20px;
  margin-right: 12px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #00e5ff;
  transform: translateY(-3px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.gallery-section {
  background: #060c24;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

/* gallery */

.gallery {
  column-count: 1;
  column-gap: 20px;
}

.gallery-item {
  position: relative;
  display: block;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: 0.4s;
  border-radius: 12px;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.gallery-overlay i {
  font-size: 35px;
  color: #fff;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Responsive */

@media (min-width: 768px) {
  .about-img img {
    width: 100%;
  }
  .about-name {
    font-size: 2.2rem;
  }

  .about-role {
    font-size: 18px;
  }

  .about-desc {
    font-size: 16px;
  }
  .gallery {
    column-count: 2;
  }
}
/* Responsive */

/* Laptop */
@media (min-width: 992px) {
  .about-name {
    font-size: 3rem;
  }

  .about-role {
    font-size: 22px;
  }

  .about-desc {
    font-size: 20px;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .about {
    height: 100%;
  }
  .gallery {
    column-count: 3;
  }
}
