
.nav-link{
  color:orange;
  font-weight: 500;
}

.navbar .logo {
  width: 60px;
  height: 60px;
}

/*hero section*/
/* HERO SECTION */

.hero{
height:100vh;
position:relative;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
overflow:hidden;
color:white;
text-align:center;
}

/* video */
.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-2;
}

/* overlay */
.hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.45);
z-index:-1;
}

/* mobile video hidden */
.mobile-video{
display:none;
}

/* mobile screen */
@media (max-width:768px){

.desktop-video{
display:none;
}

.mobile-video{
display:block;
}

}

/* logos bottom */

.hero-brands{
position:absolute;
bottom:15px;
}

.brands{
width:90px;
height:80px;
margin:5px;
}

/*hero section*/

/*title section*/
.titles {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  color: orange;
  border-bottom: 3px solid #000;
  display: inline-block;
  padding-bottom: 5px;
}

/*about*/
.about {
  padding: 80px 0;
}

.about-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}

.stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.stats div {
  flex: 1 1 200px;
  text-align: center;
}
/*about*/

/*events
:root {
  --lightbox: rgb(0 0 0 / 0.75);
  --carousel-text: #fff;
}

@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.gallery-item {
  display: block;
}

.gallery-item img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s;
}

.gallery-item:hover img {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
}

.lightbox-modal .modal-content {
  background-color: var(--lightbox);
}

.lightbox-modal .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  z-index: 10;
  filter: invert(1) grayscale(100);
}

.lightbox-modal .modal-body {
  display: flex;
  align-items: center;
  padding: 0;
}

.lightbox-modal .lightbox-content {
  width: 100%;
}

.lightbox-modal .carousel-indicators {
  margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
  background-color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-inner {
  width: 75%;
}

.lightbox-modal .carousel-inner img {
  animation: zoomin 10s linear infinite;
}

.lightbox-modal .carousel-item .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 2rem;
  background-color: var(--lightbox);
  color: var(--carousel-text) !important;
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  width: auto;
}

.lightbox-modal .carousel-control-prev {
  left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
  right: 1.25rem;
}

@media (min-width: 1400px) {
  .lightbox-modal .carousel-inner {
    max-width: 60%;
  }
}

[data-bs-theme="dark"] .lightbox-modal .carousel-control-next-icon,
[data-bs-theme="dark"] .lightbox-modal .carousel-control-prev-icon {
  filter: none;
}

.btn-fullscreen-enlarge,
.btn-fullscreen-exit {
  position: absolute;
  top: 1.25rem;
  right: 3.5rem;
  z-index: 10;
  border: 0;
  background: transparent;
  opacity: 0.6;
  font-size: 1.25rem;
}

.bi {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.035em;
  fill: currentcolor;
}

events end*/
/*Team*/
.team-member {
  transition: transform 0.3s ease-in-out;
}

.team-member:hover {
  transform: translateY(-10px);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #f8f9fa;
  color: #0d6efd;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #0d6efd;
  color: white;
  transform: translateY(-3px);
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #f8f9fa;
  transition: transform 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.05);
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #0d6efd;
  margin: 20px auto;
}

/*Team end*/

/*skill programmes*/
.skill-card {
  display: block;
  text-decoration: none;
  color: #000;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.skill-card img {
  width: 100%;
  height: 180px;
  object-fit:fill;
}

.skill-card p {
  padding: 10px;
  font-weight: 600;
}

.skill-card:hover {
  transform: translateY(-5px);
}
/*skill programmes end*/

/*services*/
.service-card {
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  text-align: center;
  height: 150px;
}

.service-icon {
  font-size: 40px;
  color: orange;
  display: block;
  margin: 0 auto 10px auto;
}

.service-text {
  margin: 0;
  font-weight: 600;
}

.service-card:hover {
  transform: translateY(-5px);
}

.goal-box{
  background:#ffffff;
  padding:30px;
  border-radius:10px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  text-align:center;
  line-height:1.7;
}
.ico{
  font-size:30px;
  color:orange;
  margin-bottom:10px;
}
/*services end*/


/*contact us*/
.map-wrapper{
  width:100%;
  min-height:420px;
  border-radius:8px;
  overflow:hidden;
}

.contact-form{
  background:white;
  padding:30px;
  border-radius:8px;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
}
@media (max-width:768px){
.map-wrapper{
min-height:300px;
}
}
/*contact us end*/

/*footer*/
.footer{
  background-color: orange;
  color: white;
  text-align: center;
  padding: 0px;
}
/*footer end*/



/*floting icons*/
.social-float{
position:fixed;
right:20px;
top:88%;
transform:translateY(-50%);
display:flex;
flex-direction:column;
gap:10px;
z-index:999;
}

.social-icon{
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
color:white;
border-radius:50%;
font-size:20px;
text-decoration:none;
transition:0.3s;
}

.social-icon:hover{
transform:scale(1.1);
}

/* Colors */

.fb{
background:#1877f2;
}

.tw{
background:#000000;
}

.ig{
background:#e1306c;
}
/*floating icons*/






















/* From Uiverse.io by elijahgummer */ 
.golden-button {
  touch-action: manipulation;
  display: inline-block;
  outline: none;
  font-family: inherit;
  font-size: 1em;
  box-sizing: border-box;
  border: none;
  border-radius: 0.3em;
  height: 2.75em;
  line-height: 2.5em;
  text-transform: uppercase;
  padding: 0 1em;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(110, 80, 20, 0.4),
    inset 0 -2px 5px 1px rgba(139, 66, 8, 1),
    inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
  background-image: linear-gradient(
    160deg,
    #a54e07,
    #b47e11,
    #fef1a2,
    #bc881b,
    #a54e07
  );
  border: 1px solid #a55d07;
  color: rgb(120, 50, 5);
  text-shadow: 0 2px 2px rgba(250, 227, 133, 1);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background-size: 100% 100%;
  background-position: center;
}

.golden-button:focus,
.golden-button:hover {
  background-size: 150% 150%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23),
    inset 0 -2px 5px 1px #b17d10, inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
  border: 1px solid rgba(165, 93, 7, 0.6);
  color: rgba(120, 50, 5, 0.8);
}

.golden-button:active {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(110, 80, 20, 0.4),
    inset 0 -2px 5px 1px #b17d10, inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
}
