
* {
  user-select: none;
}
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black !important;
    color: #fff;
    text-align: center;
    overflow-x: hidden;
}
.margin_top{
  margin-top:30px;
}
.container {
    padding-top: 50px;
    padding-bottom: 100px;
}

.logo {
    /* font-size: 3rem;
    font-weight: bold; */
    color: #fff;
    margin-bottom: 10px;
}

.logo span {
    color: silver;
}

.description {
    font-size: 1.2rem;
    max-width: 700px;
    /* margin: 20px auto; */
    line-height: 1.5;
    color:#ffff;
    margin: 0px;
    padding: 0px;
    font-size: 17px;
    margin-top: 10px !important;
}
.description-ar-vr {
  font-size: 1.2rem;
  max-width: 100%;
  /* margin: 20px auto; */
  line-height: 1.5;
  color:#ffff;
  margin: 0px;
  padding: 0px;
  font-size: 17px;
  margin-top: 10px !important;
}
.underline_head{
  padding-bottom: 3px;
  border-bottom: 4px solid #fff;
  width:51%;
  margin:auto;
  margin-top: 7px;
}
.underline_head_service{
  padding-bottom: 3px;
  border-bottom: 4px solid #fff;
  width:15%;
  margin:auto;
  margin-top: 7px;
}
 .service_div{
  width:50%;
  margin:auto;
 }

.scroll-image {
    opacity: 0;
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
    max-width: 100%;
    margin:auto;
    margin-top: 30px;
    width:70%;
}

