

/* ===== HERO SECTION ===== */
.tb-hero-section {
    background: #000;
    color: #fff;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.tb-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.tb-hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

.tb-highlight {
    color: #f7bd52;
}

.tb-hero-subtext {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 60px auto;
    line-height: 1.7;
    color: #ddd;
}

/* ===== CARD SECTION ===== */
.tb-card-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tb-feature-box {
    border: 1px solid #333;
    padding: 40px 25px;
    transition: 0.3s ease;
    background: #0a0a0a;
}

.tb-feature-box:hover {
    border-color: #f7bd52;
    transform: translateY(-5px);
}

.tb-icon {
    font-size: 45px;
    margin-bottom: 20px;
    color: #8b3dff;
}

.tb-feature-box h3 {
    font-size: 26px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 800;
    color:#f7bd52;
}

.tb-feature-box p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .tb-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .tb-hero-title {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .tb-card-wrapper {
        grid-template-columns: 1fr;
    }

    .tb-hero-title {
        font-size: 26px;
    }

    .tb-hero-subtext {
        font-size: 15px;
    }

    .tb-feature-box {
        padding: 30px 20px;
    }
}


.credit-section {
  background: linear-gradient(135deg, #000000, #0f0f0f);
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.credit-container {
  max-width: 1100px;
  margin: auto;
}

.credit-section h1 {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 40px;
}

.highlight {
  color: #f7bd52;
  font-weight: 700;
}

.credit-btn {
  display: inline-block;
  background:#f7bd52;
  color: #fff;
  padding: 18px 45px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  margin-bottom: 35px;
  transition: 0.3s ease;
  box-shadow: 0 8px 25px rgba(142, 68, 255, 0.4);
}

.credit-btn span {
  margin-right: 8px;
}

.credit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(142, 68, 255, 0.6);
}

.credit-text {
  font-size: 18px;
  color: #ddd;
  line-height: 1.7;
  max-width: 900px;
  margin: auto;
}

.credit-text a {
  color:#f7bd52;
  font-weight: 600;
  text-decoration: none;
}

.credit-text a:hover {
  text-decoration: underline;
}

/* ================== Responsive ================== */

@media (max-width: 992px) {
  .credit-section h1 {
    font-size: 30px;
  }

  .credit-btn {
    font-size: 18px;
    padding: 16px 35px;
  }

  .credit-text {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .credit-section {
    padding: 70px 15px;
  }

  .credit-section h1 {
    font-size: 22px;
  }

  .credit-btn {
    font-size: 16px;
    padding: 14px 28px;
  }

  .credit-text {
    font-size: 14px;
  }
}


.want-section {
  padding: 32px 20px;
  background: #f4f4f6;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title1 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: black;
  margin-bottom: 60px;
}

.want-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.want-image {
  flex: 1;
}

.want-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.want-content {
  flex: 1;
}

.want-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.want-item .icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: #f7bd52;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(108,43,217,0.4);
}

.want-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color:black;
  font-weight:800;
}

.want-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ================= Responsive ================= */

@media (max-width: 992px) {
  .want-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .section-title1 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .want-section {
    padding: 70px 15px;
  }

  .section-title {
    font-size: 26px;
  }

  .want-item {
    flex-direction: column;
    gap: 10px;
  }

  .want-item .icon {
    width: 40px;
    height: 40px;
  }
}

/*=====================================================================================================*/
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ai100-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    /*background-image: linear-gradient(180deg,transparent,transparent 500px,#000042 800px,#000042);*/
    background-image: url("/public/images/hero-bg-shape.webp");
}

/* Background Video */
.ai100-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

/* Dark Overlay */
.ai100-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 10, 0.9);
    z-index: -1;
}

/* Content */
.ai100-content {
    max-width: 900px;
    padding: 20px;
}

.ai100-content h1 {
    font-size: 60px;
    font-weight: 00;
    line-height: 1;
    color: #ffffff;
}

.ai100-arrow {
    font-size: 5rem;
    display: inline-block;
    margin: 0 10px;
}

.ai100-content p {
    margin: 20px 0 30px;
    font-size: 1.1rem;
    color: #ffffff;
}

