/* Custom CSS for Anwita Digital */

:root {
    --primary-color: #ff6600;
    --secondary-color: #e55a00;
    --success-color: #059669;
    --warning-color: #d97706;
    --info-color: #0891b2;
    --danger-color: #dc2626;
    --dark-color: #0f172a;
    --light-color: #ffffff;
    --text-muted: #64748b;
    --border-color: #e5e7eb;
    --card-bg: #ffffff;
    --section-bg: #f8fafc;
    --hero-bg: #fefefe;
    --accent-orange: #ff6600;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

/* Global Typography Reduction */
h1 {
    font-size: 2.75rem !important;
    line-height: 1.2 !important;
}

h2 {
    font-size: 2.125rem !important;
    line-height: 1.3 !important;
}

h3 {
    font-size: 1.625rem !important;
    line-height: 1.4 !important;
}

h4 {
    font-size: 1.375rem !important;
    line-height: 1.4 !important;
}

h5 {
    font-size: 1.25rem !important;
    line-height: 1.4 !important;
}

h6 {
    font-size: 1.125rem !important;
    line-height: 1.4 !important;
}

.lead {
    font-size: 1.125rem !important;
    line-height: 1.6 !important;
}

.display-1 {
    font-size: 3.25rem !important;
}

.display-2 {
    font-size: 2.75rem !important;
}

.display-3 {
    font-size: 2.25rem !important;
}

.display-4 {
    font-size: 1.75rem !important;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-nav .nav-link {
    font-size: 1.1rem !important;
    font-weight: 500;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--dark-color) !important;
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ea580c 100%);
    border-radius: 8px;
    position: relative;
}

.logo-icon::before {
    content: 'AD';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.dropdown-toggle::after {
    margin-left: 0.5em;
}

/* Dropdown Styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1rem 0;
    min-width: 280px;
}

/* Mega Menu Styling */
.mega-menu {
    min-width: 800px !important;
    padding: 2rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-top: 0.5rem;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    display: none;
}

.mega-menu.show {
    display: block !important;
}

@media (max-width: 991.98px) {
    .mega-menu {
        min-width: 100% !important;
        left: 0 !important;
        transform: none !important;
        margin-top: 0;
        border-radius: 0 !important;
    }
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 991.98px) {
    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.mega-menu-column {
    min-width: 200px;
}

.mega-menu-header {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 102, 0, 0.1);
}

.mega-menu-item {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.mega-menu-item:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
    border-bottom: 1px solid rgba(255, 102, 0, 0.2);
    text-decoration: none;
}

/* Navigation Improvements */
.navbar {
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Fix dropdown arrow spacing */
.dropdown-toggle::after {
    margin-left: 0.3em !important;
    vertical-align: 0.1em !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Cart Styling */
.navbar .badge.bg-primary {
    background-color: var(--primary-color) !important;
    color: white !important;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    position: relative;
    top: -8px;
    left: -5px;
    font-weight: 600;
}

.navbar .nav-link i {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.navbar .nav-link:hover i {
    color: var(--primary-color);
}

/* Active Navigation Link Styles */
.navbar .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    position: relative;
}

/* Removed underline for active navigation links */

/* Override any conflicting styles with maximum specificity */
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link.active:hover,
.navbar .navbar-nav .nav-link.active:focus {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

/* Removed slideIn animation - no longer needed */

/* Active Mega Menu Items */
.mega-menu-item.active {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    background: rgba(255, 102, 0, 0.1) !important;
    border-radius: 6px;
    padding: 0.5rem 0.75rem !important;
    margin: 0.25rem 0 !important;
}

.mega-menu-item.active::before {
    content: '▶';
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Footer Active Link Styles */
footer .text-muted.active {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
    position: relative;
}

footer .text-muted.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #ff8533);
    border-radius: 1px;
}

.dropdown-header {
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(255, 102, 0, 0.05);
    color: var(--primary-color);
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: #e5e7eb;
}

/* Hero Section */
.hero-section {
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--dark-color);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 102, 0, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 102, 0, 0.03) 2px, transparent 2px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(255, 102, 0, 0.02) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 102, 0, 0.02) 50%, transparent 60%);
    background-size: 100px 100px;
    pointer-events: none;
}

/* Floating Tech Elements */
.hero-section .floating-tech {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-section .floating-tech::before,
.hero-section .floating-tech::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05), rgba(255, 133, 51, 0.03));
    animation: float 6s ease-in-out infinite;
}

.hero-section .floating-tech::before {
    width: 80px;
    height: 80px;
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.hero-section .floating-tech::after {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 15%;
    animation-delay: 3s;
}

.hero-section .tech-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.03), transparent);
    animation: slide 8s linear infinite;
}

.hero-section .tech-line:nth-child(1) {
    width: 120px;
    top: 30%;
    left: 5%;
    animation-delay: 0s;
}

.hero-section .tech-line:nth-child(2) {
    width: 80px;
    top: 70%;
    right: 8%;
    animation-delay: 4s;
}

@keyframes slide {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100vw); opacity: 0; }
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255, 102, 0, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 102, 0, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 102, 0, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 102, 0, 0.02) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-section .lead {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #4b5563;
    font-weight: 400;
}



/* Hero Content Styles */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
}

.badge {
    background: #fff3e6 !important;
    color: var(--primary-color) !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    border: 1px solid #ffb366 !important;
}

.badge.bg-primary-subtle {
    background: #fff3e6 !important;
    color: var(--primary-color) !important;
    border: 1px solid #ffb366 !important;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    margin-top: 3rem;
    position: relative;
    z-index: 3;
}

.stats-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 1.6rem !important;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stats .stat-label {
    font-size: 0.8rem !important;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 102, 0, 0.3), transparent);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

/* Hero Visual Background Enhancement */
.hero-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.05) 50%, transparent 100%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

.hero-visual::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.03) 50%, transparent 100%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    z-index: -1;
}

.dashboard-showcase {
    position: relative;
    height: 500px;
}

.dashboard-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(-3deg) rotateX(3deg);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-card:hover {
    transform: perspective(1000px) rotateY(-1deg) rotateX(1deg);
}

