body {
  margin: 0;
  padding: 0;
}
#nocode{
background-image: url(./ai-agents.jpg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;

}
#market{
    background-image: url( ./marketplace.jpeg ); 
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;


}
#privacy{
    background-image: url(./privacy.jpeg);
    background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
#main{
    background-image: url(./logo-nobg.png);
    background-size: 200px 250px;
    background-repeat: no-repeat;
    background-position: center;
    padding-bottom: 80px;

}
body {
  background-color: #0a0f1a;
  font-family: 'Segoe UI', sans-serif;
  color: #ffffff;
  margin: 0px;
  padding: 0px;
}

.cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 1rem;
}
@media (min-width: 768px) {
  .cards-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.card {
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid #444;
  border-radius: 10px;
  padding: 20px;
  flex: 1;
  text-align: center;
  color: white;
}

.card:hover {
  border-color: #33e1f1;
  box-shadow: 0 0 25px rgba(51, 225, 241, 0.6); /* Stronger glow on hover */
}
.icon img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}
.icon {
  background-color: #0e1f2f;
  color: #33e1f1;
  font-size: 30px;
  padding: 15px;
  border-radius: 12px;
  width: fit-content;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(51, 225, 241, 0.5); /* Icon glow */
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #cfd2dc;
  margin-bottom: 20px;
}

.card a {
  color: #33e1f1;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.card a:hover {
  text-decoration: underline;
  text-shadow: 0 0 5px #33e1f1; /* Link glow on hover */
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
}

.get-started-btn {
  @apply bg-[#00f6ff] text-black font-semibold text-sm sm:text-lg px-6 py-2 rounded-full flex items-center gap-2 shadow-lg transition duration-300 ease-in-out hover:brightness-110;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.logo img {
  width: 120px;
  height: auto;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 10px 0;
  align-items: flex-start;
}

.menu a {
  font-size: 16px;
  color: #33e1f1;
  text-decoration: none;
}

.menu a:hover {
  text-shadow: 0 0 5px #33e1f1;
}

/* Add this to your custom CSS if needed */
.glow-text {
    color: #33e1f1;
    text-shadow: 0 0 10px #33e1f1, 0 0 20px #33e1f1, 0 0 40px #33e1f1;
}

.glow-border {
    box-shadow: 0 0 10px #33e1f1, 0 0 20px #33e1f1 inset;
}

/* button */
.glow-button-container {
  text-align: center;
  margin-top: 30px;
}

.glow-button {
  padding: 12px 24px;
  background-color: transparent;
  border: 2px solid #00f0ff;
  color: #00f0ff;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  text-shadow: 0 0 10px #00f0ff;
  box-shadow: 0 0 15px #00f0ff, 0 0 30px #00f0ff inset;
  transition: all 0.3s ease;
}

.glow-button:hover {
  background-color: #00f0ff;
  color: #000;
  box-shadow: 0 0 20px #00f0ff, 0 0 40px #00f0ff inset;
}
.glow-btn {
  text-shadow: 0 0 8px #00f0ff;
  box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff inset;
  transition: all 0.3s ease-in-out;
}
/* navbar */
/* Navbar Container */


.glow-btn:hover {
  background-color: #00f0ff;
  color: #000;
  box-shadow: 0 0 20px #00f0ff, 0 0 40px #00f0ff inset;
}

.hover-glow:hover {
    box-shadow: 0 0 12px #00f6ff, 0 0 24px #00f6ff, 0 0 36px #00f6ff;
    transition: box-shadow 0.3s ease-in-out;
}   

.flip-card {
    background-color: transparent;
    width: 220px;
    height: 220px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.3s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-card-front {
    color: black;
}

.flip-card-back {
    color: white;
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.faq {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border-bottom: 1px solid #33e1f1;
    padding: 10px 0;
}

.faq-question {
    cursor: pointer;
    color: #33e1f1;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #33e1f1;
}

.faq-answer {
    display: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-10px);
}

.faq-answer:not([style*="display: none"]) {
    opacity: 1;
    transform: translateY(0);
    display:grid;
    gap:20px;
}

/* FAQ Active State */
.faq-question.active {
    color: #33e1f1;
    position: relative;
   

}


#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: black;
}

/* Make sure content appears above particles */
body > div:not(#particles-js) {
    position: relative;
    z-index: 2;
}
/* chart css */
.chart-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Full width of the parent */
    margin-top: 100px;
    gap: 40px;
}
/* Canvas for the pie chart */
#myPieChart {
    width: 35% !important; /* Set the width of the pie chart to 40% */
    height: auto !important; /* Maintain aspect ratio */
    border: 8px solid white;
    border-radius: 50%;
    position: relative;
    rotate: 220deg;
}

/* Legend styling */
.chart-legend {
    display: flex;
    flex-direction: column;
    margin-left: 20px; /* Space between chart and legend */
}
.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px; /* Space between legend items */
    color: wheat;
}
.legend-color-box {
    width: 40px;
    height: 40px;
    margin-right: 10px; /* Space between color box and label */
    border-radius: 2px;
}
/* scrool animation */
.riseup{
    animation: glow 2s infinite alternate ease-in-out;
}
@keyframes glow {
    from{
        text-shadow: rgb(48, 165, 178) 0px 0px 23.6378px, rgba(77, 187, 199, 0.365) 0px 0px 3.63784px;
    }to{
        text-shadow: rgb(46, 159, 171) 0px 0px 21.0098px, rgba(77, 187, 199, 0.1) 0px 0px 1.00979px;
    }
}
/* .AIAgent{
    background-image: url();
} */
@media only screen and (max-width:500px) {
    #main{
    background-size: 300px 400px;
    }
    .chart-container {
        flex-direction: column;
          
    }
    .flip-card{
        width:150px;
        height:150px;
    }
    #myPieChart {
        width:70% !important; 
    }
    
    /* Legend styling */
    .chart-legend {
        width: 80%;
        gap:20px;
    }
    .legend-color-box{
        width:20px;
        height:20px;
    }
}