/* Buttons */
.ai100-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ai100-btn {
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.ai100-primary {
    background:linear-gradient(to right, #D38312 0%, #A83279 51%, #D38312 100%) no-repeat;
    color: #fff;
}

.ai100-primary:hover {
    background: linear-gradient(to right, #7b4397 0%, #dc2430 51%, #7b4397 100%);
    color: #fff;
}

.ai100-secondary {
    border: 2px solid #fff;
    color: #fff;
}

.ai100-secondary:hover {
    background: #fff;
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .ai100-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .ai100-content h1 {
        font-size: 2.2rem;
    }

    .ai100-content p {
        font-size: 0.95rem;
    }

    .ai100-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .ai100-btn {
        width: 100%;
        max-width: 280px;
        margin: auto;
    }
    .ai100-hero {
    margin-top:50px;
}
}
   .ai100-earnings {
            position: relative;
            background: linear-gradient(180deg, #1e2a78, #2434a1);
            padding: 120px 20px;
            text-align: center;
            color: #fff;
            overflow: hidden;
        }

        /* Globe */
        .ai100-globe {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 700px;
            opacity: 0.15;
            z-index: 0;
            pointer-events: none;
        }

        .ai100-globe img {
            width: 100%;
            filter: blur(1px);
        }

        .ai100-earnings-content {
            position: relative;
            z-index: 2;
        }

        .ai100-earnings-content h2 {
            font-size: 4rem;
            font-weight: 700;
            margin: 0;
        }

        .ai100-earnings-content h4 {
            margin-top: 10px;
            font-weight: 500;
        }

        .ai100-earnings-content p {
            margin-top: 20px;
            color: #cfd8ff;
        }

        /* Slider */
        .ai100-slider {
            margin-top: 60px;
            padding-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .ai100-card {
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 16px;
            text-align: left;
            transition: 0.3s;
        }

        .ai100-card span {
            display: block;
            margin-bottom: 15px;
            font-size: 16px;
            color: #cfd8ff;
        }

        .ai100-card h3 {
            font-size: 28px;
            margin: 0;
        }

        .ai100-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-8px);
        }

        /* Navigation */
        .ai100-nav {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .ai100-prev,
        .ai100-next {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.3s;
            font-size:18px;
        }

        .ai100-prev:hover,
        .ai100-next:hover {
            background: #4f6cff;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .ai100-globe {
                width: 500px;
            }
        }

        @media (max-width: 768px) {
            .ai100-earnings-content h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 600px) {
            .ai100-globe {
                width: 350px;
                top: 30px;
            }
        }
        
        
        
        
      .ai100-partners {
    background: #0f1b5c;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.ai100-partners-heading h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
}

/* Partner Slider */
.ai100-partner-slider {
    overflow: hidden;
}

.ai100-partner-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ai100-partner-card img {
    width: 60px;
    margin-bottom: 15px;
}

.ai100-partner-card h4 {
    margin: 0;
    font-weight: 500;
}

.ai100-partner-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width:1200px){
    .ai100-partners-heading h2{
        font-size:2rem;
    }
}  
        
        
        
.ai100-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #4f6cff;
    transition: 0.3s;
}

.ai100-partner-card:hover .ai100-icon {
    transform: scale(1.2);
    color: #ffffff;
}        
        
    /* From Uiverse.io by mrhyddenn */ 
.spinner {
  width: 3em;
  height: 3em;
  cursor: not-allowed;
  border-radius: 50%;
  border: 2px solid #444;
  box-shadow: -10px -10px 10px #6359f8, 0px -10px 10px 0px #9c32e2, 10px -10px 10px #f36896, 10px 0 10px #ff0b0b, 10px 10px 10px 0px#ff5500, 0 10px 10px 0px #ff9500, -10px 10px 10px 0px #ffb700;
  animation: rot55 0.7s linear infinite;
}

.spinnerin {
  border: 2px solid #444;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes rot55 {
  to {
    transform: rotate(360deg);
  }
}
    
    .three-cards{
    background:#000;
    padding:60px 20px;
}

/* Main wrapper */
.hero-images{
    position:relative;
    width:100%;
    max-width:1220px;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
}

/* Images common */
.hero-image-1,
.hero-image-2,
.hero-image-3{
    width:100%;
}

.hero-image-1 figure,
.hero-image-2 figure,
.hero-image-3 figure{
    display:block;
    border:1px solid #ddd;
    border-radius:12px;
    overflow:hidden;
}

/* Image style */
.hero-image-1 img,
.hero-image-2 img,
.hero-image-3 img{
    width:100%;
    height:auto;
    object-fit:cover;
    border-radius:12px;
}

/* Left Image */
.hero-image-1{
    max-width:38%;
    transform:rotate(-3deg);
    margin-top:80px;
}

/* Center Image */
.hero-image-2{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    max-width:420px;
    box-shadow:0 40px 30px rgba(0,0,0,0.5);
    z-index:2;
}

/* Right Image */
.hero-image-3{
    max-width:38%;
    transform:rotate(3deg);
    margin-top:80px;
}

figure{
    margin:0;
}

/* ---------------- */
/* Tablet Responsive */
/* ---------------- */

@media (max-width:991px){

.hero-images{
    gap:20px;
}

.hero-image-1,
.hero-image-3{
    max-width:40%;
    margin-top:60px;
}

.hero-image-2{
    max-width:350px;
}

}

/* ---------------- */
/* Mobile Responsive */
/* ---------------- */

@media (max-width:767px){

.hero-images{
    flex-direction:column;
    position:relative;
    gap:20px;
}

.hero-image-1,
.hero-image-3{
    max-width:90%;
    transform:none;
    margin-top:0;
}

.hero-image-2{
    position:relative;
    left:auto;
    transform:none;
    max-width:90%;
    box-shadow:0 20px 20px rgba(0,0,0,0.3);
}

}

.about-us {
    padding: 100px 0;
        background: #000000;
}
.about-image-box {
    margin-right: 30px;
}
.about-us-counters {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
    margin-bottom: 40px;
}
.about-counter-item h2 {
    font-size: 48px;
    display: inline-block;
   background: linear-gradient(#e66465, #9198e5);
    background-size: 200% auto;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease-in-out;
    margin-bottom: 10px;
}
.about-counter-item p {
    margin-bottom: 0;
        color: #a7aabb;
}
.about-us-image {
    position: relative;
}

.about-us-image figure {
    display: block;
    border-radius: 12px;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}
.image-anime {
    position: relative;
    overflow: hidden;
}
figure {
    margin: 0;
}
.about-us-image figure img {
    width: 100%;
    aspect-ratio: 1 / 1.045;
    object-fit: cover;
    border-radius: 12px;
}
.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}
.about-info-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 100%;
    max-width:max-content;
    display: flex;
    /*flex-wrap: wrap;*/
    align-items: center;
    background-color: var(--divider-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 20px;
    z-index: 1;
}
.about-info-box .icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
   background: linear-gradient(#e66465, #9198e5);
    background-size: 200% auto;
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease-in-out;
}
.about-info-box .icon-box img {
    width: 100%;
    max-width: 22px;
}
.about-info-content {
    width: 100%;
    max-width: calc(100% - 55px);
}
.about-info-content h3 {
    font-size: 16px;
    line-height: 1.4em;
}
/* SECTION */

#about{
padding:80px 15px;
}

