/*
Theme Name: Industrial SEO Theme
Theme URI: http://codeapka.com/
Author: Umakant Yadav
Author URI: http://codeapka.com/
Description: A clean, serious, high-trust WordPress theme designed for industrial product SEO landing pages.
Version: 1.1.0
Text Domain: industrial-theme
*/

/* Core Styles - High Trust & Professional */
:root {
    --primary-color: #0d47a1;
    /* Deep Professional Blue */
    --secondary-color: #37474f;
    /* Slate Gray */
    --accent-color: #25D366;
    /* WhatsApp Green */
    --text-color: #212121;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Industrial Header Styles */
.industrial-header-nav {
    transition: var(--transition);
    z-index: 1020;
}

.industrial-header-nav .navbar-brand i {
    font-size: 2rem;
}

.industrial-header-nav .nav-link {
    color: var(--secondary-color) !important;
    padding: 0.5rem 1.2rem !important;
    transition: var(--transition);
}

.industrial-header-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.industrial-header-nav .navbar-nav .current-menu-item .nav-link {
    color: var(--primary-color) !important;
}

body {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
}

/* Slider Section - Premium Banner Style */
.seo-page-slider {
    position: relative;
    max-height: 500px;
    height: 500px;
    overflow: hidden;
    background-color: #1a1a1a;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

.seo-page-slider .carousel-item {
    transition: transform 1.2s ease-in-out, opacity 1s ease-in-out;
}

.seo-page-slider img {
    width: 100% !important;
    height: 500px !important;
    object-fit: cover !important;
    object-position: center;
    filter: brightness(0.9);
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    transition: opacity 0s 1.2s;
}

@media (max-width: 768px) {

    .seo-page-slider,
    .seo-page-slider img {
        height: 350px !important;
        max-height: 350px !important;
        object-fit: cover !important;
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    width: 3.5rem;
    height: 3.5rem;
    background-size: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: var(--transition);
}

.carousel-indicators .active {
    background-color: var(--white);
    transform: scale(1.2);
    border-color: var(--primary-color);
}

/* Content Aesthetics */
.entry-content {
    font-size: 1.1rem;
    color: #444;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

/* Left-Right Section */
.lr-section {
    padding: 80px 0;
}

.lr-section img {
    transition: var(--transition);
}

.lr-section img:hover {
    transform: scale(1.02);
}

/* Pre-Decision Framing */
.pre-decision-framing {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
}

/* Premium Floating Side CTA */
.cta-floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.floating-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.wa-float {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.call-float {
    background: linear-gradient(135deg, #0d47a1 0%, #1a237e 100%);
}

@media (max-width: 768px) {
    .cta-floating-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Industrial Footer Style */
.industrial-footer {
    background-color: #121212 !important;
    border-top: 4px solid var(--primary-color);
}

.text-primary-light {
    color: #448aff !important;
}

.footer-trust-badges i {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-trust-badges i:hover {
    opacity: 1;
    transform: scale(1.1);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Video Section Upgrades */
.video-section {
    background-color: transparent !important;
    padding: 0 !important;
}

.video-container {
    transition: var(--transition);
}

.video-container:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08) !important;
}

.ratio-16x9 {
    background-color: #000;
}

/* CTA Section - Soft High-Trust Professional */
.cta-section {
    background: #ffffff !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%) !important;
    border: 1px solid #eef2f7 !important;
    border-radius: 20px !important;
    padding: 80px 40px !important;
    margin: 60px 0 !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary-color);
}

.cta-section h3 {
    color: #1a237e !important;
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.03em;
}

.cta-section p {
    color: #455a64 !important;
    font-size: 1.25rem !important;
    max-width: 600px;
    margin: 0 auto 40px !important;
}

.cta-section .btn {
    padding: 18px 45px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 100px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.cta-section .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-section .btn-success {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    border: none !important;
    color: #fff !important;
}

.cta-section .btn-light {
    background: #ffffff !important;
    border: 2px solid #e0e0e0 !important;
    color: #1a237e !important;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1565c0 100%);
}

/* Premium Design Utilities */
.glass-morphism {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-glass {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1565c0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 71, 161, 0.1);
}

/* Section Spacing */
.py-large {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .py-large {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}