/* =============================================
   INDUSTRY PAGE TEMPLATE - Premium CSS
   AOS Animations + Glassmorphism + Dark Theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== BASE & DARK THEME ===== */
.ind-body {
    font-family: 'Inter', sans-serif;
    background-color: #0b0d13;
    color: #a0a5b5;
    overflow-x: hidden;
}

.ind-body h1, .ind-body h2, .ind-body h3, .ind-body h4, .ind-body h5, .ind-body h6 {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
}

/* ===== HERO SECTION ===== */
.ind-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 30% 20%, rgba(110, 68, 255, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(0, 240, 255, 0.06) 0%, transparent 50%),
                #0b0d13;
    padding: 120px 20px 80px;
}

.ind-hero-glow-1 {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(110, 68, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: ind-pulse 6s ease-in-out infinite alternate;
    pointer-events: none;
}

.ind-hero-glow-2 {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: ind-pulse 8s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

.ind-hero-glow-3 {
    position: absolute;
    top: 30%;
    right: 20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(213, 208, 26, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: ind-float 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ind-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.2); opacity: 1; }
}

@keyframes ind-float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(10px) translateX(-15px); }
    75% { transform: translateY(-10px) translateX(5px); }
}

.ind-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.ind-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(213, 208, 26, 0.1);
    border: 1px solid rgba(213, 208, 26, 0.25);
    color: #d5d01a;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.ind-hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: #d5d01a;
    border-radius: 50%;
    animation: ind-dot-pulse 2s ease-in-out infinite;
}

@keyframes ind-dot-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.ind-hero h1 {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #d5d01a 50%, #00f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ind-hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.ind-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d5d01a 0%, #b8b300 100%);
    color: #0b0d13;
    padding: 16px 40px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 30px rgba(213, 208, 26, 0.25);
}

.ind-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(213, 208, 26, 0.35);
    color: #0b0d13;
    text-decoration: none;
}

.ind-hero-cta svg {
    transition: transform 0.3s ease;
}

.ind-hero-cta:hover svg {
    transform: translateX(4px);
}

/* ===== FLOATING SHAPES ===== */
.ind-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.ind-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.ind-shape-1 {
    width: 300px;
    height: 300px;
    border: 2px solid #d5d01a;
    top: 10%;
    right: 5%;
    animation: ind-rotate 20s linear infinite;
}

.ind-shape-2 {
    width: 150px;
    height: 150px;
    border: 1px solid #00f0ff;
    bottom: 15%;
    left: 8%;
    animation: ind-rotate 15s linear infinite reverse;
}

.ind-shape-3 {
    width: 80px;
    height: 80px;
    background: rgba(110, 68, 255, 0.15);
    top: 40%;
    left: 15%;
    animation: ind-float 12s ease-in-out infinite;
}

@keyframes ind-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== BREADCRUMB ===== */
.ind-breadcrumb {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ind-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.ind-breadcrumb-list li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ind-breadcrumb-list li a:hover {
    color: #d5d01a;
}

.ind-breadcrumb-list li.active {
    color: #d5d01a;
}

.ind-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* ===== CONTENT SECTIONS ===== */
.ind-section {
    padding: 100px 0;
    position: relative;
}

.ind-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.01);
}

.ind-section-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    opacity: 0.05;
}

.ind-section-glow.glow-purple {
    background: #6e44ff;
    top: -100px;
    right: -100px;
}

.ind-section-glow.glow-cyan {
    background: #00f0ff;
    bottom: -100px;
    left: -100px;
}

.ind-section-glow.glow-yellow {
    background: #d5d01a;
    top: 50%;
    right: -150px;
    transform: translateY(-50%);
}

/* ===== GLASS CARDS ===== */
.ind-glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.ind-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(213, 208, 26, 0.3), transparent);
}

.ind-glass-card:hover {
    border-color: rgba(213, 208, 26, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* ===== HEADINGS ===== */
.ind-section h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 30px;
    position: relative;
}

.ind-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #d5d01a, #00f0ff);
    border-radius: 2px;
    margin-top: 18px;
}