/* CONTENT BOX */

.about-content-box{
max-width:900px;
}

/* TITLE AREA */

.section-title{
margin-bottom:40px;
}

.about-subtitle{
font-size:18px;
font-weight:600;
letter-spacing:2px;
text-transform:uppercase;
color:#6c63ff;
margin-bottom:15px;
}

/* MAIN TITLE */

.about-title{
font-size:46px;
font-weight:700;
line-height:1.3;
color:#111;
margin-bottom:20px;
}

/* BODY AREA */

.about-us-body{
display:flex;
align-items:flex-start;
gap:20px;
}

/* ICON */

.icon-box{
min-width:50px;
}

.icon-box img{
width:45px;
transition:0.3s;
}

.icon-box img:hover{
transform:rotate(45deg);
}

/* TEXT */

.about-body-content p{
font-size:18px;
line-height:1.7;
color:#a7aabb;
margin:0;
}

/* ---------------- */
/* Tablet */
/* ---------------- */

@media (max-width:991px){

.about-title{
font-size:36px;
}

.about-body-content p{
font-size:17px;
}

}

/* ---------------- */
/* Mobile */
/* ---------------- */

@media (max-width:767px){

#about{
padding:60px 15px;
}

.about-title{
font-size:28px;
line-height:1.4;
}

.about-us-body{
flex-direction:column;
gap:15px;
}

.icon-box img{
width:40px;
}

.about-body-content p{
font-size:16px;
}

}


body{
background:#050505;
color:white;
font-family: 'Poppins', sans-serif;
}


/* SECTION BOX */

