.Beyond-link {
font-size:16px;
font-weight:700;
color: #333;           /* Normal color */
text-decoration: none; /* Remove underline */
transition: color 0.3s ease; /* Smooth transition */
}

.Beyond-link:hover {
color: #3dcfe0;        /* Color on hover */
}

 .Beyond-link:hover i {
     transform: translateX(6px);
     color: #3dcfe0; 
}
 
 /* ============================================================
   ANIMATED BUTTON CSS
   ============================================================ */
.video-play-btn {
  position: relative;
  width: 80px;
  height: 80px;
  background-color: #3dcfe0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(61, 207, 224, 0.4);
  animation: pulseRing 2s infinite;
}

.video-play-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(61, 207, 224, 0.7);
  animation: ripple 2s infinite;
}

/* white play triangle */
.video-play-btn span {
  position: relative;
  left: 2px;
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* glowing ring animation */
@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(61, 207, 224, 0.5);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(61, 207, 224, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(61, 207, 224, 0);
  }
}

/* outer ripple animation */
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}


/* ============================================================
    TOP IMAGE SECTION
   ============================================================ */
.bg-zoom {
  width: 100%;
  height: 550px;
  background-image: url(img/Alok-sir.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  transform-origin: center center;
}


/* ============================================================
    OUR MISSION SECTION
   ============================================================ */
.OurMission {
  background-color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.OurMission::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -210px;
  bottom: 40px;
  width: 50%;
  background: url("logo-only.html") right center / contain no-repeat;
  opacity: 1;
  mix-blend-mode: screen;
  transition: all 0.3s ease;
  z-index: 0;
}

.OurMission .container {
  position: relative;
  z-index: 1;
}


/* ============================================================
    TEXT STYLES
   ============================================================ */
.ParaText_infrastructure {
  margin-top: 40px;
  font-family: "Gordita", Sans-serif;
  font-size: 18px;
  color: #666666;
  line-height: 30px;
  font-weight: 400;
  width: 1000px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.ParaText_Normal {
  margin-top: 40px;
  font-family: "Gordita", Sans-serif;
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  font-weight: 400;
}

.ParaText-mission {
  font-family: "Gordita", Sans-serif;
  font-size: 16px;
  color: #444;
  line-height: 30px;
  padding-right: 47px;
}


/* ============================================================
    HEADINGS
   ============================================================ */
.SubHeading {
  font-family: "Gordita", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 26px;
  letter-spacing: 3px;
  color: #3dcfe0;
}

.HeadingBox {
  font-family: Butler;
  font-weight: 700;
  font-size: 50px;
  letter-spacing: 0.02em;
  color: #333333;
  line-height: 1.37em;
}


/* ============================================================
  RESPONSIVE STYLES
   ============================================================ */


/* --- Extra small devices (=576px) --- */
@media (max-width: 576px) {
  .ParaText_infrastructure {
    font-size: 14px;
    line-height: 24px;
    width: 100%;
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .HeadingBox {
    font-size: 40px;
  }
  
  .ParaText_Normal {
  padding-left:15px;
  padding-right:15px;
}
}

/* --- Tablets and small laptops (=992px) --- */
@media (max-width: 992px) {
  .container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .ParaText_infrastructure {
    font-size: 16px;
    line-height: 28px;
    width: 85%;
	
  }

  .bg-zoom {
    height: 350px;
  }

  .OurMission::before {
    right: -100px;
    width: 80%;
    opacity: 0.6;
  }

  .HeadingBox {
    font-size: 45px;
  }
}

/* --- Tablets (=768px) --- */
@media (max-width: 768px) {
  .bg-zoom {
    height: 180px;
  }

  .OurMission::before {
    top: 50px;
    right: 0;
    width: 100%;
    opacity: 0.3;
    background-position: center;
  }

  .HeadingBox {
    margin: 0;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 35px;
    text-align: center;
  }

  .SubHeading {
    text-align: center;
  }

  .OurMission .col-md-6 {
    text-align: center !important;
  }

  .styled-list li {
    font-size: 15px;
	font-family: "Gordita", Sans-serif;
    line-height: 1.6;
  }
}

/* --- Small mobile (=480px) --- */
@media (max-width: 480px) {
  .bg-zoom {
    height: 150px;
  }

  .HeadingBox {
    font-size: 30px;
  }

  .ParaText,
  .ParaText-mission {
    font-size: 15px;
  }
}


/* ============================================================
    STYLED LIST
   ============================================================ */
.styled-list {
  list-style: none;
  padding: 0;
  padding-left: 20px;
  margin: 0;
}

.styled-list li {
  font-family: "Gordita", Sans-serif;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight:500;
  color: #444;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.styled-list li::before {
  font-family: "Font Awesome 5 Pro"; 
  font-weight: 900;                  /* solid */
  content: "\f0c8";                  /* fa-square */
  position: absolute;
  display: block;
  padding-top: 6px;
  left: 0;
  top: 0;
  font-size: 8px;
  color: #003728;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.styled-list li:hover {
  color: #111;
}

.styled-list li:hover::before {
  color: #5cc9e0;
  transform: translateX(4px);
}


/* ============================================================
    SPORTS TITLE
   ============================================================ */
.sports_Title {
  font-family: "Butler", Sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding-top: 10px;
}


/* ============================================================
   IMAGE GRID (Custom 5-column / 3-column)
   ============================================================ */
@media (min-width: 992px) {
  .col-lg-5th {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .col-md-3rd {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
