:root {
    --heading-color: orangered;
    --subheading-color: #2cc197;
    --accent-color: #00a1e0;
    --primary: #3a86ff;
    --primary-dark: #2667cc;
    --secondary: #8338ec;
    --accent: var(--accent-color);
    --light: #f8f9fa;
    --dark: #0a1128;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --gradient-1: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-2: linear-gradient(135deg, var(--secondary), var(--accent));
    --gradient-bg: linear-gradient(135deg, #0a1128, #1a2a52);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
/* Base Styles and Variables */
 
.scroll-top {

    position: fixed;
  
    visibility: hidden;
  
    opacity: 0;
  
    right: 15px;
  
    bottom: 15px;
  
    z-index: 99999;
  
    background-color: var(--accent-color);
  
    width: 40px;
  
    height: 40px;
  
    border-radius: 4px;
  
    transition: all 0.4s;
  
  }
  
  
  
  .scroll-top i {
  
    font-size: 24px;
  
    color: var(--light);
  
    line-height: 0;
  
  }
  
  
  
  .scroll-top:hover {
  
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  
    color: var(--contrast-color);
  
  }
  
  
  
  .scroll-top.active {
  
    visibility: visible;
  
    opacity: 1;
  
  }
  
  a{
    text-decoration: none;
  }
  
 :root {
    --heading-color: orangered;
    --subheading-color: #2cc197;
    --accent-color: #00a1e0;
    --primary: #3a86ff;
    --primary-dark: #2667cc;
    --secondary: #8338ec;
    --accent: var(--accent-color);
    --light: #f8f9fa;
    --dark: #0a1128;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --gradient-1: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-2: linear-gradient(135deg, var(--secondary), var(--accent));
    --gradient-bg: linear-gradient(135deg, #0a1128, #1a2a52);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --star-color: #ffcc00;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(110, 86, 207, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(255, 126, 219, 0.05) 0%, transparent 30%);
    background-attachment: fixed;
}

/* Typography */
.ai-creation h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
label{
    color: var(--light);
}
.ai-creation h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--heading-color);
    letter-spacing: -0.02em;
}

.ai-creation h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--heading-color);
}

.ai-creation h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    color: var(--subheading-color);
}

.ai-creation h4 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
    color: var(--accent);
}

.ai-creation p {
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
    max-width: 800px;
    color: var(--light);
}

/* Layout */

section {
    padding: 6rem 0;
    position: relative;
}

/* Hero Section */
.ai-creation .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.ai-creation .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/adbg.jpg);
    z-index: -1;
    background-size: cover;
    background-position: center;
    filter: blur(5px) brightness(0.6);
    transform: scale(1.1);
}

.ai-creation .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}


/* 3D Animation Elements */
.hero-3d-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-3d-container {
        position: relative;
        width: 100%;
        height: 400px;
        margin-top: 3rem;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        margin: auto;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }
}

.floating-cube {
    position: absolute;
    width: 150px;
    height: 150px;
    transform-style: preserve-3d;
    animation: floatCube 20s infinite linear;
}

.floating-cube:nth-child(2) {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 20%;
    animation-duration: 15s;
    animation-delay: -5s;
}

.floating-cube:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 30%;
    animation-duration: 12s;
    animation-delay: -8s;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(110, 86, 207, 0.1);
    border: 1px solid rgba(110, 86, 207, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--accent);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.cube-face:nth-child(1) {
    transform: translateZ(75px);
}

.cube-face:nth-child(2) {
    transform: rotateY(180deg) translateZ(75px);
}

.cube-face:nth-child(3) {
    transform: rotateY(90deg) translateZ(75px);
}

.cube-face:nth-child(4) {
    transform: rotateY(-90deg) translateZ(75px);
}

.cube-face:nth-child(5) {
    transform: rotateX(90deg) translateZ(75px);
}

.cube-face:nth-child(6) {
    transform: rotateX(-90deg) translateZ(75px);
}

.floating-cube:nth-child(2) .cube-face:nth-child(1) {
    transform: translateZ(50px);
}

.floating-cube:nth-child(2) .cube-face:nth-child(2) {
    transform: rotateY(180deg) translateZ(50px);
}

