*{
    margin: 0;
    padding: 0;
    /* border: 2px solid green; */
}
@font-face {
  font-family: "Babylon5";
  src: url("./fonts/B5______.woff") format("woff");
  font-weight: 400;  
  font-style: normal;
  font-display: swap; 
}
@font-face {
  font-family: "impact";
  src: url("./fonts/impact.woff") format("woff");
  font-weight: 400;  
  font-style: normal;
  font-display: swap; 

}
@font-face {
  font-family: "AVC";
  src: url("./fonts/AcuminVariableConcept.woff2") format("woff2");
  font-weight: bolder;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AVC";
  src: url("./fonts/AcuminVariableConcept.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}



body, html{
  /* background-color: black !important; */
  /* font-family: "AptosDisplay", sans-serif; */
  overflow-x: hidden;
   /* background: radial-gradient(rgba(0, 0, 0, 0.144), rgba(0, 0, 0, 0.918)), url('../Assets/bg-2.png') no-repeat center center/cover; */

}

.heading{
   font-family: "AVC";
    font-size: 4em;
    font-weight:600;
    letter-spacing: 1px;
    color: rgb(165, 163, 163);
}

/* ---------------- NAVBAR ---------------- */
.custom-nav {
  background: linear-gradient(150deg, rgb(32, 31, 31) 38%, #fff 60%, white 90%);
  padding: 12px 25px;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  align-items: center;
  justify-content: space-between;

}
@media (max-width: 768px) {
.custom-nav {
  background: none;
}

}

.custom-nav .navbar-brand img {
  height: 75px;
}

/* Small screen ke liye */
@media (max-width: 768px) {
  .custom-nav .navbar-brand img {
    height: 50px;
  }
}

.custom-nav .dropdown {
  position: relative;
}

/* Dropdown indicator */
.custom-nav .dropdown-icon {
  float: inline-end;
font-size: 1em;
    margin-left: 0px;
  color: #ff6600;
  transition: transform 0.3s ease, color 0.3s ease;
  
}

.custom-nav .dropdown-toggle:hover .dropdown-icon {
  color: #e55a00;
}



/* Desktop Links */
.custom-nav .nav-link {
  font-family: "AVC";
  font-size: 1.2rem;
  font-weight: bolder;
  /* font-size: 15px; */
  position: relative;
  color: black !important;
  font-weight: 500;
  display: inline-block;
  padding: 10px 35px;
  transition: transform 0.15s ease-out, color 0.3s;
}
.custom-nav .nav-link:hover {
color: #ff6600 !important;
}

.custom-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ff660000;
    color: #00000000;
    transition: 0.3s ease;
    transform: translateX(-50%);
}
.custom-nav .dropdown-toggle:hover {
color: #ff6600 !important;
}

/* ---------------- HAMBURGER ---------------- */
.custom-nav .navbar-toggler {
  border: none !important;
  outline: none !important;
  padding: 0;
  display: none; /* hidden on desktop */
  background: transparent;
  box-shadow: none !important;
  z-index: 9999;
}

.custom-nav .navbar-toggler .bar {
  width: 30px;
  height: 3px;
  background: #ff6600;
  display: block;
  margin: 6px 0;
  border-radius: 2px;
  transition: 0.4s;
}

/* ---------------- DROPDOWN ---------------- */
.custom-dropdown {
  background: #0a0a0a !important;
  border: 2px solid #ff6600;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  min-width: 280px;
  padding: 15px 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;

}

.custom-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

@keyframes fadeInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.custom-dropdown .dropdown-item {
  color: #fff;
  padding: 15px 25px;
  font-family: "AVC";
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.custom-dropdown .dropdown-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.4), transparent);
  transition: left 0.6s ease;
}

.custom-dropdown .dropdown-item:hover::before {
  left: 100%;
}