.ai-box{

background: linear-gradient(135deg,#06111a,#0b0b0b);
border-radius:20px;
padding:60px 40px;
border:1px solid rgba(255,255,255,0.08);

}


/* TAG */

.tag{

background:#0c1620;
border:1px solid rgba(255,255,255,0.2);
padding:6px 14px;
border-radius:20px;
font-size:12px;
letter-spacing:1px;
display:inline-block;
margin-bottom:15px;

}


/* TITLE */

.main-title{

font-size:34px;
font-weight:600;
margin-bottom:40px;

}


/* CARD */

.service-card{

position:relative;
background:#0d0d0f;
padding:30px;
border-radius:14px;
border:1px solid rgba(255,255,255,0.05);
overflow:hidden;
transition:.4s;
height: stretch;
}


/* HOVER BACKGROUND FILL */

.service-card::before{

content:"";
position:absolute;
left:0;
bottom:0;
width:100%;
height:0;
background:linear-gradient(180deg,#ff2a2a,#6f00ff);
transition:.4s;
z-index:0;

}

.service-card:hover::before{

height:100%;

}

.service-card *{

position:relative;
z-index:2;

}


.service-card h5{

margin-top:15px;
font-size:18px;

}

.service-card p{

font-size:14px;
opacity:.8;
    color: #a7aabb;
}


/* ICON */

.icon img{

width:40px;

}


/* CONTACT CARD */

.contact-card{

display:flex;
flex-direction:column;
justify-content:space-between;

}

.robot-small{

width:90px;
margin-top:10px;

}


/* ABOUT SECTION */

.ai-about-section{

padding:100px 0;

}

.about-title{
color:white;
font-size:36px;
margin:15px 0;

}

.about-text{

opacity:.8;
margin-bottom:25px;

}

.feature-list ul{

padding-left:18px;

}

.feature-list li{

margin-bottom:8px;

}


/* STATS */

.stats{

display:flex;
gap:25px;
margin-top:30px;

}

.stat-box{

display:flex;
align-items:center;
gap:10px;

}

.stat-box img{

    width: 48px;
    padding: 10px;
    background: linear-gradient(#e66465, #9198e5);
    border-radius: 50%;

}


/* ROBOT */

.robot-big{

max-width:380px;

}


/* RESPONSIVE */

@media(max-width:991px){

.main-title{
font-size:28px;
}

.about-title{
font-size:28px;
}

.robot-big{
margin-bottom:40px;
}

.stats{
flex-direction:column;
}

}


@media(max-width:576px){

.ai-box{
padding:40px 20px;
}

.main-title{
font-size:24px;
}

}
.upper-title{
    display:flex;
    justify-content:center;
    align-items:center
}

/* ===== General Section Styling ===== */
/*.row.mt-5.py-3 {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    gap: 2rem;*/
/*    padding: 3rem 1rem;*/
/*    background-color: #f9f9f9;*/
/*}*/

/* ===== Left Column - How Work Content ===== */
.how-work-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.how-work-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    /*background: #fff;*/
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.icon-box {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.icon-box img {
       width: 85%;
    height: 85%;
    object-fit: contain;
}

.how-work-item-content h3 {
    font-size: 1.3rem;
    color:white;
    margin-bottom: 0.5rem;
}

.how-work-item-content p {
    font-size: 1rem;
    color:#75849a;
    line-height: 1.5;
}

/* ===== Right Column - Image Content ===== */
.how-work-image {
    position: relative;
    text-align: center;
}

.how-work-image figure {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.how-work-image figure img {
    width: 100%;
    height: auto;
    display: block;
}

.how-work-image figure:hover {
    transform: scale(1.05);
}

.about-info-box {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background:transparent;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-info-box .icon-box {
    width: 40px;
    height: 40px;
}

.about-info-box .icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-info-content p {
    font-size: 0.85rem;
    color:white;
    margin: 0;
}

.about-info-content h3 a {
    font-size: 1rem;
    color:antiquewhite;
    text-decoration: none;
}

.about-info-content h3 a:hover {
    color: #007bff;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    /*.row.mt-5.py-3 {*/
    /*    flex-direction: column;*/
    /*    gap: 3rem;*/
    /*}*/
}

@media (max-width: 576px) {
    .how-work-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .icon-box {
        width: 50px;
        height: 50px;
    }

    .how-work-item-content h3 {
        font-size: 1.1rem;
    }

    .how-work-item-content p {
        font-size: 0.95rem;
    }

    .about-info-box {
        /*flex-direction: column;*/
        gap: 0.5rem;
        bottom: -10px;
    }

    .about-info-content h3 a {
        font-size: 0.95rem;
    }
}



.step {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color:white;
    text-align: left;
    margin-bottom: 2rem;
}


@media (max-width: 576px) {
    .step {
        font-size: 1.6rem;       
        line-height: 1.4;        
        text-align: center;     
        margin-bottom: 1.5rem;  
    }
}

 section#ai-projects {
    color: #e0e0e0;
    padding: 3rem 1rem;
  }
  /* Section Heading */
  #ai-projects .section-header small {
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.2px;
  }
  #ai-projects .section-header h2 {
    font-weight: 700;
    margin-top: 0.3rem;
    margin-bottom: 3rem;
    font-size: 2rem;
    line-height: 1.3;
    color: #fff;
  }

  /* Cards Grid */
  #ai-projects .card {
    background-color: #181818;
    border: 1px solid #2b2b2b;
    border-radius: 10px;
    box-shadow: 0 0 15px rgb(0 0 0 / 0.6);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    min-height: 350px;
  }
  #ai-projects .card:hover {
    box-shadow: 0 0 25px rgb(0 120 255 / 0.8);
  }
  /* Badge styling */
  #ai-projects .badge-category {
    background-color: #292929;
    color: #aaa;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.35em 0.9em;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.7px;
  }

  /* Card Body */
  #ai-projects .card-body {
    padding: 1.3rem 1.5rem 1.7rem;
  }
  #ai-projects .card-title {
    color: #f0f0f0;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
  }

  /* Card Image */
  #ai-projects .card-img-bottom {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  /* Responsive spacing */
  @media (min-width: 768px) {
    #ai-projects .card {
      min-height: 400px;
    }
    #ai-projects .card-img-bottom {
      height: 220px;
    }
  }
  @media (max-width: 576px) {
    #ai-projects .section-header h2 {
      font-size: 1.5rem;
      margin-bottom: 2rem;
    }
    #ai-projects .card-img-bottom {
      height: 150px;
    }
  }