.ind-section h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 22px;
    color: #ffffff;
}

.ind-section h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #d5d01a, #00f0ff);
    border-radius: 2px;
    margin-top: 14px;
}

.ind-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #a0a5b5;
    margin-bottom: 18px;
}

.ind-section p strong {
    color: #ffffff;
    font-weight: 600;
}

/* ===== INDUSTRY IMAGE ===== */
.ind-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.ind-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

.ind-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ind-image-wrapper:hover img {
    transform: scale(1.05);
}

/* ===== STATS BAR ===== */
.ind-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(213, 208, 26, 0.05) 0%, rgba(0, 240, 255, 0.03) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ind-stat-item {
    text-align: center;
    padding: 20px;
}

.ind-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #d5d01a;
    line-height: 1;
    margin-bottom: 8px;
}

.ind-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ===== FAQ SECTION ===== */
.ind-faq-section {
    padding: 100px 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(110, 68, 255, 0.04) 0%, transparent 60%);
}

.ind-faq-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.ind-faq-section h3 span {
    color: #d5d01a;
}

.ind-faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ind-faq-item:hover {
    border-color: rgba(213, 208, 26, 0.15);
}

.ind-faq-item.active {
    border-color: rgba(213, 208, 26, 0.25);
    background: rgba(213, 208, 26, 0.03);
}

.ind-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    gap: 15px;
    transition: all 0.3s ease;
}

.ind-faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    flex: 1;
    line-height: 1.4;
}

.ind-faq-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(213, 208, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    color: #d5d01a;
    font-size: 18px;
}

.ind-faq-item.active .ind-faq-icon {
    background: #d5d01a;
    color: #0b0d13;
    transform: rotate(45deg);
}

.ind-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.3s ease;
}

.ind-faq-item.active .ind-faq-answer {
    max-height: 300px;
}

.ind-faq-answer-inner {
    padding: 0 28px 22px;
    font-size: 16px;
    line-height: 1.7;
    color: #a0a5b5;
}

/* ===== CTA BANNER ===== */
.ind-cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, #d5d01a 0%, #b8b300 50%, #d5d01a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ind-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: ind-cta-shine 8s ease-in-out infinite;
}

@keyframes ind-cta-shine {
    0%, 100% { transform: translateX(-30%); }
    50% { transform: translateX(30%); }
}

.ind-cta-banner h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0b0d13;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.ind-cta-banner h2::after {
    display: none;
}