.floating-cube:nth-child(2) .cube-face:nth-child(3) {
    transform: rotateY(90deg) translateZ(50px);
}

.floating-cube:nth-child(2) .cube-face:nth-child(4) {
    transform: rotateY(-90deg) translateZ(50px);
}

.floating-cube:nth-child(2) .cube-face:nth-child(5) {
    transform: rotateX(90deg) translateZ(50px);
}

.floating-cube:nth-child(2) .cube-face:nth-child(6) {
    transform: rotateX(-90deg) translateZ(50px);
}

.floating-cube:nth-child(3) .cube-face:nth-child(1) {
    transform: translateZ(40px);
}

.floating-cube:nth-child(3) .cube-face:nth-child(2) {
    transform: rotateY(180deg) translateZ(40px);
}

.floating-cube:nth-child(3) .cube-face:nth-child(3) {
    transform: rotateY(90deg) translateZ(40px);
}

.floating-cube:nth-child(3) .cube-face:nth-child(4) {
    transform: rotateY(-90deg) translateZ(40px);
}

.floating-cube:nth-child(3) .cube-face:nth-child(5) {
    transform: rotateX(90deg) translateZ(40px);
}

.floating-cube:nth-child(3) .cube-face:nth-child(6) {
    transform: rotateX(-90deg) translateZ(40px);
}

@keyframes floatCube {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

/* Glowing Orb */
.glowing-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110, 86, 207, 0.3) 0%, rgba(110, 86, 207, 0) 70%);
    filter: blur(20px);
    animation: pulse 8s infinite alternate;
    z-index: -1;
}

.orb-1 {
    top: 20%;
    right: 10%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.3) 0%, rgba(0, 217, 255, 0) 70%);
    animation-delay: -2s;
}

.orb-2 {
    bottom: 10%;
    right: 30%;
    background: radial-gradient(circle, rgba(255, 126, 219, 0.3) 0%, rgba(255, 126, 219, 0) 70%);
    animation-delay: -4s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}
.fastsocial-section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .fastsocial-section-header h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
  }
/* Futuristic Button */
.ai-creation .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(58, 134, 255, 0.5);
    font-size: 1.1rem;
}

.ai-creation .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.ai-creation .btn:hover::before {
    opacity: 1;
}

