body {
    background: linear-gradient(to bottom, rgb(237, 241, 255), white);
  }
  /* .navbar-brand {
        font-weight: bold;
        color: #6c48ff;
        font-size: 1.5rem;
    } */
  .btn-primary {
    background-color: #6c48ff;
    border: none;
  }
  .btn-primary:hover{
    background-color: #6c48ff;
    border: none;
}

  .btn-outline-primary {
    border-color: #6c48ff;
    color: #6c48ff;
  }
  .hero {
    text-align: center;
    padding: 100px 20px;
  }
  .hero h1 {
    font-weight: bold;
    font-size: 2.5rem;
  }
  .navbar-brand {
    max-width: 150px;
    height: auto;
  }

  @media (max-width: 768px) {
    .navbar-brand {
      max-width: 120px;
    }
  }
  .marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    background: #f9fbff;
    padding: 20px 0;
  }

  .marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
  }

  .marquee-content img {
    height: 50px; /* Adjust image height */
    margin: 0 20px;
  }

  @keyframes marquee {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  .case-studies {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.case-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 45%;
    text-align: left;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.blue-bg { background-color: #e3efff; }
.yellow-bg { background-color: #fef3c7; }

.case-card h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.case-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background-color: #6200ea;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    margin-top: 15px;
}

.btn:hover {
    background-color: #5f06e5;
}

/* ✅ Responsive Media Queries */
@media (max-width: 768px) {
    .case-card {
        width: 100%;
    }
}
.superpower-section {
    background-color: #f4e8ff;
    border-radius: 15px;
    max-width: 900px;
    margin: auto;
    padding: 40px;
    text-align: center;
}

.superpower-section h2 {
    font-size: 26px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.superpower-section p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #7000ff;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #5500cc;
}

@media (max-width: 768px) {
    .superpower-section {
        padding: 30px;
    }
    
    .superpower-section h2 {
        font-size: 22px;
    }

    .superpower-section p {
        font-size: 14px;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 18px;
    }
}

.dedicated-expert {
    background-color: #fff;
    padding: 20px;
    border-left: 5px solid #7000ff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.dedicated-expert h2 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.dedicated-expert p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Choose Influencers Section */
.choose-influencers {
    margin-bottom: 25px;
}

.choose-influencers h3 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.choose-influencers p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Launch Program Section */
.launch-program {
    margin-bottom: 25px;
}

.launch-program h3 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.launch-program p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Content Rights Section */
.content-rights {
    margin-bottom: 25px;
}

.content-rights h3 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.content-rights p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .dedicated-expert {
        padding: 15px;
    }

    .dedicated-expert h2 {
        font-size: 18px;
    }

    .choose-influencers h3,
    .launch-program h3,
    .content-rights h3 {
        font-size: 16px;
    }

    .choose-influencers p,
    .launch-program p,
    .content-rights p {
        font-size: 14px;
    }
}

  /* Marquee Wrapper */
  .custom-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: #f9fbfd;
    padding: 20px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    white-space: nowrap;
}

/* Marquee Content */
.custom-marquee {
    display: flex;
    gap: 20px;
    animation: scroll-left 10s linear infinite;
}

/* Image Styling */
.custom-marquee img {
    width: 250px; /* Adjust as needed */
    height: auto;
    /* border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    flex: 0 0 auto; /* Prevent shrinking */
}



/* Marquee Animation */
@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}
.title {
    font-size: 40px;
    font-weight: bold;
    color: #6a1b9a;
}
.title span {
    color: black;
}
.description {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}
.input-container {
    display: flex;
    margin-top: 20px;
}
.input-container input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}
.input-container button {
    background-color: #6a1b9a;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}
.input-container button:hover {
    background-color: #4a0072;
}   
.faq-section {
    padding: 50px 0;
}
.accordion-button {
    font-weight: bold;
    font-size: 1.2rem;
    color: #2b2c4f;
}
.accordion-body {
    font-size: 1rem;
    color: #2b2c4f;
}
.faq-card {
    background-color:#e7eeff;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    margin: auto;
}
.faq-icon {
    width: 140px;
    height: 150px;
    margin-bottom: 15px;
}
.faq-title {
    font-weight: bold;
    font-size: 1.3rem;
    color: #232e5d;
}
.faq-text {
    font-size: 1rem;
    color: #5a5a5a;
}
.card-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 50px 20px;
}
.card {
    width: 320px;
    border: 1px solid rgba(253, 253, 253, 0.46);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.card img {
    height: 200px;
    object-fit: cover;
}
.card-body {
    background: white;
    padding: 20px;
    border-radius: 0 0 15px 15px;
}
.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #232e5d;
    transition: color 0.3s ease-in-out;
}
.card-text {
    color: #6c757d;
    font-size: 0.9rem;
}
.date {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Hover Effect */
.card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}
.card:hover .card-title {
    color: #6f42c1; /* Purple color on hover */
}
.blog-section {
    background-color:#f1f4ff;
    text-align: center;
    padding: 50px 20px;
}
.subheading {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #adb5bd;
    letter-spacing: 1px;
}
.main-heading {
    font-size: 42px;
    font-weight: 700;
    color: #212529;
}
.description {
    font-size: 20px;
    color: #6c757d;
}   