.ind-cta-banner p {
    font-size: 18px;
    color: rgba(11, 13, 19, 0.7);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.ind-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0b0d13;
    color: #d5d01a;
    padding: 16px 40px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ind-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    color: #d5d01a;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .ind-hero {
        min-height: auto;
        padding: 100px 15px 50px;
    }
    .ind-hero h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }
    .ind-hero-subtitle {
        font-size: 16px;
    }
    .ind-section {
        padding: 60px 0;
    }
    .ind-section h2 {
        font-size: 28px;
    }
    .ind-section h3 {
        font-size: 22px;
    }
    .ind-glass-card {
        padding: 30px 20px;
    }
    .ind-stat-number {
        font-size: 34px;
    }
    .ind-cta-banner h2 {
        font-size: 28px;
    }
    .ind-faq-section h3 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        max-width: 100% !important;
    }
    .ind-hero {
        min-height: auto !important;
        padding: 85px 15px 40px !important;
    }
    .ind-hero h1 {
        font-size: 26px !important;
        line-height: 1.25 !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 14px !important;
    }
    .ind-hero-subtitle {
        font-size: 14px !important;
        line-height: 1.55 !important;
        margin-bottom: 22px !important;
    }
    .ind-hero-badge {
        font-size: 11px !important;
        padding: 6px 14px !important;
        margin-bottom: 16px !important;
    }
    .ind-hero-cta {
        padding: 12px 24px !important;
        font-size: 14px !important;
        width: 100% !important;
        justify-content: center !important;
    }
    .ind-section {
        padding: 40px 0 !important;
    }
    .ind-section h2 {
        font-size: 22px !important;
        line-height: 1.3 !important;
        margin-bottom: 16px !important;
    }
    .ind-section h2::after {
        margin-top: 10px !important;
        width: 40px !important;
    }
    .ind-section h3 {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }
    .ind-section p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    .ind-glass-card {
        padding: 20px 16px !important;
        border-radius: 14px !important;
    }
    .ind-image-wrapper {
        margin-top: 20px !important;
        border-radius: 12px !important;
    }
    .ind-stats {
        padding: 35px 0 !important;
    }
    .ind-stat-item {
        padding: 10px 5px !important;
    }
    .ind-stat-number {
        font-size: 26px !important;
    }
    .ind-stat-label {
        font-size: 11px !important;
        letter-spacing: 0.5px !important;
    }
    .ind-silo-section {
        padding: 40px 0 !important;
    }
    .ind-faq-section {
        padding: 50px 0 !important;
    }
    .ind-faq-section h3 {
        font-size: 22px !important;
        margin-bottom: 25px !important;
    }
    .ind-faq-question {
        padding: 14px 16px !important;
    }
    .ind-faq-question h4 {
        font-size: 14px !important;
        line-height: 1.35 !important;
    }
    .ind-faq-icon {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        font-size: 14px !important;
    }
    .ind-faq-answer-inner {
        padding: 0 16px 14px !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
    }
    .ind-cta-banner {
        padding: 40px 16px !important;
    }
    .ind-cta-banner h2 {
        font-size: 22px !important;
    }
    .ind-cta-banner p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }
    .ind-cta-btn {
        padding: 12px 28px !important;
        font-size: 14px !important;
        width: 100% !important;
        justify-content: center !important;
    }
    .ind-breadcrumb-list {
        font-size: 12px !important;
        white-space: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 4px !important;
        -webkit-overflow-scrolling: touch;
    }
}

/* ===== CONTACT FORM SECTION ===== */
.ind-contact-section {
    padding: 90px 0;
    position: relative;
    background: radial-gradient(ellipse at 50% 50%, rgba(110, 68, 255, 0.05) 0%, transparent 70%);
}

.ind-contact-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.ind-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d5d01a, #00f0ff, #6e44ff);
}

.ind-contact-form .form-group {
    margin-bottom: 22px;
}

.ind-contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ind-contact-form input,
.ind-contact-form select,
.ind-contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.ind-contact-form input:focus,
.ind-contact-form select:focus,
.ind-contact-form textarea:focus {
    border-color: #d5d01a;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(213, 208, 26, 0.1);
}

.ind-contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.ind-form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #d5d01a 0%, #b8b300 100%);
    color: #0b0d13;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(213, 208, 26, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ind-form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(213, 208, 26, 0.35);
}

@media (max-width: 767px) {
    .ind-contact-section { padding: 50px 0 !important; }
    .ind-contact-card { padding: 25px 18px !important; border-radius: 16px !important; }
}

/* ===== TARGETED KEYWORD PILLS SECTION ===== */
.ind-keywords-section {
    padding: 60px 0 20px;
}

.ind-keywords-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ind-keywords-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.ind-keyword-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    border-radius: 50px;
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ind-keyword-pill i {
    color: #d5d01a;
    font-size: 11px;
}

.ind-keyword-pill:hover {
    background: rgba(213, 208, 26, 0.1);
    border-color: rgba(213, 208, 26, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(213, 208, 26, 0.15);
}

@media (max-width: 767px) {
    .ind-keywords-card { padding: 20px 16px !important; }
    .ind-keyword-pill { font-size: 12px !important; padding: 8px 14px !important; }
}

/* ===== UTILITY ===== */
.ind-mb-0 { margin-bottom: 0 !important; }
.ind-mt-50 { margin-top: 50px; }
.ind-text-center { text-align: center; }