.ai-creation .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.7);
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #05050d, var(--dark));
    z-index: -1;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-image {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.floating-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 40, 0.8);
    border: 1px solid var(--primary);
    border-radius: 10px;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: rotateY(-20deg) rotateX(10deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.floating-screen:hover {
    transform: rotateY(-15deg) rotateX(5deg) scale(1.05);
}

.screen-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.screen-title {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.screen-controls {
    display: flex;
    gap: 10px;
}

.screen-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-red {
    background-color: #ff5f57;
}

.control-yellow {
    background-color: #febc2e;
}

.control-green {
    background-color: #28c840;
}

.screen-body {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.typing-text {
    font-family: monospace;
    font-size: 1rem;
    color: var(--light);
    white-space: pre-wrap;
    line-height: 1.5;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 20px;
    background-color: var(--accent-color);
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.screen-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(45deg,
            rgba(58, 134, 255, 0) 0%,
            rgba(58, 134, 255, 0.1) 50%,
            rgba(58, 134, 255, 0) 100%);
    animation: screenGlow 3s infinite alternate;
}

@keyframes screenGlow {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.8;
    }
}

/* Features Section */
.features-section {
    position: relative;
    background-color: #05050d38;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(10, 17, 40, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(58, 134, 255, 0.1) 0%,
            rgba(0, 161, 224, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 161, 224, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: translateZ(20px);
    color: var(--subheading-color);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--subheading-color);
    transition: var(--transition);
}

.feature-card:hover .feature-title {
    transform: translateZ(15px);
    color: var(--accent-color);
}

.feature-description {
    color: rgba(248, 249, 250, 0.8);
    transition: var(--transition);
}

.feature-card:hover .feature-description {
    transform: translateZ(10px);
}

/* How It Works Section */
.how-it-works {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(10, 17, 40, 0.9), rgba(10, 17, 40, 0.7));
    z-index: 0;
    /* This makes the background sticky while scrolling */
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/howbg.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: blur(3px) brightness(0.3);
    opacity: 0.5;
}

.step-connector {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 2px;
    height: calc(100% - 80px);
    background: linear-gradient(to bottom, var(--primary), rgba(58, 134, 255, 0.1));
    z-index: 1;
}

.step:last-child .step-connector {
    display: none;
}

@media (max-width: 768px) {
    .step-connector {
        display: none;
    }
}

/* Benefits Section */
.benefits-section {
    background: #05050d2a;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(131, 56, 236, 0.05) 0%, rgba(131, 56, 236, 0) 70%);
    z-index: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
} 


.benefit-card {
    background: rgba(10, 17, 40, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(58, 134, 255, 0.1) 0%,
            rgba(0, 161, 224, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 161, 224, 0.2);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}

/* Target Audience Section */
.audience-section {
    background: var(--dark);
    position: relative;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-card {
    background: rgba(10, 17, 40, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.audience-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(58, 134, 255, 0.1), transparent);
    transition: var(--transition);
    z-index: -1;
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.2);
}

.audience-card:hover::after {
    height: 100%;
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    transition: var(--transition);
    width: 80px;
    height: 80px;
    background: rgba(10, 17, 40, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--glass-border);
}

.audience-card:hover .audience-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

/* Why Choose Us Section */
.why-choose-section {
    background: #05050d48;
    position: relative;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-card {
    background: rgba(10, 17, 40, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 100%;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--accent-color);
    border-left: 2px solid var(--accent-color);
    transition: var(--transition);
}

.why-choose-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    transition: var(--transition);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 161, 224, 0.2);
}

.why-choose-card:hover::before,
.why-choose-card:hover::after {
    width: 50px;
    height: 50px;
}

.why-choose-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.why-choose-card:hover .why-choose-icon {
    color: var(--heading-color);
    transform: scale(1.1);
}

/* FAQ Section */
/* FAQ Section */
.faq-section {
    position: relative;
    background: var(--gradient-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0;
  z-index: 1;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('../img/faqbg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(12px) brightness(0.6);
    opacity: 0.8;
    z-index: -1;
}

/* CTA Section */
.cta-section {
    background: #05050d68;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none" stroke="%233a86ff" stroke-width="0.5" stroke-opacity="0.05"/></svg>');
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

.ai-creation .btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.ai-creation .btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Particle Animation */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    .fastsocial-container {
        margin-top: 40%;
     }

    .hero-3d-container {
        height: 300px;
    }

    .about-image {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }
      /* Layout */
.fastsocial-container {
    margin-top: 40%;
 }

    .hero-3d-container {
        height: 250px;
    }

    .about-image {
        height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 399px) {
    /* Layout */
.fastsocial-container {
   margin-top: 40%;
}
}

a {
    text-decoration: none !important;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    outline: none;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
    color: var(--heading-color);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--subheading-color);
}

h4 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
    color: var(--light);
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
    text-align: center;
}
section {
    padding: 5rem 0;
}
/* Buttons */
.fastsocial-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

.fastsocial-btn-primary {
    background: var(--gradient-1);
    color: white;
}

.fastsocial-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(58, 134, 255, 0.3);
    color: white;
}

.fastsocial-btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.fastsocial-btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}
/* HERO section common css Start */
.hero-title {
  color: var(--heading-color) !important;
  font-size: 4rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-description {
  margin-bottom: 2.5rem;
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  color: rgba(248, 249, 250, 0.8);
}
/* HERO section common css End */
/* FAQ SECTION START */


.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gradient-bg);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--subheading-color);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background: var(--heading-color);
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-item.active .faq-question i {
    color: white;
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 0.5rem 1.5rem 1.5rem;
    max-height: 1000px;
}
/* FAQ SECTION END */


/* How it works Start */

