@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=League+Spartan: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=Space+Grotesk:wght@300..700&display=swap');
 

.nav-link, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show{ 
    color:#19d0e0;
    font-weight: 800;
    margin: 0 5px;
}

  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translateX(-40px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .fade-in-left {
    animation: fadeInLeft 1s ease-out forwards;
  }

  .fade-in-delay-1 {
    animation-delay: 0.3s;
  }

  .fade-in-delay-2 {
    animation-delay: 0.6s;
  }
 




  /* Optional: smoother scrollbar style */
.d-flex::-webkit-scrollbar {
    height: 8px;
  }
  .d-flex::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
  }
  








 
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0; /* Hidden by default for animation */
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
 




/* About Us Section Styling */
.about-us {
    background-color: #fff;
    padding: 50px 0;
    color:#fff;
  }
  
  .about-us h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff; /* Primary blue */
  }
  
  .about-us h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
  }
  
  .about-us p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
  }
  
  .about-us .lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #444;
  }
  
  @media (max-width: 767px) {
    .about-us h1 {
      font-size: 2rem;
    }
    .about-us h3 {
      font-size: 1.5rem;
    }
  }

  
.bg-one{
    padding:1rem 0rem;
        background-image: -webkit-linear-gradient(145deg, rgb(35, 204, 136) 0%, rgb(142, 207, 53) 100%) !important;
    box-shadow: 0px 8px 30px 0px rgba(38, 204, 133, 0.36) !important;
color:#fff !important;
}
.bg-two{
    padding:1rem 0rem;
        background-image: -webkit-linear-gradient(145deg, rgb(255, 79, 88) 0%, rgb(255, 180, 0) 100%) !important;
color:#fff !important;
}
.bg-three{
    padding:1rem 0rem;
        background-image: -webkit-linear-gradient(145deg, rgb(232, 90, 202) 0%, rgb(252, 78, 101) 100%) !important;
color:#fff !important;
}
.bg-four{
    padding:1rem 0rem;
        background-image: -webkit-linear-gradient(145deg, rgb(1, 203, 173) 0%, rgb(71, 161, 242) 100%) !important;
color:#fff !important;
}



/* Counter Section Styling */
.counter-section {
    background-color: #FFE6E7;
    padding: 50px 0;
  }
  
  .counter-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-bottom: 5px solid #0b185f ;
  }
  .counter-box:nth-child(2){
       border-bottom: 5px solid #000;
  }
  
  .counter-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #19d0e0;
    margin-bottom: 10px;
  }
  
  .counter-box p {
    font-size: 1.1rem;
    color: #555;
  }
  
  .counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsive layout */
  @media (max-width: 767px) {
    .counter-box h2 {
      font-size: 2rem;
    }
    .counter-box p {
      font-size: 1rem;
    }
  }
  









 /* Custom List Item Styling */
.list-item {
    font-size: 1.2rem; /* Increase font size for better readability */
    font-weight: 500; /* Slightly bold for emphasis */
    padding: 10px 0;
    transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: center; /* Vertically align icon and text */
    border-bottom: 1px solid #f1f1f1; /* Light border for separation */
  }
  
  .list-item:hover {
    transform: translateX(5px); /* Move slightly to the right on hover */
    color: #007bff; /* Change color to blue */
    background-color: #f1faff; /* Soft background color on hover */
  }
  
  .list-item i {
    font-size: 1.5rem; /* Icon size */
    color: #007bff; /* Icon color */
    margin-right: 15px; /* Space between icon and text */
  }
  
  /* Styling for the list box container */
  .list-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .list-box ol {
    margin: 0;
  }
  
  .list-box ol li:last-child {
    border-bottom: none; /* Remove border from the last item */
  }
  
  /* Hover effects */
  .list-item:hover i {
    color: #0056b3; /* Darker blue for the icon on hover */
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 767px) {
    .list-item {
      font-size: 1rem;
      padding: 8px 0;
    }
  
    .list-item i {
      font-size: 1.2rem;
    }
  }
  

.feature-box {
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid #895608;
}
  
  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left-color: #000;
  }
  
  .feature-box h5 {
    color: #0b185f;
  }
  
  @media (max-width: 767px) {
    .feature-box {
      text-align: center;
    }
  }
  




  .brand-marquee-wrapper {
    position: relative;
    /* height: 80px; */
  }
  
  .brand-marquee {
    display: flex;
    white-space: nowrap;
    animation: scroll-marquee 30s linear infinite;
  }
  
  .brand-item img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
  }
  
  @keyframes scroll-marquee {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
 


  /* Marquee Scroll */
.brand-marquee-wrapper {
    /* height: 140px; */
    position: relative;
  }
  
  .brand-marquee {
    display: flex;
    white-space: nowrap;
    animation: scroll-marquee 25s linear infinite;
  }
  
  @keyframes scroll-marquee {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Circle Image Container */
  .brand-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #000;
    border: 3px solid #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  
  .brand-circle img {
    width: 60%;
    height: auto;
    object-fit: contain;
  }
  
  .brand-circle:hover {
    transform: scale(1.05);
  }
  
  .certificate-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    background: white;
  }
  
  .certificate-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  #certificates img {
    
    width: 100%;
    height: 100%;
    height: 600px;
     
  }
  
  @media screen and (max-width:768px) { 
    #certificates img{ 
      height: auto;
    }
  }

  .roadmap-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
  }
  .roadmap-center-icon {
    background: url('https://trillioner.io/token/logo.svg') no-repeat center;
    background-size: contain;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
  }
  .roadmap-item {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid #2a2a2a;
  }
  .roadmap-item:hover {
    background-color: #262626;
  }
  .roadmap-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fbc02d;
  }
  .roadmap-date {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color:#fff;
  }
  
  .roadmap-desc {
    font-size: 18px;
    color: #ccc;
    font-family: system-ui;
  }

  .social a{ 
    color: #fff;
    background-color: #000;
    width: 40px;
    height: 40px;
    display: inline-block;
    font-size: 25px;
    text-align: center;
    border-radius: 50%;
    line-height: 40px;

  }

 .top-box{
  /*margin-top: -100px;*/
    overflow: hidden;
    z-index: 11;
    position: relative;
 }


 @keyframes pulseImage {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

.hero img {
  animation: pulseImage 6s ease-in-out infinite;
}

.card-title {
    margin-bottom: var(--bs-card-title-spacer-y);
    color: var(--bs-card-title-color);
    font-weight: 900;
    font-family: inherit;
}


p, li {
    font-family: CA SAYGON !important;
}

h1, h2, h3, h4, h5{ 
    font-family: Breul Grotesk !important;
    font-weight:900 !important;
}


@media screen and (max-width:768px) { 
    .top-box{ 
        margin-top:0px ;
    }
    
    .hero img{ 
        height:300px !important;
    }
}