
/* Preloader container */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* Background color during loading */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it overlays other content */
  }
  
  /* Dot styling */
  .dot {
    width: 15px;
    height: 15px;
    margin: 0 5px;
    background-color: #00ff00; /* Green color */
    border-radius: 50%;
    animation: pulse 1s infinite ease-in-out;
  }
  
  /* Animation for pulsing effect */
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.5);
      opacity: 0.5;
    }
  }
  
  /* Staggering the animation for each dot */
  .dot:nth-child(1) {
    animation-delay: 0s;
  }
  .dot:nth-child(2) {
    animation-delay: 0.1s;
  }
  .dot:nth-child(3) {
    animation-delay: 0.2s;
  }
  


.about-text {
    font-family: 'Arial', sans-serif;
}


.icon-card h5 {
    margin-top: 10px;
    font-family: 'Arial', sans-serif;
}
h5{
    color: black;
}
.project-section{
    background-image: url(img/blash.jpg);
}


#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    width: 40px;
    height: 40px;
    background-color: #000;
    color: #af1b1b;
    text-align: center;
    line-height: 40px;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    z-index: 9999; 

}

#back-to-top:hover {
    background-color: #555;
}

.ai-section {
    background-color: white;
    padding: 20px;
    text-align: center;
}
.ai-section h1 {
    font-size: 2em;
}
.ai-section p {
    font-size: 1.2em;
}

.ai-section{
    text-align: center;
}
.ai-section .benefit {
    font-size: 1.2em;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ai-section .benefit img {
    margin-right: 10px;
}
.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin: 20px 0;
  }
  .count-box {
    background-color: #007bff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2)
}

.carde h1 {
    color: blue;
    text-align: center;
}
.carde ul {
    list-style-type: none;
    padding: 0;
}
.carde ul li {
    text-align: auto;
    margin: 10px 0;
}
#typed-output {
    font-size: 24px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    color: black;
  }
.bordered-column {
    border: 1px solid #090808; /* Change the color as needed */
    padding: 8px; /* Optional: Add padding for better spacing */
    border-radius: 15px; /* Optional: Add rounded corners */
}
.m-0{
    font-size: large;

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}
.contact-info div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-info i {
    font-size: 16px;
}



    
    @media (max-width: 600px) {
    .m-0 {
        font-size: 1.5em;
        padding: 5px;
    }
}

@media (max-width: 400px) {
    .m-0 {
        font-size: 1em;
        padding: 3px;
    }
}
}
