

/* ===== 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 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, 40, 0.7);
    z-index: -1;
}

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

.ai100-content h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.2;
    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: #4f6cff;
    color: #fff;
}

.ai100-primary:hover {
    background: #2e4bff;
    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;
}        
        
        
        
        
        
        
        