.tag{
background:#0b1324;
color:#7dd3fc;
padding:6px 14px;
border-radius:20px;
font-size:12px;
display:inline-block;
margin-bottom:15px;
}

/* title */

.faq-title{
font-size:26px;
font-weight:600;
margin-bottom:50px;
}

/* accordion */

.accordion-item{
background:#0b0f1a;
border:1px solid #1b2236;
margin-bottom:12px;
border-radius:12px;
overflow:hidden;
}

.accordion-button{
background:#0b0f1a;
color:white;
font-weight:500;
padding:18px;
}

.accordion-button::after{
filter:invert(1);
}

.accordion-button:not(.collapsed){
background:#111827;
box-shadow:none;
}

.accordion-body{
color:#9ca3af;
background:#0b0f1a;
padding:20px;
}

/* CTA section */

.cta-box{
background:linear-gradient(120deg,#061a28,#0b0f1a,#200a18);
border-radius:20px;
padding:40px;
margin-top:60px;
}

.cta-btn{
background:linear-gradient(90deg,#00c6ff,#0072ff);
border:none;
padding:10px 20px;
border-radius:30px;
color:white;
font-weight:500;
}

/* robot image */

.robot-img{
max-width:260px;
width:100%;
}

/* bottom section */

.work-box{
background:#0b0f1a;
border-radius:20px;
padding:35px;
margin-top:30px;
border:1px solid #1e293b;
}

.work-title{
font-size:54px;
font-weight:700;
letter-spacing:1px;
}
@media(max-width:576px){
  .work-title{
font-size:20px;
font-weight:700;
letter-spacing:1px;
}  
}
.highlight{
background:linear-gradient(90deg,#8ab4ff,#c084fc);
-webkit-background-clip:text;
color:transparent;
}

.contact{
color:#7dd3fc;
font-size:14px;
margin-top:10px;
display:inline-block;
padding:6px;
}


.robot-big {
    max-width: 380px;
    width: 100%;
    height: auto;
}

@media (max-width: 576px) {
    .robot-big {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}

/* From Uiverse.io by Creatlydev */ 
.button {
  cursor: pointer;
  border: none;
  background: #7808d0;
  color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: grid;
  place-content: center;
  transition:
    background 300ms,
    transform 200ms;
  font-weight: 600;
}

.button__text {
  position: absolute;
  inset: 0;
  animation: text-rotation 8s linear infinite;

  > span {
       position: absolute;
   transform: rotate(calc(22deg * var(--index)));
        inset: -4px;
  }
}

.button__circle {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background: #fff;
  color: #7808d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button__icon--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover {
  background: #000;
  transform: scale(1.05);
}

.button:hover .button__icon {
  color: #000;
}

.button:hover .button__icon:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

@keyframes text-rotation {
  to {
    rotate: 360deg;
  }
}


.ram{
    background: #372935bf;
  color: white;
  border: 2px solid #848484;
}




