 /* Core styles */

 /* //Nav Bar */
 .nav-link {
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  gap: 2px;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff0000;
  transition: width 0.3s;
}

.nav-link:hover {
  color: #ff0000;
}

.nav-link:hover::after {
  width: 100%;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: black;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  padding: 12px;
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown a {
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {
  background-color: rgba(255,255,255,0.1);
}

/* Slides welcome section */

.slides img {
  transition: opacity 0.5s ease-in-out;
}

.dot {
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
}
.cta-button {
  background-color: #ff0000;
  transition: transform 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s all ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.tab-button {
  position: relative;
  color: #666;
  transition: color 0.3s;
}

.tab-button.active {
  color: white;
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ff0000;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.experience-card {
  transition: transform 0.3s;
}

.experience-card:hover {
  transform: translateY(-10px);
}

@media (max-width: 768px) {
  .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.95);
      transition: right 0.3s;
  }
  
  .menu-open .mobile-menu {
      right: 0;
  }
}

.placeholder{
  background: #191919;
}

/* <!-- Experience Section image frame--> */

.frame-container {
    position: relative;
    display: inline-block;
}

.main-image {
    display: block;
    width: 100%; /* Adjust width as needed */
    height: auto;
    position: relative;
    z-index: 10;
}

.border-image {
    position: absolute;
    width: 70px;  /* Adjust size */
    height: 70px; /* Adjust size */
    z-index: 5;
}

/* Positioning */
.top-left {
    top: -10px;
    left: -10px;
}

.top-right {
    top: -10px;
    right: -10px;
    transform: rotate(90deg);
}

.bottom-left {
    bottom: -10px;
    left: -10px;
    transform: rotate(-90deg);
}

.bottom-right {
    bottom: -10px;
    right: -10px;
    transform: rotate(180deg);
}
/* <!-- Experience Section image frame ends--> */



/*--------------------------------------------------------------
# Footer Styles 
--------------------------------------------------------------*/


.footer-links ul i {
   
    color: #FF0000;

}



  /* about us */
  @media (min-width: 768px) {
    .md\:sticky {
        position: sticky;
        align-self: start;
    }
}