


/* ================= CONTAINER ================= */
.container-main {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================= BACKGROUND ================= */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(
            900px 600px at 30% 70%,
            rgba(56,189,248,0.18),
            transparent 70%
        ),
        radial-gradient(
            900px 700px at 70% 45%,
            rgba(168,85,247,0.22),
            transparent 72%
        ),
        linear-gradient(
            180deg,
            #050508 0%,
            #07070c 45%,
            #050508 100%
        );
    filter: blur(28px);
    
}


.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at center,
            transparent 35%,
            rgba(5,5,8,0.85) 75%,
            #050508 100%
        );
}

/* ================= HERO ================= */
.hero {
    position: relative;
    z-index: 2;
    padding: 120px 0 90px;
    text-align: center;
padding-bottom: 0px;   

}

/* Text */
.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 4px;
    background: linear-gradient(to bottom, #ffffff, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h2 {
    font-size: 34px;
    font-weight: 500;
    color: #A9A8AE;
    margin-bottom: 14px;
margin-top: 0px;
}

.hero p {
        font-size: 20px;
    color: #A9A8AE;
    margin: 0 auto 36px;
    line-height: 1.6;
}

/* ================= BUTTONS ================= */
.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 70px;
}

.btn {
    padding: 14px 26px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-outline {
   background: rgba(255, 255, 255, 0.04);
    border: 1px solid #4b4b4c;
    color: var(--sp-text-muted) !important;
    font-weight: 600;
}

.btn-outline:hover {
    background: #A9A8AE;
    color: #0A0A0F !important ;
}

.btn-primary {
  background: linear-gradient(180deg, var(--sp-primary-gradient-start), var(--sp-primary-gradient-end));
    border: 1px solid var(--sp-primary-border);
    color: #F0EDFE !important;
    font-weight: 600;
}

.btn-primary:hover {
        background: #7b78ff;
}

/* ================= HERO IMAGE ================= */
.hero-media {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 32px;
}

.hero-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow:
        0 40px 120px rgba(0,0,0,.6),
        0 0 0 1px rgba(255,255,255,.05);
}

/* Vignette fade */
.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65) 8%,
        rgba(5,5,8,0.15) 18%,
        rgba(5,5,8,0.05) 45%,
        transparent 65%
    );
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .hero {
        padding-top: 90px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }
.hero h1 {
    font-size: 40px;
    line-height: 50px;
}


}





/* target audience section starts */

        .icon-wrapper img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

    /* Reset & Base */
.sl-label-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  object-fit: contain;
}


/* Section Container */
.audience-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  padding: 100px 0px;
    gap: 64px;

    margin: 0 auto;
    isolation: isolate;
}

/* Background Glow */
.glow-bg {
    position: absolute;
    width: 450px;
    height: 450px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(252, 252, 255, 0.3);
    filter: blur(500px);
    z-index: -1;
    pointer-events: none;
}

/* Header */
.section-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.caption-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
    opacity: 0.7;
}

.star-icon {
    color: #F0EDFE;
}

.caption {
   font-size: 14px;
    line-height: 22px;
    color: #F0EDFE;
   
    letter-spacing: 0.05em;
    font-weight: 400;
}

.main-heading {
    font-weight: 500;
    font-size: 34px;
    line-height: 44px;
    background: linear-gradient(180deg, #FCFCFF 0%, rgba(252, 252, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 10px;
}

/* Grid Layout */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
margin-top: 50px;
    
}

/* Card Style */
.tg-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
   padding: 32px;
    gap: 60px;
    background: #131318;
    border-radius: 16px;
    border: 1px solid rgba(252, 252, 255, 0.05);
    transition: all 0.3s ease;

}

.tg-card:hover {
    border-color: rgba(252, 252, 255, 0.15);
    transform: translateY(-4px);
    background: #1a1a21;
}
.tg-card:hover .icon-wrapper {
    background: #7A75EF;
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    background: rgba(252, 252, 255, 0.05);
    border-radius: 8px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.card-title {
    font-weight: 400;
    font-size: 28px;
    line-height: 36px;
    color: #BBBBBB;
    margin: 0px;
}

.tg-card:hover .card-title {
    color: #FCFCFF;
}

.card-description {
    font-size: 16px;
    line-height: 26px;
    color: #A9A8AE;
    margin: 0px;
}

/* Responsive */
@media (max-width: 1024px) {
    .audience-section {
        padding: 80px 0px;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
}



    @media (max-width: 768px) {

    .audience-section {
        padding: 60px 0px;
        overflow: hidden;
    }

    .cards-grid {
        display: flex;
        gap: 16px;

        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        padding-left: 20px;
        padding-bottom: 10px;
    }

    .tg-card {
        flex: 0 0 85%;   
        scroll-snap-align: start;
    }

    /* Hide scrollbar */
    .cards-grid::-webkit-scrollbar {
        display: none;
    }

    .cards-grid {
        scrollbar-width: none;
    }
}






/* target audience section ends*/





/* built production section starts*/



/* SECTION */
.prod-section {
  position: relative;
  overflow: hidden;
  background: #0f1115;
  padding: 60px 0px;
}

/* BG IMAGE */
.prod-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}



/* CONTENT ABOVE BG */
.prod-title,
.prod-features {
  position: relative;
  z-index: 2;
}



/* BACKGROUND */
.prod-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* TITLE */
.prod-title {
 
  font-weight: 700;
  font-size: 56px;
  line-height: 64px;
  text-align: center;
  background: linear-gradient(180deg, #FCFCFF 0%, rgba(252, 252, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1;
}

/* FEATURES ROW */
.prod-features {
  display: flex;
  gap: 60px;
align-items: center;
  justify-content: center;
    margin-top: 90px;
}

/* FEATURE ITEM */
.prod-feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 177.6px;
}

.prod-icon {
  width: 32px;
  height: 32px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}


.prod-icon img {
  width: 100%;
  height: 100%;
  display: block;
}


/* TEXT */
.prod-text {
  font-size: 16px;
  line-height: 26px;
  color: #A9A8AE;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .prod-section {
    width: 100%;
    height: auto;
    padding: 60px 20px;
    gap: 40px;
  }

  .prod-title {
    width: 100%;
    font-size: 40px;
    line-height: 48px;
  }

  .prod-features {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 30px;
  }

  .prod-feature {
    width: calc(33.33% - 20px);
    min-width: 150px;
  }
}

@media (max-width: 768px) {

.prod-features{
margin-top: 0px;
}
}



/* built production section ends*/