.fastsocial-steps-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .fastsocial-step {
    margin-bottom: 60px;
    position: relative;
  }
  
  .fastsocial-step:last-child {
    margin-bottom: 0;
  }
  
  .fastsocial-step-content {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .fastsocial-step:hover .fastsocial-step-content {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }
  
  .fastsocial-step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    margin-right: 30px;
    flex-shrink: 0;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
  }
  
  .fastsocial-step-text {
    /* flex: 1 1 0%; */
    padding-right: 30px;
  }
  
  .fastsocial-step-text h3 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  .fastsocial-step-text p {
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .fastsocial-step-list {
    margin-top: 20px;
  }
  
  .fastsocial-step-list li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary);
  }
  
  .fastsocial-step-list li:last-child {
    margin-bottom: 0;
  }
  
  .fastsocial-step-list h4 {
    color: var(--subheading-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
  }
  
  .fastsocial-step-list p {
    margin-bottom: 0;
    font-size: 0.95rem;
    opacity: 0.9;
  }
  
  .fastsocial-step-image {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
  }
  
  .fastsocial-step:hover .fastsocial-step-image {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }
  
  .fastsocial-step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .fastsocial-step:hover .fastsocial-step-img {
    transform: scale(1.05);
  }
  
  .fastsocial-step-visual {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    margin-right: 30px;
    position: relative;
  }
  
  .fastsocial-step-image {
    width: 300px;
    height: 300px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
  }
  
  .fastsocial-step:hover .fastsocial-step-image {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(58, 134, 255, 0.3);
    transform: translateY(-5px);
  }
  
  .fastsocial-step-content-wrapper {
    display: flex;
    flex: 1;
    position: relative;
  }
  
  .fastsocial-step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
  }
  
  .fastsocial-step:hover .fastsocial-step-content {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .fastsocial-step-content h3 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  .fastsocial-step-content p {
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .fastsocial-step-list {
    margin-top: 20px;
  }
  
  .fastsocial-step-list li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
    border-left: 3px solid var(--primary);
    padding-left: 20px;
  }
  
  .fastsocial-step-list li:last-child {
    margin-bottom: 0;
  }
  
  .fastsocial-step-list h4 {
    color: var(--subheading-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
  }
  
  .fastsocial-step-list p {
    margin-bottom: 0;
    font-size: 0.95rem;
    opacity: 0.9;
  }
  
  .fastsocial-step-hover-effect {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
  }
  
  .fastsocial-step:hover .fastsocial-step-hover-effect {
    opacity: 1;
    right: 20px;
  }
  
  .fastsocial-step-hover-icon {
    color: var(--light);
    font-size: 1.5rem;
  }
  
  /* Responsive Styles for How It Works Section */
  @media (max-width: 1200px) {
    .fastsocial-step-content {
      padding: 30px;
    }
  
    .fastsocial-step-image {
      width: 250px;
      height: 250px;
    }
  }
  
  @media (max-width: 992px) {
    .fastsocial-step-content {
      flex-direction: column;
    }
  
    .fastsocial-step-text {
      padding-right: 0;
      margin-bottom: 30px;
    }
  
    .fastsocial-step-image {
      width: 100%;
      height: 250px;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 768px) {
    .aiaudience-how-it-works {
      padding: 70px 0;
    }
  
    .fastsocial-step {
      margin-bottom: 50px;
      flex-direction: column;
    }
  
    .fastsocial-step-content {
      padding: 25px;
    }
    .fastsocial-step-number {
        margin-bottom: 20px;
      width: 50px;
      height: 50px;
      font-size: 1.3rem;
      top: -15px;
      left: -15px;
    }
  
    .fastsocial-step-text h3 {
      font-size: 1.3rem;
    }
  
    .fastsocial-step-list {
        padding-left: 0 !important;
    }
    .fastsocial-step-list h4 {
      font-size: 1rem;
    }
  
    .fastsocial-step-list p {
      font-size: 0.9rem;
    }
  
    .fastsocial-step-image {
      height: 200px;
    }
  }
  
  @media (max-width: 576px) {
    .fastsocial-step-content {
      padding: 20px;
    }
  
    .fastsocial-step-number {
      width: 40px;
      height: 40px;
      font-size: 1.1rem;
      top: -10px;
      left: -10px;
    }
  
    .fastsocial-step-text h3 {
      font-size: 1.2rem;
    }
  
    .fastsocial-step-list {
      margin-top: 15px;
    }
  
    .fastsocial-step-list li {
      padding-left: 15px;
      margin-bottom: 15px;
    }
  
    .fastsocial-step-image {
      height: 180px;
    }
  }
  
/* How it works End */