* {
    margin: 0%;
    padding: 0%;
    overflow: visible;
  scroll-behavior: smooth;
  }
  
  a {
    text-decoration: none;
  }
  
  /* color */
  .bg-main {
    background: #fe3a10;
    background-color: #fe3a10;
  }
  
  .bg-second {
    background: #F0F8FF;
  }
  
  .orchid{
    background: rgba(190, 101, 235, 0.2);
    min-height: 50vh;
    height: 100vh;
  }
  
  .shadow-text{
    text-shadow: 2px 2px 5px #1d2c43;
  }
  
  body,
  html {
    overflow: visible;
  }
  ::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to top right, #fe3a10 50%, #1d2c43);
  border-radius: 10px;
  animation: gradientAnimation 5s ease infinite alternate;
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
  .bubbles {
    overflow: hidden;
    animation: rotate-bubble 15s infinite;
  }
  
  .bubbles img {
    object-fit: contain;
  
  }
  
  @keyframes rotate-bubble {
    0% {
      transform: translateY(10%) scale(1) rotateZ(0deg);
    }
  
    50% {
      transform: translateY(-10%) scale(.9) rotateZ(-2deg);
    }
  
    100% {
      transform: translateY(10%) scale(1) rotateZ(0deg);
    }
  }
  
  @keyframes rotate-bubble-mobile {
    0% {
      transform: translateX(10%) scale(1) rotateZ(0deg);
    }
  
    50% {
      transform: translateX(-10%) scale(.9) rotateZ(-2deg);
    }
  
    100% {
      transform: translateX(10%) scale(1) rotateZ(0deg);
    }
  }
  
  .main {
    position: relative;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
  }
  .main::-webkit-scrollbar{
    display: none !important; /* For Chrome, Safari and Opera */
  }
  .scroll-sec{
    scroll-snap-align: center;
  }
  .nav {
  
    transition: 0.3s ease-in-out;
    padding-top: 0;
    background: #000;
  }
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    z-index: 10;
  }
  
  .logo img {
    width: 100%;
    object-fit: contain;
  }
  
  .nav-item button,
  button {
    padding: 8px 12px;
    border-radius: 5px;
    border: none;
    color: #ffffffff;
    transition: all 0.24s linear;
  }
  
  button:hover {
    background-color: #1d2c43;
  }
  .register{
    display: none;
  }
  .link{
    cursor: pointer;
    transition: all 0.2s linear;
  }
  .link:hover{
    background-color: #1d2c43;
  }
  .nav-item .nav-link {
    background: transparent;
    color: #000;
    font-weight: 400;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #fe3a10 40%, #1d2c43);
    transform-origin: bottom center;
    transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  
  .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom center;
  }
  #scroll-indicator {
    position: fixed;
    top: 107px;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, #fe3a10 40%, #1d2c43);
    z-index: 1000; /* Ensure it's above other content */
    transition: width 0.3s ease-in-out;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  #curve1 {
    position: absolute;
    z-index: 1;
    pointer-events: none;
      transform: translate(-50%, -50%);
    
  }
  
  #curve2 {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    display: none;
    top: 20px;
    transform: scale(2);
  }
  
  #curve3 {
    position: absolute;
    top: -80px;
    left: 0%;
    transform: scale(1);
    z-index: 1;
    pointer-events: none;
  }
  
  .banner {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    position: relative;
  
  }
  
  .text-container {
    display: flex;
    flex-direction: column;
  }
  
  .banner-text {
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 600;
    font-size: 2.5rem;
    text-wrap: wrap;
  }
  
  .banner-text::after {
    content: '';
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 12px; */
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(to bottom left,#fe3a10, #1d2c43);
    /* Green */
    animation: banner 3s linear 2s forwards;
  }
  @keyframes banner {
    0% {
      width: 0%;
      height: 100%;
      bottom: 0%;
    }
  
    25% {
      width: 100%;
      height: 100%;
    }
  
    50% {
      width: 100%;
      height: 2%;
      bottom: 0;
    }
  
    100% {
      width: 30%;
      height: 2%;
      bottom: 0;
    }
  }
  
  .banner-sub-text {
    color: #7d7d7d;
    text-overflow: ellipsis;
  }
  
  .banner-image {
    z-index: 1;
    /* max-width: 100%; */
    display: flex;
    align-items: center;
    justify-self: center;
    width: 300px;
    overflow: hidden;
    border-radius: 50% 50% 0 0;
    border: 2px solid #1d2c43;
  }
  
  .banner-image img {
    z-index: 1;
    width: 300px;
    height: auto;
    object-fit: contain;
  }
  
  .text-heading {
    font-size: 2.3rem;
    font-weight: 600;
  }
  
  .content {
    background: rgba(240, 248, 255, 0.729);
    border: 1px solid #ececec;
    transition: all 0.2s ease-in;
  }
  .content:hover{
    box-shadow: 1px 1px 10px 3px rgba(0, 0, 0, 0.23);
  }
  .logo-name {
    background: linear-gradient(to bottom, #fe3a10 50%, #1d2c43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
  }
  
  .icon {
    border-radius: 50%;
    background: #fe3c1038;
  }
  
  .card {
    transform: scale(1);
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  }
  
  .card:hover {
    box-shadow: 0px 0px 15px 10px #00000032;
  }
  
  .wrapper {
    max-width: 1100px;
    width: 100%;
    position: relative;
  }
  
  .wrapper i {
    top: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
    z-index: 1;
  }
  
  .wrapper i:active {
    transform: translateY(-50%) scale(0.85);
  }
  
  .wrapper i:first-child {
    left: -22px;
  }
  
  .wrapper i:last-child {
    right: -22px;
  }
  
  .wrapper .carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 6px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  
  .carousel::-webkit-scrollbar {
    display: none;
  }
  
  .carousel.no-transition {
    scroll-behavior: auto;
  }
  
  .carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }
  
  .carousel.dragging .solution-card {
    cursor: grab;
    user-select: none;
  }
  
  .carousel :where(.solution-card, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .carousel .solution-card {
    scroll-snap-align: start;
    height: 342px;
    list-style: none;
    background: #fff;
    cursor: pointer;
    padding: 15px;
    padding-bottom: 15px;
    flex-direction: column;
    border-radius: 8px;
    border: 1px solid #ececec;
  }
  
  .carousel .solution-card .img {
    background: #8B53FF;
    height: 148px;
    width: 148px;
    border-radius: 50%;
  }
  
  .solution-card .img img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
  }
  
  .carousel .solution-card h2 {
    font-weight: 500;
    font-size: 1.56rem;
    margin: 30px 0 5px;
  }
  
  .carousel .solution-card span {
    color: #6A6D78;
    font-size: 1rem;
  }
  
  .news-letter {
    position: relative;
    overflow: hidden;
  }
  
    .about{
        background: url("../images/banner1.jpg") no-repeat 50% 50%;
        width: 100%;
        min-height: 60vh;
        object-fit: cover;
        position: relative;
        background-size: cover;
    
    }
  .blakish-overlay{
    position: absolute;
    opacity: 1;
    width: 100%;
    height: 100%;
      visibility: visible; 
      background-color: rgba(0, 0, 0, 0.65);
  }
  .objective-cards .card{
    background: linear-gradient(to bottom left, #fe3a10,#1d2c43 90%);
    color: #ffffff;
  }
  
  footer {
    display: grid;
    place-items: center;
    height: auto;
  }
  
  .footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
    flex-direction: row;
  }
  
  .footer-item-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
  }
  
  .footer-item {
  
    /* display: flex;
      align-items: center;
      justify-content: center; */
    width: 100%;
    height: 300px;
    padding: 10px;
  }
  
  /* social media */
  .instagram-icon {
    width: 20px; /* Adjust size as needed */
    height: 20px; /* Adjust size as needed */
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Instagram_icon.png/1024px-Instagram_icon.png');
    background-size: cover;
  }

  .facebook-icon {
    width: 20px; /* Adjust size as needed */
    height: 20px; /* Adjust size as needed */
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/5/51/Facebook_f_logo_%282019%29.svg');
    background-size: cover;
  }

  .linkedin-icon {
    width: 20px; /* Adjust size as needed */
    height: 20px; /* Adjust size as needed */
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/c/ca/LinkedIn_logo_initials.png');
    background-size: cover;
  }

  /* responsive code */
  @media only screen and (max-width: 768px) {
    .banner {
      flex-direction: column-reverse;
      height: auto;
    }
  
    .bubbles {
      animation: rotate-bubble-mobile 15s infinite;
      rotate: 90deg;
  
    }
  
    .text-container {
      align-items: center;
      justify-content: center;
    }
  
    .center {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    #curve1 {
      display: none;
    }
  
    #curve2 {
      display: block;
    }
  
    .banner-text {
      text-align: center;
      font-size: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .banner-sub-text { 
      width: 300px;
      display: none;
    }
    .sub-text{
      display: none;
    }
    .orchid{
      height: 60vh;
    }
    
    .footer {
      flex-direction: column;
    }
    .footer-item{
      height: auto;
    }
    .register{
      display: block;
    }
    #scroll-indicator{
      top: 112px;
    }
  }
  
  @media screen and (max-width: 900px) {
    .wrapper .carousel {
      grid-auto-columns: calc((100% / 2) - 6px);
    }
  }
  
  @media screen and (max-width: 600px) {
    .wrapper .carousel {
      grid-auto-columns: 100%;
    }
  
    .carousel .solution-card {
      scroll-snap-align: center;
    }
  }
  
  
  /* REVEAL ANIMATION */
  .reveal {
    position: relative;
    transform: translateX(200px);
    opacity: 0;
    transition: 2s all ease;
  }
  
  .reveal.active {
    transform: translateX(0);
    opacity: 1;
  }
  
  .revealY {
    position: relative;
    transform: translateY(200px);
    opacity: 0;
    transition: 2s all ease;
  }
  
  .revealY.activeY {
    transform: translateY(0);
    opacity: 1;
  }
  
  .revealZ {
    position: relative;
    transform: translateZ(-200px);
    opacity: 0;
    transition: 2s all ease;
  }
  
  .revealZ.activeZ {
    transform: translateX(0);
    opacity: 1;
  }