.custom-dropdown .dropdown-item:hover {
  background: rgba(255, 102, 0, 0.3);
  color: #ff6600;
  transform: translateX(15px) scale(1.05);
  text-shadow: 0 0 15px rgba(255, 102, 0, 0.8);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

/* ---------------- MOBILE MENU ---------------- */
@media (max-width: 991px) {

  /* Show hamburger */
  .custom-nav .navbar-toggler {
    display: block;
  }

  /* Hide desktop collapse */
  #navMenu {
    position: absolute;
    top: 100px;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.959);
    padding: 20px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    text-align: center;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s ease;
  }

  #navMenu ul li {
    margin: 12px 0;

  }

  /* Toggle active menu */
  #navMenu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Hamburger animation */
  .navbar-toggler.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .navbar-toggler.active .bar:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggler.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Hide desktop nav links */
  .navbar-nav {
    text-align: center;
    width: 100%;
  }

  /* Mobile dropdown */
  .custom-nav .dropdown-menu {
    background: #000;
    border: 2px solid #ff6600;
    border-radius: 10px;
    position: fixed;
    top: 120px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: none;
  }

  .custom-nav .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    display: block;
     padding-bottom: 80px;
  }

  .custom-nav .dropdown-item {
    color: #fff;
    padding: 15px 20px;
    font-size: 1rem;
  }

  .custom-nav .dropdown-item:hover {
    background: rgba(255, 102, 0, 0.3);
    color: #ff6600;
    transform: none;
  }
}
/* @media (max-width: 768px) {
  .custom-nav .dropdown-menu {    

    height: 35px;
  }

} */
 /* ---footer---- */
  .footer-section {
      background: #000;
      color: #eee;
      font-family: 'AVC', sans-serif;
      padding: 60px 0px 30px 0px;
    }

    .footer-col {
      padding-left: 30px;
    }

    .footer-logo {
      /* font-size: 32px; */
      font-weight: 700;
      letter-spacing: 1px;
    }
    .footer-logo .ftlogo1 {
      max-width: 25%;
      height: auto;
      display: inline;
    }

 

    .footer-logo .ftlogo2 {
      max-width: 50%;
      margin-top: 35px;
      height: auto;
    }

       @media (max-width: 768px) {
  .footer-logo .ftlogo1 {    
    display: block;
  }
   .footer-logo .ftlogo2 {
      margin-top: 0;
      
    }

}
    .footer-menu {
      margin-top: 20px;
    }

    .footer-menu .sideline {
      border-right: 2px solid rgb(255, 115, 0);
    }

    .footer-title {
      width: 250px;
      font-size: 20px;
      font-weight: 500;
      margin-bottom: 10px;
    }

    .footer-address,
    .footer-small {
      font-size: 14px;
      line-height: 1.6;
    }

    .footer-list {
      list-style: none;
      padding-left: 0;
      width: 300px;
        
    }

    .footer-list li {
      font-size: 14px;
      margin-bottom: 4px;
      opacity: 0.8;
      
    }
    .lh{
  line-height: 2;
    }

    .footer-bottom {
      /* border-top: 1px solid rgba(255, 166, 0, 0.4); */
      padding-top: 20px;
      margin-top: 30px;
    }

    .footer-bottom-link {
      font-size: 13px;
      color: #eee;
      /* opacity: 0.6; */
      text-decoration: none;
    }

    .footer-bottom-link:hover {
      opacity: 1;
    }


    /* ========================================
       RESPONSIVE FONT SIZE UTILITIES ADDED
       (YOUR HTML NOW WORKS PERFECTLY)
       ======================================== */

    /* Small Screens (mobile) */
    @media (max-width: 576px) {
      .fs-sm-6 { font-size: 13px !important; }
      .fs-sm-5 { font-size: 14px !important; }
      .fs-sm-4 { font-size: 16px !important; }

      .footer-section {
        padding: 30px 0px 15px 0px;
      }

      .footer-col {
        padding-left: 15px;
      }

      .footer-bottom {
        text-align: center;
      }

      .footer-bottom .col-md-4 {
        margin-bottom: 10px;
        border: none !important;
      }

      .footer-bottom-link {
        display: block;
        padding: 5px 0;
        border: none !important;
      }
    }

    /* Medium Screens (tablet) */
    @media (min-width: 577px) and (max-width: 768px) {
      .fs-md-6 { font-size: 14px !important; }
      .fs-md-5 { font-size: 16px !important; }
      .fs-md-4 { font-size: 18px !important; }

      .footer-section {
        padding: 40px 0px 20px 0px;
      }

      .footer-col {
        padding-left: 20px;
      }
    }

    /* Large Screens (desktop) */
    @media (min-width: 769px) {
      .fs-lg-6 { font-size: 16px !important; }
      .fs-lg-5 { font-size: 18px !important; }
      .fs-lg-4 { font-size: 22px !important; }
    }