.dashboard-header {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.app-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.app-info {
    display: flex;
    flex-direction: column;
}

.app-name {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.875rem;
}

.app-status {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 500;
}

.header-actions {
    display: flex;
    gap: 0.5rem;
}

.action-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.action-dot.minimize { background: #f59e0b; }
.action-dot.maximize { background: #10b981; }
.action-dot.close { background: #ef4444; }

.dashboard-body {
    padding: 1.5rem;
    background: white;
}

.metrics-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.metric-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.metric-trend.positive {
    color: #10b981;
}

.metric-trend.negative {
    color: #ef4444;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.chart-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-title {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.875rem;
}

.chart-period {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.chart-container {
    position: relative;
    height: 80px;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #ff8533);
    transform: translateY(-50%);
}

.chart-points {
    position: relative;
    height: 100%;
}

.point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.2);
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 400px;
    width: 100%;
}

.hero-person {
    position: absolute;
    left: 20%;
    bottom: 20%;
    z-index: 2;
}

.person-body {
    width: 60px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 30px;
    position: relative;
}

.person-head {
    width: 40px;
    height: 40px;
    background: #fbbf24;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: 10px;
}

.hero-laptop {
    position: absolute;
    right: 10%;
    bottom: 30%;
    width: 200px;
    height: 120px;
    background: #e5e7eb;
    border-radius: 8px;
    z-index: 1;
}

.laptop-screen {
    width: 180px;
    height: 100px;
    background: white;
    margin: 10px;
    border-radius: 4px;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 10px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 60px;
}

.bar {
    width: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

.bar-1 { height: 30px; }
.bar-2 { height: 45px; }
.bar-3 { height: 35px; }
.bar-4 { height: 55px; }

.hero-icons {
    position: absolute;
    top: 20%;
    right: 15%;
    z-index: 3;
}

.icon-seo, .icon-ads {
    background: var(--primary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.icon-gear {
    width: 40px;
    height: 40px;
    background: #6b7280;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    right: -20px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    min-width: 140px;
}

.card-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.floating-card i {
    font-size: 1.2rem;
}

.card-1 {
    top: 15%;
    right: -25px;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: -35px;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 15%;
    right: -30px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.3);
}

.btn-light {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background-color: transparent;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    color: white;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.btn-outline-primary:focus {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

/* Cards */
.card {
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Service Cards */
.services-section {
    background: var(--light-color);
    padding: 60px 0;
}

.services-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.services-section .lead {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.service-card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 2rem 1.5rem;
    height: 100%;
    display: block;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-icon i {
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--section-bg);
    padding: 80px 0;
}

.why-choose-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.why-choose-section .lead {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.why-choose-card {
    background: var(--light-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 2rem 1.5rem;
    height: 100%;
}

.why-choose-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.why-choose-icon i {
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

/* Home Page Why Choose Cards */
.why-choose-card-home {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.why-choose-card-home:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.1);
    transform: translateY(-2px);
}

.why-choose-icon-home {
    width: 60px;
    height: 60px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-choose-content {
    flex: 1;
}

/* Case Studies */
.case-studies-section {
    background: var(--light-color);
    padding: 80px 0;
}

.case-studies-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.case-studies-section .lead {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.case-study-card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    height: 100%;
    overflow: hidden;
}

.case-study-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.case-study-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-icon i {
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.case-studies-section .badge {
    background: #fff3e6;
    color: var(--primary-color);
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    border: 1px solid #ffb366;
}

/* Minimal Case Study Design */
.case-study-new {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 380px;
}

.case-study-new:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.1);
}

.case-study-new .case-study-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.case-study-new .case-study-icon i {
    color: var(--primary-color) !important;
    font-size: 1.25rem;
}

.case-study-new .case-study-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.case-study-new .case-study-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.case-study-new .case-study-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.case-study-stats {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 0.125rem;
}

.stat-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.2;
}

.case-study-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff8533);
}

.case-study-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.case-study-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-icon i {
    color: var(--primary-color) !important;
    font-size: 1.25rem;
}

.case-study-badge {
    background: #fff3e6;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #ffb366;
}

.case-study-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.case-study-category {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
    margin: 0;
}

.case-study-metrics {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 1rem 0;
    width: 100%;
    box-sizing: border-box;
}

.metric {
    text-align: center;
    padding: 0.5rem 0.25rem;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(255, 102, 0, 0.3);
    box-shadow: 0 2px 4px rgba(255, 102, 0, 0.1);
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

.case-study-metrics .metric-value {
    display: block !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    line-height: 1.2 !important;
    margin-bottom: 0.25rem !important;
    white-space: nowrap !important;
}

.case-study-metrics .metric-label {
    display: block !important;
    font-size: 0.7rem !important;
    color: var(--text-muted) !important;
    font-weight: 500 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    line-height: 1.2 !important;
    text-align: center !important;
}

.case-study-summary {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Testimonials */
.testimonials-section {
    background: var(--section-bg);
    padding: 80px 0;
}

.testimonials-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.testimonials-section .lead {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.testimonials-section .card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonials-section .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.testimonials-section blockquote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* About Us Page Styles */
.about-illustration {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-circle {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.3);
    position: relative;
    z-index: 2;
}

.circle-content i {
    font-size: 4rem;
    color: white;
}

.about-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.element i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.element-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.element-2 {
    top: 65%;
    right: 10%;
    animation-delay: 0.5s;
}

.element-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 1s;
}

.story-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.highlight-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.timeline-container {
    position: relative;
    padding-left: 30px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), #ff8533);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-marker {
    position: absolute;
    left: -35px;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-content h5 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.team-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.avatar-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.avatar-circle i {
    font-size: 2rem;
    color: white;
}

.team-skills {
    margin-top: 1rem;
}

.team-skills .badge {
    background: #fff3e6;
    color: var(--primary-color);
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    border: 1px solid #ffb366;
}

/* About Us Page Styles */
.about-illustration {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-person {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.3);
}

.about-person::before {
    content: '';
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
    position: absolute;
}

.about-person::after {
    content: 'AD';
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.about-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.element i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 0.5s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.element-4 {
    top: 30%;
    right: 30%;
    animation-delay: 1.5s;
}

.mission-card, .vision-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.mission-icon, .vision-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.mission-icon i, .vision-icon i {
    font-size: 1.5rem;
    color: white;
}

.story-timeline {
    position: relative;
    padding-left: 30px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), #ff8533);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -22px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-content h5 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.difference-card {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.difference-card:hover {
    transform: translateY(-5px);
}

.difference-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.difference-icon i {
    font-size: 2rem;
    color: white;
}

.process-card {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

/* Testimonials Section */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b35);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-info h6 {
    margin: 0;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.author-info span {
    color: #6c757d;
    font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
    background: var(--light-color);
    padding: 80px 0;
    position: relative;
}

.cta-card {
    background: var(--light-color);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid var(--border-color);
}

.cta-badge {
    display: inline-block;
}

.cta-badge .badge {
    background: #fff3e6;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    border: 1px solid #ffb366;
}



/* Technology Section */
.technology-section {
    background: var(--section-bg);
    padding: 80px 0;
}

.technology-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.technology-section .lead {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.tech-logo {
    transition: all 0.3s ease;
    border-radius: 12px;
    background: var(--section-bg);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
}

.tech-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Colorful Tech Logos */
.tech-logo .fa-react { color: #61dafb; }
.tech-logo .fa-node-js { color: #339933; }
.tech-logo .fa-python { color: #3776ab; }
.tech-logo .fa-wordpress { color: #21759b; }
.tech-logo .fa-shopify { color: #95bf47; }
.tech-logo .fa-js-square { color: #f7df1e; }
.tech-logo .fa-docker { color: #2496ed; }
.tech-logo .fa-aws { color: #ff9900; }
.tech-logo .fa-google { color: #4285f4; }
.tech-logo .fa-microsoft { color: #00a4ef; }
.tech-logo .fa-fire { color: #ffca28; }
.tech-logo .fa-robot { color: #10a37f; }
.tech-logo .fa-figma { color: #f24e1e; }
.tech-logo .fa-mobile-alt { color: #02569b; }
.tech-logo .fa-database { color: #4db33d; }
.tech-logo .fa-github { color: #333; }
.tech-logo .fa-cube { color: #326ce5; }

/* Newsletter */
.newsletter-section {
    background: var(--light-color);
    padding: 100px 0;
}

.newsletter-section input {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-section input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

/* Footer */
footer {
    background-color: var(--section-bg);
}

.social-icons a {
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color) !important;
}

/* Footer links hover effect */
footer a {
    transition: color 0.3s ease;
    font-size: 1rem !important;
    font-weight: 400;
}

footer a:hover {
    color: var(--primary-color) !important;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 3rem 0;
        min-height: auto;
    }
    
    .stats-row {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .dashboard-card {
        transform: none;
        margin-top: 2rem;
    }
    
    .dashboard-card:hover {
        transform: none;
    }
    
    .floating-card {
        display: none;
    }
    
    .services-section .card-body {
        padding: 1.5rem;
    }
    
    .why-choose-section .col-lg-3 {
        margin-bottom: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.3);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[loading] {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* Form styling */
.form-control {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

/* Badge styling */
.badge {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Section spacing */
section {
    position: relative;
}

section:not(:last-child) {
    margin-bottom: 0;
}

/* Typography improvements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Utility classes */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Hover effects */
.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Shadow utilities */
.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shadow-custom:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Mission Vision Cards */
.mission-vision-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 102, 0, 0.15);
    border-color: var(--primary-color);
}

.card-icon-wrapper {
    display: inline-block;
    position: relative;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

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

/* Professional Business Dashboard */
.professional-illustration {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.business-dashboard {
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-header {
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-logo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.company-info {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.company-status {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.header-actions {
    display: flex;
    gap: 0.5rem;
}

.action-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.action-dot.minimize { background: #f59e0b; }
.action-dot.maximize { background: #10b981; }
.action-dot.close { background: #ef4444; }

.dashboard-content {
    padding: 1.5rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.metric-data {
    flex: 1;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
}

.growth-chart {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chart-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-align: center;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 60px;
    gap: 0.5rem;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), #ff8533);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
}

.bar:hover {
    transform: scaleY(1.1);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.bar::after {
    content: attr(data-year);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.bar-1 { height: 30px; }
.bar-2 { height: 45px; }
.bar-3 { height: 60px; }
.bar-4 { height: 75px; }
.bar-5 { height: 90px; }

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.element-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 30%;
    left: 5%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 20%;
    right: 15%;
    animation-delay: 4s;
}

/* Modern Story Illustration */
.modern-story-illustration {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-timeline-modern {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-track {
    position: absolute;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #ff8533, var(--primary-color));
    border-radius: 2px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 10px rgba(255, 102, 0, 0.2);
}

.timeline-milestone-modern {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 4s ease-in-out infinite;
}

.milestone-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.milestone-dot::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(255, 133, 51, 0.2));
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

.milestone-content {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.1);
    text-align: center;
    min-width: 100px;
    transition: all 0.3s ease;
}

.milestone-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.15);
    border-color: var(--primary-color);
}

.milestone-year {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.milestone-title {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.25rem;
    font-weight: 500;
}

.milestone-1 {
    left: 10%;
    animation-delay: 0s;
}

.milestone-2 {
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.milestone-3 {
    right: 10%;
    animation-delay: 3s;
}

.floating-achievements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.achievement-modern {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 102, 0, 0.1);
    text-align: center;
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
    min-width: 120px;
}

.achievement-modern:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.2);
    border-color: var(--primary-color);
}

.achievement-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin: 0 auto 0.75rem;
}

.achievement-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.2;
}

.achievement-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.achievement-2 {
    top: 20%;
    right: 20%;
    animation-delay: 2s;
}

.achievement-3 {
    bottom: 15%;
    left: 25%;
    animation-delay: 4s;
}

/* Story Infographic */
.story-infographic {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infographic-center {
    position: relative;
    z-index: 3;
}

.center-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.center-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.center-text {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.infographic-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(255, 102, 0, 0.3);
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-direction: normal;
}

.ring-2 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-direction: reverse;
}

.ring-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 4s ease-in-out infinite;
}

.ring-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 102, 0, 0.1);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.ring-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.2);
    border-color: var(--primary-color);
}

.ring-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
}

/* Ring 1 items */
.ring-1 .ring-item:nth-child(1) {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.ring-1 .ring-item:nth-child(2) {
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.ring-1 .ring-item:nth-child(3) {
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    animation-delay: 3s;
}

/* Ring 2 items */
.ring-2 .ring-item:nth-child(1) {
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.5s;
}

.ring-2 .ring-item:nth-child(2) {
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.ring-2 .ring-item:nth-child(3) {
    top: 50%;
    right: -35px;
    transform: translateY(-50%);
    animation-delay: 3.5s;
}

.story-stats {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.stat-card-modern {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.1);
    text-align: center;
    min-width: 80px;
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.15);
    border-color: var(--primary-color);
}

/* Stats Grid for Service Pages */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 102, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.12);
    border-color: var(--primary-color);
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-card .stat-number {
        font-size: 1.5rem;
    }
}

.stat-number-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label-modern {
    font-size: 0.75rem;
    color: #666;
    margin-top: 0.25rem;
    font-weight: 500;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hexagon Infographic */
.story-infographic-2 {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hexagon-grid {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hexagon {
    position: absolute;
    width: 120px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

.hexagon:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.hexagon-center {
    background: linear-gradient(135deg, #ff8533, var(--primary-color));
    width: 140px;
    height: 160px;
    z-index: 3;
    animation-delay: 0s;
}

.hex-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.hex-content i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.hex-content span {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
}

.hexagon-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0.5s;
}

.hexagon-2 {
    top: 10%;
    right: 20%;
    animation-delay: 1s;
}

.hexagon-3 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.hexagon-4 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.hexagon-5 {
    bottom: 10%;
    left: 25%;
    animation-delay: 2.5s;
}

.hexagon-6 {
    bottom: 10%;
    right: 25%;
    animation-delay: 3s;
}

.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.3), rgba(255, 133, 51, 0.3));
    transform-origin: left center;
    animation: pulse 3s ease-in-out infinite;
}

.line-1 {
    width: 80px;
    top: 25%;
    left: 35%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.line-2 {
    width: 80px;
    top: 25%;
    right: 35%;
    transform: rotate(-45deg);
    animation-delay: 0.5s;
}

.line-3 {
    width: 60px;
    top: 50%;
    left: 20%;
    transform: translateY(-50%) rotate(90deg);
    animation-delay: 1s;
}

.line-4 {
    width: 60px;
    top: 50%;
    right: 20%;
    transform: translateY(-50%) rotate(-90deg);
    animation-delay: 1.5s;
}

.line-5 {
    width: 80px;
    bottom: 25%;
    left: 35%;
    transform: rotate(-45deg);
    animation-delay: 2s;
}

.line-6 {
    width: 80px;
    bottom: 25%;
    right: 35%;
    transform: rotate(45deg);
    animation-delay: 2.5s;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

.particle-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.particle-2 {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.particle-3 {
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

.particle-4 {
    top: 70%;
    right: 15%;
    animation-delay: 3s;
}

.particle-5 {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

.particle-6 {
    bottom: 25%;
    right: 30%;
    animation-delay: 5s;
}

/* Molecule Structure Infographic */
.story-infographic-3 {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.molecule-structure {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-atom {
    position: absolute;
    z-index: 3;
}

.atom-core {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff8533, var(--primary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
    animation: pulse 3s ease-in-out infinite;
    position: relative;
}

.atom-core::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.2), transparent);
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

.atom-core i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.atom-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.electron-shell {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(255, 102, 0, 0.3);
    animation: rotate 20s linear infinite;
}

.shell-1 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-direction: normal;
}

.shell-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-direction: reverse;
}

.electron {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 4s ease-in-out infinite;
}

.electron-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 102, 0, 0.2);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.electron-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.3);
    border-color: var(--primary-color);
}

.electron-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
}

/* Shell 1 electrons */
.shell-1 .electron:nth-child(1) {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.shell-1 .electron:nth-child(2) {
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.shell-1 .electron:nth-child(3) {
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    animation-delay: 3s;
}

/* Shell 2 electrons */
.shell-2 .electron:nth-child(1) {
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.5s;
}

.shell-2 .electron:nth-child(2) {
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.shell-2 .electron:nth-child(3) {
    top: 50%;
    right: -35px;
    transform: translateY(-50%);
    animation-delay: 3.5s;
}

.orbit-paths {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 102, 0, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 200px;
    height: 200px;
    animation: rotate 30s linear infinite;
}

.orbit-2 {
    width: 300px;
    height: 300px;
    animation: rotate 40s linear infinite reverse;
}

.energy-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.wave {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 102, 0, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: expand 4s ease-out infinite;
}

.wave-1 {
    width: 50px;
    height: 50px;
    animation-delay: 0s;
}

.wave-2 {
    width: 50px;
    height: 50px;
    animation-delay: 1.5s;
}

.wave-3 {
    width: 50px;
    height: 50px;
    animation-delay: 3s;
}

@keyframes expand {
    0% {
        width: 50px;
        height: 50px;
        opacity: 1;
    }
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

/* Network Structure Infographic */
.story-infographic-4 {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.network-structure {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-node {
    position: absolute;
    z-index: 3;
}

.node-core {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.3);
    animation: pulse 4s ease-in-out infinite;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.node-core::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15), transparent);
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

.node-core i {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.node-core .node-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.network-branches {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.branch {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 5s ease-in-out infinite;
}

.branch-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
}

.node-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.node-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1), transparent);
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

.node-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.2);
    border-color: var(--primary-color);
}

.node-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
    margin-top: 0.5rem;
}

.branch-connection {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(255, 102, 0, 0.3));
    position: relative;
    animation: flow 3s ease-in-out infinite;
}

.branch-connection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    animation: flowLight 2s ease-in-out infinite;
}

/* Branch positions */
.branch-1 {
    top: 5%;
    left: 20%;
    animation-delay: 0s;
}

.branch-2 {
    top: 5%;
    right: 20%;
    animation-delay: 0.8s;
}

.branch-3 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    animation-delay: 1.6s;
}

.branch-4 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation-delay: 2.4s;
}

.branch-5 {
    bottom: 5%;
    left: 25%;
    animation-delay: 3.2s;
}

.branch-6 {
    bottom: 5%;
    right: 25%;
    animation-delay: 4s;
}

.data-flow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.flow-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.2), transparent);
    animation: flowMove 6s linear infinite;
}

.flow-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: flowLight 3s ease-in-out infinite;
}

.flow-1 {
    width: 200px;
    height: 1px;
    top: 30%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    animation-delay: 0s;
}

.flow-2 {
    width: 200px;
    height: 1px;
    top: 70%;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    animation-delay: 2s;
}

.flow-3 {
    width: 200px;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    animation-delay: 4s;
}

.network-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.dot-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.dot-2 {
    top: 25%;
    right: 35%;
    animation-delay: 1.5s;
}

.dot-3 {
    top: 60%;
    left: 15%;
    animation-delay: 3s;
}

.dot-4 {
    top: 65%;
    right: 20%;
    animation-delay: 4.5s;
}

.dot-5 {
    bottom: 25%;
    left: 40%;
    animation-delay: 6s;
}

.dot-6 {
    bottom: 30%;
    right: 45%;
    animation-delay: 7.5s;
}

@keyframes flow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

@keyframes flowLight {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@keyframes flowMove {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* SEO Services Page Styles */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.seo-illustration {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.search-engine {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.search-bar i:first-child {
    color: #6c757d;
}

.search-bar span {
    flex: 1;
    font-weight: 500;
    color: var(--dark-color);
}

.search-bar i:last-child {
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

.ranking-results {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.result-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    color: white;
}

.result-1 .result-number {
    background: var(--primary-color);
}

.result-2 .result-number {
    background: #6c757d;
}

.result-3 .result-number {
    background: #adb5bd;
}

.result-content {
    flex: 1;
}

.result-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.result-url {
    font-size: 0.8rem;
    color: #28a745;
}

.seo-metrics {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.75rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.metric-data {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-weight: bold;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.metric-label {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-icon i {
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

/* Result Cards */
.result-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.result-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.result-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
}

/* Tool Logos */
.tool-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tool-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-logo svg {
    width: 32px;
    height: 32px;
}

/* Process Cards */
.process-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem;
    color: white;
    font-size: 2rem;
}

/* Grid Process Design */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.process-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.12);
}

.process-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 133, 51, 0.1));
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.process-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.process-item:hover .process-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.process-item h5 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.25rem;
}

.process-item p {
    margin-bottom: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* New CTA Design */
.cta-new-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.cta-new-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.cta-content h2 {
    color: var(--dark-color);
    font-size: 1.75rem;
    line-height: 1.2;
}

.cta-content .lead {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-color);
    font-weight: 500;
}

.cta-feature i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.cta-action {
    text-align: center;
}

.cta-action .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta-action .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.cta-action .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.cta-action .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.cta-action .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.2);
}

/* Services Illustration */
.services-illustration {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hub {
    position: relative;
    width: 300px;
    height: 300px;
}

.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
}

.hub-center i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.hub-center span {
    font-size: 0.75rem;
    text-align: center;
}

.service-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.node i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.node.marketing {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.node.development {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.node.design {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.node.analytics {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Portfolio Illustration */
.portfolio-illustration {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-showcase {
    position: relative;
    width: 300px;
    height: 300px;
}

.showcase-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.75rem;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.1);
}

.showcase-item .item-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.showcase-item .item-label {
    text-align: center;
    line-height: 1.2;
}

.showcase-item.showcase-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.showcase-item.showcase-2 {
    top: 10%;
    right: 10%;
    animation-delay: 1s;
}

.showcase-item.showcase-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

.showcase-item.showcase-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

/* Tech Logos */
.tech-logo {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.tech-logo:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.1);
}

.tech-logo i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.tech-logo span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* Contact Illustration */
.contact-illustration {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hub {
    position: relative;
    width: 300px;
    height: 300px;
}

.contact-hub .hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
}

.contact-hub .hub-center i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.contact-hub .hub-center span {
    font-size: 0.75rem;
    text-align: center;
}

.contact-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-nodes .node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.contact-nodes .node i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.contact-nodes .node.email {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.contact-nodes .node.phone {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.contact-nodes .node.chat {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.contact-nodes .node.meeting {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

/* Contact Form */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

/* Clean Contact Form Layout */
#contact-form .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

#contact-form .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding-right: 15px;
    padding-left: 15px;
}

#contact-form .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (max-width: 991.98px) {
    #contact-form .col-lg-8,
    #contact-form .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Contact Info */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    height: fit-content;
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    float: none !important;
    clear: none !important;
}

/* Ensure proper side-by-side layout on large screens */
@media (min-width: 992px) {
    .contact-info-card {
        position: sticky;
        top: 2rem;
    }
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 133, 51, 0.1));
    border: 1px solid rgba(255, 102, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content h6 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.info-content p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
}

.social-links .social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 133, 51, 0.1));
    border: 1px solid rgba(255, 102, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links .social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* FAQ Items */
.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.1);
}

/* Service Page Illustrations */
.marketing-illustration,
.webdev-illustration,
.mobile-illustration,
.design-illustration,
.analytics-illustration,
.ppc-illustration,
.social-illustration,
.email-illustration,
.content-illustration,
.branding-illustration,
.custom-software-illustration,
.ecommerce-illustration,
.ai-marketing-illustration,
.chatbots-illustration,
.ai-personalization-illustration,
.predictive-analytics-illustration {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marketing-hub,
.webdev-hub,
.mobile-hub,
.design-hub,
.analytics-hub,
.ppc-hub,
.social-hub,
.email-hub,
.content-hub,
.branding-hub,
.custom-software-hub,
.ecommerce-hub,
.ai-marketing-hub,
.chatbots-hub,
.ai-personalization-hub,
.predictive-analytics-hub {
    position: relative;
    width: 300px;
    height: 300px;
}

.marketing-hub .hub-center,
.webdev-hub .hub-center,
.mobile-hub .hub-center,
.design-hub .hub-center,
.analytics-hub .hub-center,
.ppc-hub .ppc-center,
.social-hub .social-center,
.email-hub .email-center,
.content-hub .content-center,
.branding-hub .branding-center,
.custom-software-hub .custom-software-center,
.ecommerce-hub .ecommerce-center,
.ai-marketing-hub .ai-marketing-center,
.chatbots-hub .chatbots-center,
.ai-personalization-hub .ai-personalization-center,
.predictive-analytics-hub .predictive-analytics-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    z-index: 10;
    animation: pulse 2s ease-in-out infinite;
}

.marketing-hub .hub-center i,
.webdev-hub .hub-center i,
.mobile-hub .hub-center i,
.design-hub .hub-center i,
.analytics-hub .hub-center i,
.ppc-hub .ppc-center i,
.social-hub .social-center i,
.email-hub .email-center i,
.content-hub .content-center i,
.branding-hub .branding-center i,
.custom-software-hub .custom-software-center i,
.ecommerce-hub .ecommerce-center i,
.ai-marketing-hub .ai-marketing-center i,
.chatbots-hub .chatbots-center i,
.ai-personalization-hub .ai-personalization-center i,
.predictive-analytics-hub .predictive-analytics-center i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.marketing-hub .hub-center span,
.webdev-hub .hub-center span,
.mobile-hub .hub-center span,
.design-hub .hub-center span,
.analytics-hub .hub-center span,
.ppc-hub .ppc-center span,
.social-hub .social-center span,
.email-hub .email-center span,
.content-hub .content-center span,
.branding-hub .branding-center span,
.custom-software-hub .custom-software-center span,
.ecommerce-hub .ecommerce-center span,
.ai-marketing-hub .ai-marketing-center span,
.chatbots-hub .chatbots-center span,
.ai-personalization-hub .ai-personalization-center span,
.predictive-analytics-hub .predictive-analytics-center span {
    font-size: 0.75rem;
    text-align: center;
}

.marketing-nodes,
.webdev-nodes,
.mobile-nodes,
.design-nodes,
.analytics-nodes,
.ppc-nodes,
.social-nodes,
.email-nodes,
.content-nodes,
.branding-nodes,
.custom-software-nodes,
.ecommerce-nodes,
.ai-marketing-nodes,
.chatbots-nodes,
.ai-personalization-nodes,
.predictive-analytics-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.marketing-nodes .node,
.webdev-nodes .node,
.mobile-nodes .node,
.design-nodes .node,
.analytics-nodes .node,
.ppc-nodes .ppc-node,
.social-nodes .social-node,
.email-nodes .email-node,
.content-nodes .content-node,
.branding-nodes .branding-node,
.custom-software-nodes .custom-software-node,
.ecommerce-nodes .ecommerce-node,
.ai-marketing-nodes .ai-marketing-node,
.chatbots-nodes .chatbots-node,
.ai-personalization-nodes .ai-personalization-node,
.predictive-analytics-nodes .predictive-analytics-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.marketing-nodes .node i,
.webdev-nodes .node i,
.mobile-nodes .node i,
.design-nodes .node i,
.analytics-nodes .node i,
.ppc-nodes .ppc-node i,
.social-nodes .social-node i,
.email-nodes .email-node i,
.content-nodes .content-node i,
.branding-nodes .branding-node i,
.custom-software-nodes .custom-software-node i,
.ecommerce-nodes .ecommerce-node i,
.ai-marketing-nodes .ai-marketing-node i,
.chatbots-nodes .chatbots-node i,
.ai-personalization-nodes .ai-personalization-node i,
.predictive-analytics-nodes .predictive-analytics-node i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

/* Marketing Nodes */
.marketing-nodes .node.ppc {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.marketing-nodes .node.social {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.marketing-nodes .node.email {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.marketing-nodes .node.content {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

/* Web Development Nodes */
.webdev-nodes .node.frontend {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.webdev-nodes .node.backend {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.webdev-nodes .node.database {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.webdev-nodes .node.api {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

/* Mobile Development Nodes */
.mobile-nodes .node.ios {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.mobile-nodes .node.android {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.mobile-nodes .node.cross {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.mobile-nodes .node.aso {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

/* Design Nodes */
.design-nodes .node.research {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.design-nodes .node.wireframe {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.design-nodes .node.prototype {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.design-nodes .node.test {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

/* Analytics Nodes */
.analytics-nodes .node.tracking {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.analytics-nodes .node.analysis {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.analytics-nodes .node.reporting {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.analytics-nodes .node.insights {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

/* PPC Nodes */
.ppc-nodes .ppc-node:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.ppc-nodes .ppc-node:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.ppc-nodes .ppc-node:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.ppc-nodes .ppc-node:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.ppc-nodes .ppc-node:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.ppc-nodes .ppc-node:nth-child(6) {
    top: 60%;
    right: 5%;
    animation-delay: 2.5s;
}

/* Social Media Nodes */
.social-nodes .social-node:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.social-nodes .social-node:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.social-nodes .social-node:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.social-nodes .social-node:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.social-nodes .social-node:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.social-nodes .social-node:nth-child(6) {
    top: 60%;
    right: 5%;
    animation-delay: 2.5s;
}

/* Email Marketing Nodes */
.email-nodes .email-node:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.email-nodes .email-node:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.email-nodes .email-node:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.email-nodes .email-node:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.email-nodes .email-node:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.email-nodes .email-node:nth-child(6) {
    top: 60%;
    right: 5%;
    animation-delay: 2.5s;
}

/* Content Marketing Nodes */
.content-nodes .content-node:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.content-nodes .content-node:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.content-nodes .content-node:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.content-nodes .content-node:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.content-nodes .content-node:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.content-nodes .content-node:nth-child(6) {
    top: 60%;
    right: 5%;
    animation-delay: 2.5s;
}

/* Branding & Creative Nodes */
.branding-nodes .branding-node:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.branding-nodes .branding-node:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.branding-nodes .branding-node:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.branding-nodes .branding-node:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.branding-nodes .branding-node:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.branding-nodes .branding-node:nth-child(6) {
    top: 60%;
    right: 5%;
    animation-delay: 2.5s;
}

/* Custom Software Nodes */
.custom-software-nodes .custom-software-node:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.custom-software-nodes .custom-software-node:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.custom-software-nodes .custom-software-node:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.custom-software-nodes .custom-software-node:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.custom-software-nodes .custom-software-node:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.custom-software-nodes .custom-software-node:nth-child(6) {
    top: 60%;
    right: 5%;
    animation-delay: 2.5s;
}

/* Ecommerce Nodes */
.ecommerce-nodes .ecommerce-node:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.ecommerce-nodes .ecommerce-node:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.ecommerce-nodes .ecommerce-node:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.ecommerce-nodes .ecommerce-node:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.ecommerce-nodes .ecommerce-node:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.ecommerce-nodes .ecommerce-node:nth-child(6) {
    top: 60%;
    right: 5%;
    animation-delay: 2.5s;
}

/* AI Marketing Nodes */
.ai-marketing-nodes .ai-marketing-node:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.ai-marketing-nodes .ai-marketing-node:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.ai-marketing-nodes .ai-marketing-node:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.ai-marketing-nodes .ai-marketing-node:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.ai-marketing-nodes .ai-marketing-node:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.ai-marketing-nodes .ai-marketing-node:nth-child(6) {
    top: 60%;
    right: 5%;
    animation-delay: 2.5s;
}

/* Chatbots Nodes */
.chatbots-nodes .chatbots-node:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.chatbots-nodes .chatbots-node:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.chatbots-nodes .chatbots-node:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.chatbots-nodes .chatbots-node:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.chatbots-nodes .chatbots-node:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.chatbots-nodes .chatbots-node:nth-child(6) {
    top: 60%;
    right: 5%;
    animation-delay: 2.5s;
}

/* AI Personalization Nodes */
.ai-personalization-nodes .ai-personalization-node:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.ai-personalization-nodes .ai-personalization-node:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.ai-personalization-nodes .ai-personalization-node:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.ai-personalization-nodes .ai-personalization-node:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.ai-personalization-nodes .ai-personalization-node:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.ai-personalization-nodes .ai-personalization-node:nth-child(6) {
    top: 60%;
    right: 5%;
    animation-delay: 2.5s;
}

/* Predictive Analytics Nodes */
.predictive-analytics-nodes .predictive-analytics-node:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.predictive-analytics-nodes .predictive-analytics-node:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.predictive-analytics-nodes .predictive-analytics-node:nth-child(3) {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.predictive-analytics-nodes .predictive-analytics-node:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.predictive-analytics-nodes .predictive-analytics-node:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.predictive-analytics-nodes .predictive-analytics-node:nth-child(6) {
    top: 60%;
    right: 5%;
    animation-delay: 2.5s;
}

/* UI/UX Design Illustration */
.ui-ux-illustration {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 20px;
}

.design-hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.design-core {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    animation: pulse 2s ease-in-out infinite;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.design-core i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.design-core span {
    font-size: 0.75rem;
    text-align: center;
}

/* Design Process Nodes */
.design-process-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.process-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

.node-icon {
    width: 70px;
    height: 70px;
    background: white;
    border: 3px solid #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.node-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
}

.node-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

/* Override for central node label */
.story-infographic-4 .node-core .node-label {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* Node Positions */
.research-node {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.wireframe-node {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.prototype-node {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.test-node {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

/* Design Elements */
.design-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.design-element {
    position: absolute;
    animation: float 4s ease-in-out infinite;
}

/* Color Palette */
.color-palette {
    top: 15%;
    right: 5%;
    display: flex;
    gap: 0.5rem;
    animation-delay: 0.5s;
    background: white;
    padding: 0.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.color-swatch {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.color-swatch:hover {
    transform: scale(1.2);
}

/* Wireframe Box */
.wireframe-box {
    bottom: 15%;
    left: 5%;
    width: 90px;
    height: 70px;
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: 0.75rem;
    background: white;
    animation-delay: 1s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.wireframe-line {
    height: 3px;
    background: #667eea;
    margin-bottom: 0.5rem;
    border-radius: 2px;
}

.wireframe-line:nth-child(1) { width: 100%; }
.wireframe-line:nth-child(2) { width: 70%; }
.wireframe-line:nth-child(3) { width: 50%; }

.wireframe-circle {
    width: 15px;
    height: 15px;
    background: #667eea;
    border-radius: 50%;
    margin-top: 0.25rem;
}

/* Mockup Screen */
.mockup-screen {
    top: 50%;
    right: 10%;
    width: 70px;
    height: 90px;
    border: 3px solid #667eea;
    border-radius: 12px;
    background: white;
    overflow: hidden;
    animation-delay: 1.5s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.screen-header {
    height: 15px;
    background: #667eea;
}

.screen-content {
    padding: 0.25rem;
}

.content-block {
    height: 5px;
    background: #667eea;
    margin-bottom: 0.3rem;
    border-radius: 3px;
    opacity: 0.7;
}

.content-block:nth-child(1) { width: 100%; }
.content-block:nth-child(2) { width: 80%; }
.content-block:nth-child(3) { width: 60%; }

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.process-connections {
    width: 100%;
    height: 100%;
}

.connection-path {
    fill: none;
    stroke: #667eea;
    stroke-width: 3;
    stroke-dasharray: 8,8;
    opacity: 0.4;
    animation: dash 4s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -10;
    }
}

/* UI/UX Design Infographic - REMOVED */

/* Design Branches - REMOVED */

/* Color Palette */
.color-palette {
    top: 15%;
    right: 5%;
    display: flex;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation-delay: 0.5s;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.color-swatch:hover {
    transform: scale(1.2);
}

/* Wireframe Box */
.wireframe-box {
    bottom: 15%;
    left: 5%;
    width: 80px;
    height: 60px;
    border: 2px solid #667eea;
    border-radius: 8px;
    padding: 0.5rem;
    background: white;
    animation-delay: 1s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.wireframe-line {
    height: 2px;
    background: #667eea;
    margin-bottom: 0.5rem;
    border-radius: 1px;
}

.wireframe-line:nth-child(1) { width: 100%; }
.wireframe-line:nth-child(2) { width: 70%; }
.wireframe-line:nth-child(3) { width: 50%; }

.wireframe-circle {
    width: 10px;
    height: 10px;
    background: #667eea;
    border-radius: 50%;
    margin-top: 0.25rem;
}

/* Mockup Screen */
.mockup-screen {
    top: 50%;
    right: 10%;
    width: 60px;
    height: 80px;
    border: 2px solid #667eea;
    border-radius: 8px;
    background: white;
    overflow: hidden;
    animation-delay: 1.5s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.screen-header {
    height: 12px;
    background: #667eea;
}

.screen-content {
    padding: 0.25rem;
}

.content-block {
    height: 4px;
    background: #667eea;
    margin-bottom: 0.25rem;
    border-radius: 2px;
    opacity: 0.7;
}

.content-block:nth-child(1) { width: 100%; }
.content-block:nth-child(2) { width: 80%; }
.content-block:nth-child(3) { width: 60%; }

/* Design Particles */
.design-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.particle-dot.dot-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.particle-dot.dot-2 {
    top: 60%;
    left: 5%;
    animation-delay: 1s;
}

.particle-dot.dot-3 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.particle-dot.dot-4 {
    bottom: 25%;
    left: 10%;
    animation-delay: 3s;
}

.particle-dot.dot-5 {
    top: 70%;
    right: 20%;
    animation-delay: 4s;
}

.particle-dot.dot-6 {
    top: 40%;
    left: 15%;
    animation-delay: 5s;
}

/* Design Flow */
.design-flow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.flow-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
    animation: slide 8s linear infinite;
}

.flow-line.flow-1 {
    width: 120px;
    top: 40%;
    left: 0;
    animation-delay: 0s;
}

.flow-line.flow-2 {
    width: 100px;
    top: 70%;
    right: 0;
    animation-delay: 3s;
}

.flow-line.flow-3 {
    width: 80px;
    top: 20%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Floating Elements for Sections */
.floating-elements-section {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.floating-dot.dot-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-dot.dot-2 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.floating-dot.dot-3 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.floating-dot.dot-4 {
    bottom: 25%;
    left: 10%;
    animation-delay: 3s;
}

.floating-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.2), transparent);
    animation: slide 10s linear infinite;
}

.floating-line.line-1 {
    width: 100px;
    top: 40%;
    left: 0;
    animation-delay: 0s;
}

.floating-line.line-2 {
    width: 80px;
    top: 70%;
    right: 0;
    animation-delay: 5s;
}

/* Home Page Infographic */
.home-infographic {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.infographic-center {
    position: absolute;
    z-index: 3;
}

.center-core {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff8533, var(--primary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
    animation: pulse 3s ease-in-out infinite;
    position: relative;
}

.center-core::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.2), transparent);
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

.center-core i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.center-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.infographic-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(255, 102, 0, 0.3);
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-direction: normal;
}

.ring-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-direction: reverse;
}

.ring-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 4s ease-in-out infinite;
}

.ring-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 102, 0, 0.2);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.ring-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.3);
    border-color: var(--primary-color);
}

.ring-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
}

/* Ring 1 items */
.ring-1 .item-1 {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.ring-1 .item-2 {
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.ring-1 .item-3 {
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    animation-delay: 3s;
}

/* Ring 2 items */
.ring-2 .item-4 {
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.5s;
}

.ring-2 .item-5 {
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.ring-2 .item-6 {
    top: 50%;
    right: -35px;
    transform: translateY(-50%);
    animation-delay: 3.5s;
}

.infographic-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.3), rgba(255, 133, 51, 0.3));
    transform-origin: left center;
    animation: pulse 3s ease-in-out infinite;
}

.connection-line.line-1 {
    width: 80px;
    top: 25%;
    left: 35%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.connection-line.line-2 {
    width: 80px;
    top: 25%;
    right: 35%;
    transform: rotate(-45deg);
    animation-delay: 0.5s;
}

.connection-line.line-3 {
    width: 60px;
    top: 50%;
    left: 20%;
    transform: translateY(-50%) rotate(90deg);
    animation-delay: 1s;
}

.connection-line.line-4 {
    width: 60px;
    top: 50%;
    right: 20%;
    transform: translateY(-50%) rotate(-90deg);
    animation-delay: 1.5s;
}

.connection-line.line-5 {
    width: 80px;
    bottom: 25%;
    left: 35%;
    transform: rotate(-45deg);
    animation-delay: 2s;
}

.connection-line.line-6 {
    width: 80px;
    bottom: 25%;
    right: 35%;
    transform: rotate(45deg);
    animation-delay: 2.5s;
}

.infographic-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.infographic-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.infographic-particles .particle-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.infographic-particles .particle-2 {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.infographic-particles .particle-3 {
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

.infographic-particles .particle-4 {
    top: 70%;
    right: 15%;
    animation-delay: 3s;
}

.infographic-particles .particle-5 {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

.infographic-particles .particle-6 {
    bottom: 25%;
    right: 30%;
    animation-delay: 5s;
}

/* Home Page Infographic 2 - Spoke Design */
.home-infographic-2 {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.infographic-hub {
    position: absolute;
    z-index: 3;
}

.hub-core {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.3);
    animation: pulse 4s ease-in-out infinite;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hub-core::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.15), transparent);
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

.hub-icon {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.hub-title {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.hub-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
    text-align: center;
}

.infographic-spokes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.spoke {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 5s ease-in-out infinite;
}

.spoke-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
}

.node-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.node-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1), transparent);
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

.node-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.2);
    border-color: var(--primary-color);
}

.node-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: black;
    text-align: center;
    margin-top: 0.5rem;
}

/* Override for central node label */
.story-infographic-4 .node-core .node-label {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    margin-top: 0 !important;
}

.spoke-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(255, 102, 0, 0.3));
    position: relative;
    animation: flow 3s ease-in-out infinite;
}

.spoke-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    animation: flowLight 2s ease-in-out infinite;
}

/* Spoke positions */
.spoke-1 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.spoke-2 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation-delay: 0.8s;
}

.spoke-3 {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.6s;
}

.spoke-4 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    animation-delay: 2.4s;
}

.spoke-5 {
    top: 20%;
    right: 20%;
    animation-delay: 3.2s;
}

.spoke-6 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.infographic-orbits {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 102, 0, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 200px;
    height: 200px;
    animation: rotate 30s linear infinite;
}

.orbit-2 {
    width: 300px;
    height: 300px;
    animation: rotate 40s linear infinite reverse;
}

.infographic-data-flow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.data-stream {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.2), transparent);
    animation: flowMove 6s linear infinite;
}

.data-stream::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: flowLight 3s ease-in-out infinite;
}

.stream-1 {
    width: 200px;
    height: 1px;
    top: 30%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    animation-delay: 0s;
}

.stream-2 {
    width: 200px;
    height: 1px;
    top: 70%;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    animation-delay: 2s;
}

.stream-3 {
    width: 200px;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    animation-delay: 4s;
}

/* Home Page Infographic 3 - Hexagonal Matrix */
.home-infographic-3 {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.infographic-matrix {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.matrix-center {
    position: absolute;
    z-index: 3;
}

.center-hexagon {
    width: 140px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.4);
    animation: pulse 4s ease-in-out infinite;
    position: relative;
}

.center-hexagon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.3), rgba(255, 133, 51, 0.3));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

.hex-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.hex-content i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hex-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.hex-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
}

.matrix-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.grid-item {
    position: absolute;
    animation: float 5s ease-in-out infinite;
}

.item-hexagon {
    width: 80px;
    height: 90px;
    background: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 102, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.item-hexagon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 133, 51, 0.1));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

.item-hexagon:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.2);
    border-color: var(--primary-color);
}

.item-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.item-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
    line-height: 1.1;
}

/* Grid item positions */
.item-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.item-2 {
    top: 10%;
    right: 20%;
    animation-delay: 0.8s;
}

.item-3 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    animation-delay: 1.6s;
}

.item-4 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation-delay: 2.4s;
}

.item-5 {
    bottom: 10%;
    left: 25%;
    animation-delay: 3.2s;
}

.item-6 {
    bottom: 10%;
    right: 25%;
    animation-delay: 4s;
}

.infographic-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.connection-path {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.4), rgba(255, 133, 51, 0.4));
    transform-origin: left center;
    animation: pulse 4s ease-in-out infinite;
}

.connection-path::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: flowLight 3s ease-in-out infinite;
}

.path-1 {
    width: 100px;
    top: 25%;
    left: 35%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.path-2 {
    width: 100px;
    top: 25%;
    right: 35%;
    transform: rotate(-45deg);
    animation-delay: 0.8s;
}

.path-3 {
    width: 80px;
    top: 50%;
    left: 25%;
    transform: translateY(-50%) rotate(90deg);
    animation-delay: 1.6s;
}

.path-4 {
    width: 80px;
    top: 50%;
    right: 25%;
    transform: translateY(-50%) rotate(-90deg);
    animation-delay: 2.4s;
}

.path-5 {
    width: 100px;
    bottom: 25%;
    left: 35%;
    transform: rotate(-45deg);
    animation-delay: 3.2s;
}

.path-6 {
    width: 100px;
    bottom: 25%;
    right: 35%;
    transform: rotate(45deg);
    animation-delay: 4s;
}

.infographic-energy {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.energy-wave {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 102, 0, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: expand 5s ease-out infinite;
}

.energy-wave.wave-1 {
    width: 50px;
    height: 50px;
    animation-delay: 0s;
}

.energy-wave.wave-2 {
    width: 50px;
    height: 50px;
    animation-delay: 2s;
}

.energy-wave.wave-3 {
    width: 50px;
    height: 50px;
    animation-delay: 4s;
}

/* Home Page Infographic 4 - Pyramid Design */
.home-infographic-4 {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.infographic-pyramid {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pyramid-base {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.base-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 4s ease-in-out infinite;
}

.base-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.6rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 102, 0, 0.2);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.base-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1), transparent);
    animation: pulse 2s ease-in-out infinite;
    z-index: -1;
}

.base-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.2);
    border-color: var(--primary-color);
}

.base-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
}

.base-1 {
    animation-delay: 0s;
}

.base-2 {
    animation-delay: 1s;
}

.base-3 {
    animation-delay: 2s;
}

.pyramid-middle {
    display: flex;
    gap: 3rem;
    margin-bottom: 1rem;
}

.middle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 4s ease-in-out infinite;
}

.middle-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(255, 133, 51, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 102, 0, 0.3);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.middle-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.2);
    border-color: var(--primary-color);
}

.middle-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: center;
}

.middle-1 {
    animation-delay: 0.5s;
}

.middle-2 {
    animation-delay: 1.5s;
}

.pyramid-top {
    margin-bottom: 1rem;
}

.top-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}

.top-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.3);
    margin-bottom: 0.75rem;
    position: relative;
}

.top-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.2), transparent);
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

.top-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 0.25rem;
}

.top-subtitle {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

.pyramid-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.pyramid-line {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.6), rgba(255, 133, 51, 0.6), transparent);
    transform-origin: left center;
    animation: pulse 4s ease-in-out infinite;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.3);
}

.pyramid-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: flowLight 3s ease-in-out infinite;
    border-radius: 2px;
}

.line-1 {
    width: 140px;
    top: 32%;
    left: 22%;
    transform: rotate(35deg);
    animation-delay: 0s;
}

.line-2 {
    width: 140px;
    top: 32%;
    right: 22%;
    transform: rotate(-35deg);
    animation-delay: 0.5s;
}

.line-3 {
    width: 120px;
    top: 48%;
    left: 32%;
    transform: rotate(50deg);
    animation-delay: 1s;
}

.line-4 {
    width: 120px;
    top: 48%;
    right: 32%;
    transform: rotate(-50deg);
    animation-delay: 1.5s;
}

.line-5 {
    width: 100px;
    top: 62%;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    animation-delay: 2s;
}

.pyramid-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.pyramid-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

.particle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle-2 {
    top: 25%;
    right: 25%;
    animation-delay: 1s;
}

.particle-3 {
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.particle-4 {
    top: 65%;
    right: 20%;
    animation-delay: 3s;
}

.particle-5 {
    bottom: 30%;
    left: 30%;
    animation-delay: 4s;
}

.particle-6 {
    bottom: 35%;
    right: 35%;
    animation-delay: 5s;
}

/* UI/UX Hero Visual - Now uses home page pattern */

/* Cloudflare Turnstile Styling */
.cf-turnstile {
    margin: 1rem auto;
    display: flex;
    justify-content: center;
}

/* Spam Protection Styles */
.form-group .text-danger {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

#rateLimitMessage {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 0.375rem;
    padding: 0.75rem;
    margin-top: 1rem;
}

#turnstile-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 0.375rem;
    padding: 0.75rem;
}

/* Loading state for submit button */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