.scroll-image.visible {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

.contact-button {
    /* position: absolute;
    top: 10px;
    right: 10px; */
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #fff !important;
    color: black;
    background: none;
    cursor: pointer;
    text-decoration: none;
}

.contact-button:hover {
    background: #ffff;
}
.logo_top{
  width: 69px;
  margin: auto;
}
.logo_div{
    text-align: left;
}
.button_div{
    text-align: right;
}
.name_logo{
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap:10px;
}
.name-second{
    background-image: url(/assets/images/name-logo-main.png);
    background-size: 128%;
    background-repeat: no-repeat;
    background-position: 50% 65%;
    background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    /* color: rgb(136, 136, 136); */
    color:#ffff;
    font-size: 50px;
    font-family: Satoshi, sans-serif;
    font-style: normal;
    font-weight: 900;
    text-align: center;
    letter-spacing: 5px;
    white-space: normal;
    line-height: 1;
    margin: 0px;
    padding: 0px;
}
.name_p{
  font-size:20px;
}
.carousel {
    overflow: hidden;
    /* width: 80%;
    max-width: 600px;
    position: relative; */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    -webkit-transition: transform 0.5s ease;
}

.card {
    min-width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    background-color: #4caf50;
    transition: filter 0.3s ease;
    /* filter: grayscale(100%); */
    cursor: pointer;
}

/* .card.active,
.card:hover {
    filter: none;
} */
.image-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
/* Styling each image container */
.image-container {
    position: relative;
    width: 32%;
    overflow: hidden;
    border-radius: 8px;
}
/* Image styling to make it black and white initially */
.image-container img {
    width: 100%;
    transition: 0.5s;
    filter: grayscale(100%);
}
/* Overlay text styling */
.overlay-text {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    color: white;
    font-size:14px;
    opacity: 0;
    transition: opacity 0.5s;
    width:100%;
}
/* Hover effect: bring color back to the image and display overlay text */
.image-container:hover img {
    filter: grayscale(0%);
}
.image-container:hover .overlay-text {
    opacity: 1;
}

.language-section{
    /* width:80%;
    margin:auto;
    position:relative;
    top:20%; */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
animation:scroll-animation linear ;
animation-timeline: view();
animation-range: entry 0% cover 40%;
}
@keyframes scroll-animation{
  from{
      opacity: 0;
      scale:0.5;
  }
  to{
      opacity: 1;
      scale:1
  }
}
.main-text {
    /* position: relative;
    top: 10%;
    left: 50%;  */
    /* transform: translate(-50%, -50%);
    font-size: 5em;
    color: #CCCCCC;
    z-index: 1; */
    position: relative;
            /* top: 50%;
            left: 50%; */
            /* transform: translate(-50%, -50%); */
            margin-top:10%;
            font-size: 5em;
            color: #CCCCCC;
            z-index: 1;
}

/* Background text with scrolling effect */
.background-text {
    font-size:15px;
            color: rgba(255, 255, 255, 0.1);
            text-align: center;
            pointer-events: none; /* Prevent interaction */
            position: sticky;
            top: 0;
            line-height: 2em;
            width: 100%;
            animation: scrollText 20s linear infinite;
    /* position: relative;
    top: 10%; */
    /* width: 100%;
    font-size: 2em;
    color: rgba(255, 255, 255, 0.1);
    text-align: center;
    animation: scrollText 20s linear infinite;
    z-index: 0;
    pointer-events: none;  */
    /* Prevent interaction */
}
.scroll-section {
    height: 348px;
    padding-top: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Keyframe for scrolling effect */
@keyframes scrollText {
    0% { 
      transform: translateY(100%);
      -webkit-transform: translateY(100%);
     }
    100% {
       transform: translateY(-100%);
       -webkit-transform: translateY(-100%);
       }
}
.language_div{
    display:flex;
    flex-direction:row;
    gap:20px;
 
}
.p_language{
    /* color:#7a7777; */
    color:#ffff;
}
#lightEffect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff5f6d, #ffc371); /* Lighting gradient */
    transition: all 10s ease;
  }
  
  /* Class to trigger the line effect */
 .line-effect {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }


  .lighting-effect {
  
    width: 100%;
    height: 100%;
    background-color: #FFD700;
    transition: all 2s ease-in-out; 
    z-index: 0;
} 

/* Lighting effect shrinking to a line */
.lighting-effect.shrink {
    width: 100%;
    height: 4px; /* Adjust this to control the line thickness */
    top: 50%; /* Center vertically */
    left: 0;
}

/* Main content appears after the lighting effect */
.main-content-lighting {
    position: relative;
    color: white;
    font-size: 2em;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease-in-out;
}

/* Main content fades in after the lighting effect */
.main-content-lighting.show {
    opacity: 1;
}

.induction_head{
    color:#ffff;
    font-size:25px;
    margin:0px;
    padding:0px;
}
.induction_p{
    color:#ffff;
    font-size:1px;
    margin-top:10px;
    margin-bottom: 10px;
}
.marquee-container {
    position: relative;
    width: 100%; /* Adjust width as needed */
    height: 180px; /* Adjust height as needed */
    overflow: hidden;
    /* border: 1px solid #000; */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  /* Text Style */
  .marquee-text {
    position: absolute;
    opacity: 0;  /* Start as invisible */
    animation: showHideText 9s linear infinite;
    color:#ffff;
    font-size: 66px;

  }

  @keyframes showHideText {
    0%, 12.5% { opacity: 0; }      
    12.5%, 25% { opacity: 1; }    
    25%, 100% { opacity: 0; }    
  }

  /* Delay for each text */
  .marquee-text:nth-child(1) { animation-delay: 0s; }
  .marquee-text:nth-child(2) { animation-delay: 20s; }
  .marquee-text:nth-child(3) { animation-delay: 40s; }
  .marquee-text:nth-child(4) { animation-delay: 60s; }
  .marquee-text:nth-child(5) { animation-delay: 80s; }
  .marquee-text:nth-child(6) { animation-delay: 100s; }
  .marquee-text:nth-child(7) { animation-delay: 120s; }
  .marquee-text:nth-child(8) { animation-delay: 140s; }
  .marquee-text:nth-child(9) { animation-delay: 160s; }
  .marquee-text:nth-child(10) { animation-delay: 180s; }

  .induction-div{
    width: 74%;
    margin: auto;
    margin-top:50px;
    margin-bottom:100px;
  }
.know_more{
    border:none;
    background-color:transparent;
    border-bottom:1px solid #b0b0ba;
    color:#ffff;
    font-weight: 400;
    width: 132px;
    margin: auto;
    text-decoration: none;
    font-weight: 600;

}
.know_more:hover{
    color:#b0b0ba !important;
}
.side_ai{
    color:black !important;
    margin-top:10px;
    margin-bottom:10px;
    font-size: 15px;
    text-decoration: underline;
}

.side_p{
    color:#ffff !important;
    width:70%;
    margin:auto;
    margin-top:5px;
    margin-bottom:5px;
}
.side_p_ai{
  color: black !important;
  width: 91%;
  margin: auto;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 13px;
}
.card_body{
    display:flex;
    gap:20px;
    flex-direction: row;
    width:60%;
    margin:auto;
}
.card_one{
    background-color:#fff;
    border-radius: 10px;
    width:60%;
    margin:auto;
    padding:10px;
    margin-top:20px;
    margin-bottom:20px;
}
.card_head{
    font-size:24px;
}
.card-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
  
  .card-1 {
    width: 460px;
    height: 300px;
    background-color: #ffff;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    opacity: 1;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    animation: slideIn 0.5s forwards;
    padding: 10px;
    margin-top:10px;
    margin-bottom:10px;
  }
  .card_p{
    margin-top:15px;
  }
  .card-1:nth-child(1) {
    animation-delay: 0.2s;
  }
  
  .card-1:nth-child(2) {
    animation-delay: 0.4s;
  }
  
  .card-1:nth-child(3) {
    animation-delay: 0.6s;
  }
  
  @keyframes slideIn {
    to {
      transform: translateX(0);
      -webkit-transform: translateX(0);
      opacity: 1;
    }
  }

  
  .card-1.visible {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    opacity: 1;
  } 

  .cart-section {
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    margin-top: 20px;
  }
  
  .cart-section.open {
    opacity: 1;
  }
  
  .cart {
    width: 200px;
    height: 200px;
    background-color: #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    position: relative;
    transition: transform 0.5s ease-in-out;
    -webkit-transition: transform 0.5s ease-in-out;
  }
  
  .left {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
  
  .right {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
  }
  
  .cart-content {
    font-size: 16px;
    color: #333;
  }
  
  .cart.left.slide-in-left {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  
  .cart.right.slide-in-right {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  /* navbar */
  header {
    width: 100%;
    background: black;
    position: sticky;
    top: 0px;
    z-index: 99;
  }
  .main_blur{
    width:50px;
    height:50px;
    background-color: #000814;
    position:relative;
    top:50%;
    /* left:20%; */
  }
  .text_top{
    position:relative;
    top:50%;
    /* left:20%; */
  }
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    color: white;
  }
  
  .logo {
    /* font-size: 1.5rem;
    font-weight: bold; */
    padding: 0px;
    margin: 0px;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    margin: 0px;
    padding: 0px;
    
  }
  
  .nav-links li {
    margin-left: 1.5rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #ddd;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px;
    border-radius: 2px;
  }
  .card_span{
    font-size: 20px;
    font-weight: 600;
  }
  .footer_img{
    width: 19%;
  }
  /* Responsive Styles */
  @media (max-width: 768px) {
    .footer_img {
      width: 48%;
  }
    .main_headding {
      padding-top: 52px;
    }
    .card-service{
      margin-top: 10px !important;
      margin-bottom: 10px !important;
    }
    .login_box_main {
      width: 90% !important;
      flex-direction: column !important;
    }
    header {
      z-index: 999 !important;
    }
    .logo {
      flex-basis: 30%;
    }
    .logo_top {
      width: 74%;
  }
  .description {
    width: 96%;
    font-size: 16px;
  }
  .service_sub {
    font-size: 12px;
}
    .nav-links {
      display: none;
      position: absolute;
      top: 100px;
      right: 0;
      background: #333;
      width: 100%;
      flex-direction: column;
      text-align: center;
    }
    
    .nav-links li {
      margin: 1rem 0;
    }
  
    .hamburger {
      display: flex;
    }
  
    .nav-links.active {
      display: flex;
      background-color: black;
      z-index: 99;
  
    }
    .container-service {
      flex-direction: column;
    }
    .container-service {
      height:621px !important;
    }
    input:checked + label {
      width: 100% !important;
    
    }
    .description p {
      font-size: 8px;
      padding:0px;
      margin:0px;
    }
    .description h4 {
      font-size: 17px;
    }
    .know_more {
      font-size: 12px;
    }
    .marquee-text {
      font-size: 49px;
    }
    .team_mobile{
      flex-direction: column-reverse !important;
    }
    .name-second {
      font-size: 26px;
    }
    .card-content-choose {
      padding:2px !important;
    }
    .card-choose h2 {
      font-size:18px !important;
    }
    .card-choose p {
      font-size: 13px !important;
    }
    .card_span{
      font-size:16px !important;
    }
    .section-team {
      flex-direction: column;
      width: 100% !important;

    }
    .card-choose {
      width:99% !important;
    }
  }


  .section-team {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    transform: translatey(50px);
    -webkit-transform: translatey(50px);
    transition: opacity 0.8s ease, transform 20s ease;
    -webkit-transition: opacity 0.8s ease, transform 20s ease;
    width: 60%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  
  .section-team.visible {
    opacity: 1;
    transform: translatey(0);
    -webkit-transform: translatey(0);
  }
  
  .image-container {
    flex: 1;
    padding: 10px;
  }
  .image-container .image-team {
   filter:grayscale(100%) !important; 
  }
  .image-team{
    filter:grayscale(100%); 
  }
  .image-team:hover{
    filter:none;
  }
  .image {
    width: 100%;
    border-radius: 10px;
  }
  
  .text-container {
    flex: 2;
    padding: 10px;
  }
  
  #animated-text {
    font-size: 1rem;
    line-height: 1.5;
  }
  .team-head{
    color:#ffff;
    font-size:20px;
  }
  .animated-text{
    color:#ffff;
    font-size:16px;
    text-align: justify;
    padding-left:20px;
  }


  .card-container-choose {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: center;
  }
  
  /* Individual card styling */
  .card-choose {
    position: relative;
    width: 47%;
    height: 409px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #00c7a1;
    animation: teamsection;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation:scroll-animation linear ;
animation-timeline: view();
animation-range: entry 0% cover 30%; */
    /* opacity: 0;
    animation: slideRight 0.5s forwards; */
  }
  @keyframes teamsection{
    0% {
      transform: translatex(100px); 
      -webkit-transform: translatex(100px); 
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: translatex(0px);
      -webkit-transform: translatex(0px);
      opacity: 1;
    }
  }
  .card-choose-p{
    margin-top:10px;
    margin-bottom: 10px;
  }
  /* Content styling inside each card */
  .card-content-choose {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .card-choose h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  
  .card-choose p {
    font-size: 1em;
    color: #ddd;
  }
  
  /* Card hover effect */
  .card-choose:hover {
    /* transform: scale(1.05); */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  }
  
  /* Fade-in animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
      -webkit-transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
      -webkit-transform: translateY(0);
    }
  }
  .service_p{
    width:96%;
    margin:auto;
  
  }
  .service_sub{
    color:#fff;
  }

  /* services */


 .wrapper {
    width: 100%;
    height: 66vh;
    align-items: center;
    justify-content: center;
    animation:apper linear ;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
    background-color: black;
    z-index:99;
}
@keyframes apper{
  from{
      opacity: 0;
      scale:0.5;
  }
  to{
      opacity: 1;
      scale:1
  }
}
.container-service {
    height: 400px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.card-service {
    width: 266px;
    border-radius: .75rem;
    background-size: cover;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2rem;
    margin: 0 10px;
    display: flex;
    align-items: flex-end;
    transition: .6s cubic-bezier(.28,-0.03,0,.99);
    box-shadow: 0px 10px 30px -5px rgba(0,0,0,0.8);
    filter: grayscale(100%); 
}
.card-service:active , .card-service:hover{
  filter:none;
}
.card-service > .row {
    color: white;
    display: flex;
    flex-wrap: nowrap;
}


.card-service > .row > .icon {
    background: #223;
    color: white;
    border-radius: 50%;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px;
}

.card-service > .row > .description {
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    height:100%;
    width:90%;
    margin: auto;
    opacity: 0;
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    transition-delay: .3s;
    -webkit-transition-delay: .3s;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.description p {

    padding-top: 5px;
    color: #ffff;
    font-weight: 400;
}

.description h4 {
    text-transform: uppercase;
    color:#00c7a1;
}

input {
    display: none;
}
input:checked + label {
  width: 600px;
  filter: none;
  position: relative; /* Required for overlay */
}

input:checked + label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.31); /* Dark overlay for better contrast */
  z-index: 1; /* Ensure it sits on top of the image */
}

input:checked + label .description {
  position: relative; /* Ensure text is above overlay */
  z-index: 2; /* Bring description in front of overlay */
  opacity: 1 !important;
  transform: translateY(0) !important;
  -webkit-transform: translateY(0) !important;
}

/* input:checked + label {
    width: 600px;
    filter: none;
} */

/* input:checked + label .description {
    opacity: 1 !important;
    transform: translateY(0) !important;
    -webkit-transform: translateY(0) !important;
} */

.card-service[for="c1"] {
    background-image: url('../images/main-background-image.jpeg');
}
.card-service[for="c2"] {
    background-image: url('../images/main-ar-vr-min.png');
}
.card-service[for="c3"] {
    background-image: url('../images/roboat-main.png');
} 
.card-service[for="c4"] {
  background-image: url('../images/ai-rain-min.png');
}
.image-heading {
  position: absolute;
  top: 1%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #ffff;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 2; /* Ensure it appears above the background */
  opacity: 0.9; /* Slight transparency for aesthetics */
  transition: all 0.3s ease; /* Smooth transition when card is opened */
}

/* Style for when the card is expanded */
input:checked + label .image-heading {
  top: 5%; /* Adjust positioning when the card expands */
  font-size: 2rem; /* Increase the font size */
  opacity: 1;
  color:#00c7a1;
}

/* Ensure the heading aligns properly with the card */
.card-service {
  position: relative; /* Allow positioning of the heading inside the card */
}
/* teamcards */

.cardBox {
  width: 300px;
  height: 400px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 11px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 10px 0px,
    rgba(0, 0, 0, 0.5) 0px 2px 25px 0px;
    background-color: #fff;
  
}

.card-team {
  position: absolute;
  width: 95%;
  height: 95%;
  background: #000814;
  border-radius: 20px;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding: 20px;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.5) 0px 18px 36px -18px inset;
}
.card-team{
  padding:0px;
}
/* .card-team .team_h2, span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 800;
  pointer-events: none;
  opacity: 0.5;
} */

/* span {
  top: 75%;
} */

/* .card-team .content h3 {
  font-size: 3rem;
  padding-bottom: 10px;
}
.card-team .content p {
  font-size: 1.6rem;
  line-height: 25px;
}
.card-team .content {
  transform: translateY(100%);
  opacity: 0;
  transition: 0.3s ease-in-out;
} */

/* .card-team:hover .content {
  transform: translateY(0);
  opacity: 1;
}

.card-team:hover .team_h2, 
.card-team:hover span {
  opacity: 0;
} */

.cardBox::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 150%;
  background: #40E0D0;
background: -webkit-linear-gradient(to right, #FF0080, #FF8C00, #40E0D0);
background: linear-gradient(to right, #FF0080, #FF8C00, #40E0D0);
  animation: glowing01 5s linear infinite;
  transform-origin: center;
  animation: glowing 5s linear infinite;
}
.image-team{
  height:100%;
}

@keyframes glowing {
  0% {
    transform: rotate(0);
    -webkit-transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
.ul_robit{
  text-align: left;
    list-style: none;
    width: 70%;
    margin: auto;
}
.li_robit{
  color: #ffff;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size:24px;
}
.ul_sub{
  font-size: 16px;;
}
@keyframes slideLeft{
  from{
    transform : translateX(100%);
    -webkit-transform : translateX(100%);
  }
}
@keyframes slideRight{
  to{
    transform : translateX(100%);
    -webkit-transform : translateX(100%);
  }
}
.img_on{
  position: relative;
    font-size: 2em;
    color: #333;
    opacity: 0;
    /* animation: scrollUp 3s ease-out forwards; */
     animation: scrollUp ease-out forwards; 
}
@keyframes scrollUp {
  0% {
    transform: translateY(-100%);
    -webkit-transform : translateY(-100%);
    opacity: 0;
  }
  20%{
    opacity: 1;
    transform: translateY(80%);
    -webkit-transform: translateY(80%);
  }
  30%{
    opacity: 1;
    transform: translateY(60%);
    -webkit-transform: translateY(60%);
  }
  50% {
    opacity: 1;
    transform: translateY(30%);
    -webkit-transform: translateY(30%);
  }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    opacity: 1;
  }
}

/* footer */

.footer {
  background-color: black;
  border-top: 1px solid gray;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer_place{
  display:flex;
  flex-direction:row;
  gap:10px;
}
.footer-place-1{
  padding-right: 14px;
    border-right: 2px solid #fff;
}
/* Grid layout for larger screens */
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    width: 90%;
    margin: auto;
  }
}

.footer-content div {
  max-width: 326px;
}

.footer-content h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #ddd;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}

.footer-content ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.footer-content ul li {
  margin: 5px 0;
}

.footer-content ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-content ul li a:hover {
  color: #aaa;
 

}

.talk-button {
  border: 1px solid #fff;
  padding: 10px 20px;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.talk-button:hover {
  background-color: #333;
}

.footer-bottom {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #888;
}

.footer-logo {
  margin-top: 20px;
  font-size: 2rem;
  color: #444;
}

.login-body{
  width: 42%;
  margin: auto;
  background-color: #fff;
  padding: 30px;
  text-align: start;
  border-radius: 10px;
}
.login_box{
  width:100%;
  height:100vh;
  display:flex;
  flex-direction:row;
  align-items: center;

}
.login_button{
  background-color: gray;
  color: #ffff;
  border: 1px solid gray;
  padding: 4px;
  width: 100%;
  text-align: center;
  margin: auto;
}
.our_product{
  font-size:19px;
}
.contact-us-box{
  position:relative;
  top:-23px;
  box-shadow: 0 0.5rem 1rem rgba(47, 91, 234, 0.15) !important;
  /* border-color: #e9e9e9; */
  border-radius: 10px;
  z-index: 9;
  background-color: #fff;
  width: 90%;
  margin: auto;
  padding:20px;
}
.box_area{
display:flex;
flex-direction:row;
gap:10px;

}
.area_1{
flex-basis:13%;
}
.place_name{
  padding:0px;
  margin:0px;
  font-size:20px;
  font-weight: 600;
}
  .login_box1{
    flex-basis: 50%;
    text-align: left;
    padding: 24px;
  }
  .login_box2{
    flex-basis: 50%;
    background-color: #e4e4e4;
    padding:50px;
  }
  .login_box_main{
    background-color:#fff;
    width:50%;
    margin:auto;
    display:flex;
    flex-direction: row;
    align-items: center;
    margin-top:30px;
    margin-bottom:30px;
  }
  .main_head{
    padding:0px;
    margin:0px;
    margin-bottom:10px;
    font-size:25px;
  }
  .login_area_1{
    display: flex;
    align-items: center;
  }
  .place_p{
   margin-top:10px;
   margin-bottom: 10px;
  }
  .place_div{
    margin-top:15px;
    margin-bottom:15px;
  }
  .footer-place-2{
    padding-right: 14px;
    border-right: 2px solid #fff;
  }
  #WhyChooseUs:active{
    margin-top: 127px !important;
  }
  .nav-link.active {
    font-weight: bold;
    border-bottom: 1px solid #ffff;
    color:#fff !important;
  }
  .main_headding{
    margin-top:20px;
  }
  .alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
  }

  .alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }

  .alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }
  /* section {
    scroll-margin-top: 100px; 
  } */