/* ==============================
   Star IT - Custom Styles
   ============================== */

/* CSS Variables for Color Scheme */
:root {
    --primary-color: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --text-dark: #374151;
    --text-light: #6b7280;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Custom Bootstrap Overrides */
.bg-primary {
    background: var(--gradient-primary) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-warning {
    background: var(--gradient-secondary);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Navigation Styles */
.navbar {
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    padding: 1rem 0;
    background: white !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark) !important;
}

.navbar-brand .text-warning {
    color: var(--secondary-color) !important;
}

.navbar-toggler {
    border: 1px solid var(--text-dark);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
    color: var(--text-dark) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-section .lead {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-section .btn {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* About Section */
#about {
    padding: 100px 0;
}

.stat-card {
    background: rgba(249, 158, 11, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(249, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(249, 158, 11, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Service Cards */
.service-card {
    border: none !important;
    transition: all 0.3s ease;
    border-radius: 20px !important;
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card .btn {
    position: relative;
    overflow: hidden;
}

.service-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.3s;
}

.service-card .btn:hover::before {
    left: 100%;
}

/* Rental Cards */
.rental-card {
    transition: all 0.3s ease;
    border-radius: 20px !important;
}

.rental-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.rental-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rental-card:hover img {
    transform: scale(1.05);
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}

.contact-item {
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(249, 158, 11, 0.25);
    color: var(--white);
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px 20px 0 0;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section .col-lg-6:first-child {
        margin-bottom: 3rem;
    }
    
    .navbar-nav {
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .service-card,
    .rental-card {
        margin-bottom: 2rem;
    }
    
    .hero-image img {
        transform: none;
        margin-top: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-form .form-control,
    .contact-form .form-select {
        padding: 10px 12px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .modal,
    .btn {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
    
    * {
        box-shadow: none !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator {
        animation: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .service-card,
    .rental-card {
        border: 2px solid var(--text-dark) !important;
    }
    
    .hero-section {
        background: var(--dark-color) !important;
    }
}

/* Focus states for better accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus,
.nav-link:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Placeholder Images */
.placeholder-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.5s ease;
    overflow: hidden;
    position: relative;
}

.hero-tech-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #6366f1 100%);
}

.about-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
}

.rental-placeholder {
    height: 200px;
    margin-bottom: 1rem;
}

.laptop-bg {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.desktop-bg {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.signage-bg {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.gaming-bg {
    background: linear-gradient(135deg, #c2410c 0%, #ea580c 100%);
}

/* Service Modal Placeholder Backgrounds */
.security-service-bg {
    background: linear-gradient(135deg, #374151 0%, #6b7280 100%);
}

.network-service-bg {
    background: linear-gradient(135deg, #065f46 0%, #059669 100%);
}

.communication-service-bg {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.data-service-bg {
    background: linear-gradient(135deg, #7c2d12 0%, #dc2626 100%);
}

.consulting-service-bg {
    background: linear-gradient(135deg, #581c87 0%, #7c3aed 100%);
}

.virus-service-bg {
    background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
}

/* Page Header Styles */
.page-header {
    padding-top: 120px;
    min-height: 50vh;
    background: var(--gradient-primary);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%) !important;
}

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

/* About Page Styles */
.about-header-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #374151 0%, #6b7280 100%);
}

.story-placeholder {
    height: 350px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.security-header-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #374151 0%, #6b7280 100%);
}

.computer-header-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

/* Foundation Cards */
.foundation-card {
    transition: all 0.3s ease;
    border: none !important;
}

.foundation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl) !important;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Team Cards */
.team-card {
    transition: all 0.3s ease;
    border: none !important;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl) !important;
}

.team-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.team-card:hover .team-placeholder {
    transform: scale(1.1);
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    border: none !important;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl) !important;
}

/* Service Detail Cards */
.service-detail-card {
    transition: all 0.3s ease;
    border: none !important;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl) !important;
}

/* Process Steps */
.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Industry Cards */
.industry-card {
    transition: all 0.3s ease;
    border: none !important;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl) !important;
}

/* Partner Logos */
.placeholder-brand {
    padding: 20px;
    border-radius: 10px;
    background: rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
}

.placeholder-brand:hover {
    background: rgba(30, 58, 138, 0.2);
    transform: scale(1.05);
}

/* Equipment Cards */
.rental-equipment-card {
    transition: all 0.3s ease;
    border: none !important;
}

.rental-equipment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl) !important;
}

.equipment-image {
    min-height: 150px;
}

/* Pricing Styles */
.pricing {
    background: rgba(30, 58, 138, 0.05);
    border-radius: 10px;
    padding: 15px;
}

/* Benefit Cards */
.benefit-card {
    transition: all 0.3s ease;
    border: none !important;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white !important;
}

/* Discount Cards */
.discount-card {
    transition: all 0.3s ease;
    border: none !important;
}

.discount-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl) !important;
}

/* Additional Services */
.additional-service {
    transition: all 0.3s ease;
}

.additional-service:hover {
    transform: translateY(-5px);
}

/* Breadcrumb Styling */
.breadcrumb {
    background: none;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--secondary-color);
}

/* Mega Menu Styles */
.mega-menu {
    position: static !important;
}

.mega-menu .dropdown-menu {
    width: 100%;
    max-width: 1200px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: 15px;
    padding: 2rem;
    background: white;
    z-index: 1050;
}

/* Services Mega Menu Styles */
.services-mega-menu {
    position: static !important;
}

.services-mega-menu .services-dropdown {
    width: 600px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: 15px;
    padding: 1.5rem;
    background: white;
    z-index: 1050;
    max-height: 500px;
    overflow-y: auto;
}

.services-item {
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.services-item:hover {
    background: rgba(30, 58, 138, 0.05);
    color: inherit;
    text-decoration: none;
}

.services-item.active {
    background: rgba(30, 58, 138, 0.1);
    border-left: 4px solid var(--primary-color);
}

.services-item i {
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.services-item div {
    flex-grow: 1;
}

.dropdown-header {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    padding: 8px 15px;
    border-bottom: 2px solid rgba(30, 58, 138, 0.1);
}

.mega-menu-item {
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.mega-menu-item:hover {
    background: rgba(30, 58, 138, 0.05);
    transform: translateY(-2px);
    color: inherit;
    text-decoration: none;
}

.mega-menu-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.mega-menu-item:hover .mega-menu-icon {
    transform: scale(1.1);
}

.computer-icon { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.signage-icon { background: linear-gradient(135deg, #ea580c, #f97316); }
.gaming-icon { background: linear-gradient(135deg, #dc2626, #ef4444); }
.display-icon { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.tablet-icon { background: linear-gradient(135deg, #059669, #10b981); }
.printer-icon { background: linear-gradient(135deg, #4338ca, #6366f1); }

.mega-menu-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.mega-menu-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.4;
}

.mega-menu-featured {
    background: rgba(249, 158, 11, 0.1);
    border: 2px solid rgba(249, 158, 11, 0.2);
    position: relative;
}

.mega-menu-featured::before {
    content: 'Featured';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient-secondary);
    color: white;
    padding: 2px 8px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Responsive Mega Menu */
@media (max-width: 991.98px) {
    .mega-menu .dropdown-menu {
        position: relative !important;
        width: 100%;
        transform: none;
        left: 0;
        box-shadow: none;
        border-radius: 0;
        padding: 1rem;
    }
    
    .mega-menu-item {
        padding: 1rem;
        margin-bottom: 0.5rem;
        border-radius: 8px;
        background: rgba(30, 58, 138, 0.05);
    }
    
    .mega-menu-icon {
        width: 60px;
        height: 60px;
        float: left;
        margin-right: 1rem;
        margin-bottom: 0;
    }
    
    .mega-menu-content {
        overflow: hidden;
    }
    
    /* Services Mega Menu Responsive */
    .services-mega-menu .services-dropdown {
        position: relative !important;
        width: 100%;
        transform: none;
        left: 0;
        box-shadow: none;
        border-radius: 0;
        padding: 1rem;
        max-height: none;
    }
    
    .services-item {
        padding: 10px 15px;
        margin-bottom: 8px;
        background: rgba(30, 58, 138, 0.05);
        border-radius: 8px;
    }
    
    .dropdown-header {
        margin-top: 15px;
        margin-bottom: 8px;
        font-size: 0.85rem;
    }
    
    .dropdown-header:first-child {
        margin-top: 5px;
    }
}

/* Placeholder image hover effects */
.placeholder-img:hover {
    transform: scale(1.05);
}

.hero-tech-placeholder:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.rental-card:hover .rental-placeholder {
    transform: scale(1.1);
}

/* Add animated patterns to placeholders */
.placeholder-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.placeholder-img:hover::before {
    left: 100%;
}

/* Additional Placeholder Styles for Pages */
.hero-computer-placeholder,
.hero-signage-placeholder,
.hero-gaming-placeholder,
.hero-display-placeholder,
.hero-tablet-placeholder,
.hero-printer-placeholder,
.hero-network-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #6366f1 100%);
}

.equipment-placeholder {
    height: 180px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.multifunction-bg { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.laser-printer-bg { background: linear-gradient(135deg, #dc2626, #ef4444); }
.color-printer-bg { background: linear-gradient(135deg, #059669, #10b981); }
.scanner-bg { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.wide-format-bg { background: linear-gradient(135deg, #ea580c, #f97316); }
.portable-printer-bg { background: linear-gradient(135deg, #4338ca, #6366f1); }
.ipad-pro-bg { background: linear-gradient(135deg, #374151, #6b7280); }
.ipad-air-bg { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.ipad-bg { background: linear-gradient(135deg, #065f46, #059669); }
.android-tablet-bg { background: linear-gradient(135deg, #c2410c, #ea580c); }
.tablet-stand-bg { background: linear-gradient(135deg, #581c87, #7c3aed); }
.kiosk-tablet-bg { background: linear-gradient(135deg, #7c2d12, #dc2626); }
.laptop-gaming-bg { background: linear-gradient(135deg, #dc2626, #ef4444); }
.desktop-gaming-bg { background: linear-gradient(135deg, #c2410c, #ea580c); }
.monitor-gaming-bg { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.peripheral-gaming-bg { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.vr-gaming-bg { background: linear-gradient(135deg, #059669, #10b981); }
.console-gaming-bg { background: linear-gradient(135deg, #374151, #6b7280); }
.projector-bg { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.display-bg { background: linear-gradient(135deg, #dc2626, #ef4444); }
.audio-bg { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.camera-bg { background: linear-gradient(135deg, #374151, #6b7280); }
.lighting-bg { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.accessories-bg { background: linear-gradient(135deg, #059669, #10b981); }
.service-header-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}
.consulting-placeholder,
.data-placeholder,
.network-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.equipment-card {
    transition: all 0.3s ease;
    border: none !important;
    border-radius: 15px;
    overflow: hidden;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl) !important;
}

.application-card {
    transition: all 0.3s ease;
    border: none !important;
    padding: 20px;
    text-align: center;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white !important;
}

.application-icon {
    margin-bottom: 15px;
}

.process-step {
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
}

.price-tag {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Breadcrumb Section *//* ==============================
   Star IT - Custom Styles
   ============================== */

/* CSS Variables for Color Scheme */
:root {
    --primary-color: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --text-dark: #374151;
    --text-light: #6b7280;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Custom Bootstrap Overrides */
.bg-primary {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-warning {
    background: var(--gradient-secondary);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Navigation Styles */
.navbar {
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    padding: 1rem 0;
    background: white !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark) !important;
}

.navbar-brand .text-warning {
    color: var(--secondary-color) !important;
}

.navbar-toggler {
    border: 2px solid var(--text-dark) !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.25) !important;
    border-color: var(--primary-color) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em !important;
    height: 1.5em !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
    color: var(--text-dark) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-section .lead {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-section .btn {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* About Section */
#about {
    padding: 100px 0;
}

.stat-card {
    background: rgba(249, 158, 11, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(249, 158, 11, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(249, 158, 11, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Service Cards */
.service-card {
    border: none !important;
    transition: all 0.3s ease;
    border-radius: 20px !important;
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card .btn {
    position: relative;
    overflow: hidden;
}

.service-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.3s;
}

.service-card .btn:hover::before {
    left: 100%;
}

/* Rental Cards */
.rental-card {
    transition: all 0.3s ease;
    border-radius: 20px !important;
}

.rental-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.rental-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rental-card:hover img {
    transform: scale(1.05);
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}

.contact-item {
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(249, 158, 11, 0.25);
    color: var(--white);
}

/* Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px 20px 0 0;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-section .col-lg-6:first-child {
        margin-bottom: 3rem;
    }
    
    .navbar-nav {
        margin-top: 1rem;
        padding: 1rem 0;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 10px;
        margin: 1rem -15px 0 -15px;
        box-shadow: var(--shadow-md);
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 1rem;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(30, 58, 138, 0.05);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    /* Ensure mobile menu button is always visible */
    .navbar-toggler {
        display: block !important;
        border: 2px solid var(--primary-color) !important;
        background: rgba(30, 58, 138, 0.1);
    }
    
    .navbar-toggler:hover {
        background: rgba(30, 58, 138, 0.2);
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .service-card,
    .rental-card {
        margin-bottom: 2rem;
    }
    
    .hero-image img {
        transform: none;
        margin-top: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-form .form-control,
    .contact-form .form-select {
        padding: 10px 12px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .modal,
    .btn {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
    
    * {
        box-shadow: none !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator {
        animation: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .service-card,
    .rental-card {
        border: 2px solid var(--text-dark) !important;
    }
    
    .hero-section {
        background: var(--dark-color) !important;
    }
}

/* Focus states for better accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus,
.nav-link:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Placeholder Images */
.placeholder-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.5s ease;
    overflow: hidden;
    position: relative;
}

.hero-tech-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #6366f1 100%);
}

.about-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
}

.rental-placeholder {
    height: 200px;
    margin-bottom: 1rem;
}

.laptop-bg {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.desktop-bg {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.signage-bg {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.gaming-bg {
    background: linear-gradient(135deg, #c2410c 0%, #ea580c 100%);
}

/* Service Modal Placeholder Backgrounds */
.security-service-bg {
    background: linear-gradient(135deg, #374151 0%, #6b7280 100%);
}

.network-service-bg {
    background: linear-gradient(135deg, #065f46 0%, #059669 100%);
}

.communication-service-bg {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.data-service-bg {
    background: linear-gradient(135deg, #7c2d12 0%, #dc2626 100%);
}

.consulting-service-bg {
    background: linear-gradient(135deg, #581c87 0%, #7c3aed 100%);
}

.virus-service-bg {
    background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
}

/* Page Header Styles */
.page-header {
    padding-top: 120px;
    min-height: 50vh;
    background: var(--gradient-primary);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%) !important;
}

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

/* About Page Styles */
.about-header-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #374151 0%, #6b7280 100%);
}

.story-placeholder {
    height: 350px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.security-header-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #374151 0%, #6b7280 100%);
}

.computer-header-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

/* Foundation Cards */
.foundation-card {
    transition: all 0.3s ease;
    border: none !important;
}

.foundation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl) !important;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Team Cards */
.team-card {
    transition: all 0.3s ease;
    border: none !important;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl) !important;
}

.team-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.team-card:hover .team-placeholder {
    transform: scale(1.1);
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    border: none !important;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl) !important;
}

/* Service Detail Cards */
.service-detail-card {
    transition: all 0.3s ease;
    border: none !important;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl) !important;
}

/* Process Steps */
.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Industry Cards */
.industry-card {
    transition: all 0.3s ease;
    border: none !important;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl) !important;
}

/* Partner Logos */
.placeholder-brand {
    padding: 20px;
    border-radius: 10px;
    background: rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
}

.placeholder-brand:hover {
    background: rgba(30, 58, 138, 0.2);
    transform: scale(1.05);
}

/* Equipment Cards */
.rental-equipment-card {
    transition: all 0.3s ease;
    border: none !important;
}

.rental-equipment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl) !important;
}

.equipment-image {
    min-height: 150px;
}

/* Pricing Styles */
.pricing {
    background: rgba(30, 58, 138, 0.05);
    border-radius: 10px;
    padding: 15px;
}

/* Benefit Cards */
.benefit-card {
    transition: all 0.3s ease;
    border: none !important;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white !important;
}

/* Discount Cards */
.discount-card {
    transition: all 0.3s ease;
    border: none !important;
}

.discount-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl) !important;
}

/* Additional Services */
.additional-service {
    transition: all 0.3s ease;
}

.additional-service:hover {
    transform: translateY(-5px);
}

/* Breadcrumb Styling */
.breadcrumb {
    background: none;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--secondary-color);
}

/* Mega Menu Styles */
.mega-menu {
    position: static !important;
}

.mega-menu .dropdown-menu {
    width: 100%;
    max-width: 1200px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: 15px;
    padding: 2rem;
    background: white;
    z-index: 1050;
}

/* Services Mega Menu Styles */
.services-mega-menu {
    position: static !important;
}

.services-mega-menu .services-dropdown {
    width: 600px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: 15px;
    padding: 1.5rem;
    background: white;
    z-index: 1050;
    max-height: 500px;
    overflow-y: auto;
}

.services-item {
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.services-item:hover {
    background: rgba(30, 58, 138, 0.05);
    color: inherit;
    text-decoration: none;
}

.services-item.active {
    background: rgba(30, 58, 138, 0.1);
    border-left: 4px solid var(--primary-color);
}

.services-item i {
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.services-item div {
    flex-grow: 1;
}

.dropdown-header {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    padding: 8px 15px;
    border-bottom: 2px solid rgba(30, 58, 138, 0.1);
}

.mega-menu-item {
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.mega-menu-item:hover {
    background: rgba(30, 58, 138, 0.05);
    transform: translateY(-2px);
    color: inherit;
    text-decoration: none;
}

.mega-menu-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.mega-menu-item:hover .mega-menu-icon {
    transform: scale(1.1);
}

.computer-icon { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.signage-icon { background: linear-gradient(135deg, #ea580c, #f97316); }
.gaming-icon { background: linear-gradient(135deg, #dc2626, #ef4444); }
.display-icon { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.tablet-icon { background: linear-gradient(135deg, #059669, #10b981); }
.printer-icon { background: linear-gradient(135deg, #4338ca, #6366f1); }

.mega-menu-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.mega-menu-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.4;
}

.mega-menu-featured {
    background: rgba(249, 158, 11, 0.1);
    border: 2px solid rgba(249, 158, 11, 0.2);
    position: relative;
}

.mega-menu-featured::before {
    content: 'Featured';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient-secondary);
    color: white;
    padding: 2px 8px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Responsive Mega Menu */
@media (max-width: 991.98px) {
    .mega-menu .dropdown-menu {
        position: relative !important;
        width: 100%;
        transform: none;
        left: 0;
        box-shadow: none;
        border-radius: 0;
        padding: 1rem;
    }
    
    .mega-menu-item {
        padding: 1rem;
        margin-bottom: 0.5rem;
        border-radius: 8px;
        background: rgba(30, 58, 138, 0.05);
    }
    
    .mega-menu-icon {
        width: 60px;
        height: 60px;
        float: left;
        margin-right: 1rem;
        margin-bottom: 0;
    }
    
    .mega-menu-content {
        overflow: hidden;
    }
    
    /* Services Mega Menu Responsive */
    .services-mega-menu .services-dropdown {
        position: relative !important;
        width: 100%;
        transform: none;
        left: 0;
        box-shadow: none;
        border-radius: 0;
        padding: 1rem;
        max-height: none;
    }
    
    .services-item {
        padding: 10px 15px;
        margin-bottom: 8px;
        background: rgba(30, 58, 138, 0.05);
        border-radius: 8px;
    }
    
    .dropdown-header {
        margin-top: 15px;
        margin-bottom: 8px;
        font-size: 0.85rem;
    }
    
    .dropdown-header:first-child {
        margin-top: 5px;
    }
}

/* Placeholder image hover effects */
.placeholder-img:hover {
    transform: scale(1.05);
}

.hero-tech-placeholder:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.rental-card:hover .rental-placeholder {
    transform: scale(1.1);
}

/* Add animated patterns to placeholders */
.placeholder-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.placeholder-img:hover::before {
    left: 100%;
}

/* Additional Placeholder Styles for Pages */
.hero-computer-placeholder,
.hero-signage-placeholder,
.hero-gaming-placeholder,
.hero-display-placeholder,
.hero-tablet-placeholder,
.hero-printer-placeholder,
.hero-network-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #6366f1 100%);
}

.equipment-placeholder {
    height: 180px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.multifunction-bg { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.laser-printer-bg { background: linear-gradient(135deg, #dc2626, #ef4444); }
.color-printer-bg { background: linear-gradient(135deg, #059669, #10b981); }
.scanner-bg { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.wide-format-bg { background: linear-gradient(135deg, #ea580c, #f97316); }
.portable-printer-bg { background: linear-gradient(135deg, #4338ca, #6366f1); }
.ipad-pro-bg { background: linear-gradient(135deg, #374151, #6b7280); }
.ipad-air-bg { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.ipad-bg { background: linear-gradient(135deg, #065f46, #059669); }
.android-tablet-bg { background: linear-gradient(135deg, #c2410c, #ea580c); }
.tablet-stand-bg { background: linear-gradient(135deg, #581c87, #7c3aed); }
.kiosk-tablet-bg { background: linear-gradient(135deg, #7c2d12, #dc2626); }
.laptop-gaming-bg { background: linear-gradient(135deg, #dc2626, #ef4444); }
.desktop-gaming-bg { background: linear-gradient(135deg, #c2410c, #ea580c); }
.monitor-gaming-bg { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.peripheral-gaming-bg { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.vr-gaming-bg { background: linear-gradient(135deg, #059669, #10b981); }
.console-gaming-bg { background: linear-gradient(135deg, #374151, #6b7280); }
.projector-bg { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.display-bg { background: linear-gradient(135deg, #dc2626, #ef4444); }
.audio-bg { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.camera-bg { background: linear-gradient(135deg, #374151, #6b7280); }
.lighting-bg { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.accessories-bg { background: linear-gradient(135deg, #059669, #10b981); }
.service-header-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}
.consulting-placeholder,
.data-placeholder,
.network-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.equipment-card {
    transition: all 0.3s ease;
    border: none !important;
    border-radius: 15px;
    overflow: hidden;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl) !important;
}

.application-card {
    transition: all 0.3s ease;
    border: none !important;
    padding: 20px;
    text-align: center;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white !important;
}

.application-icon {
    margin-bottom: 15px;
}

.process-step {
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
}

.price-tag {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Breadcrumb Section */
.breadcrumb-section {
    padding-top: 100px;
    padding-bottom: 20px;
    background: rgba(30, 58, 138, 0.05);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" patternUnits="userSpaceOnUse" width="50" height="50"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23cta-pattern)"/></svg>') repeat;
    opacity: 0.5;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.breadcrumb-section {
    padding-top: 100px;
    padding-bottom: 20px;
    background: rgba(30, 58, 138, 0.05);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" patternUnits="userSpaceOnUse" width="50" height="50"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23cta-pattern)"/></svg>') repeat;
    opacity: 0.5;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}



/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-chat:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    text-decoration: none;
}

.whatsapp-chat i {
    color: white;
    font-size: 26px;
    transition: all 0.3s ease;
}

.whatsapp-chat:hover i {
    color: white;
    transform: scale(1.1);
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #128C7E;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #128C7E;
}

.whatsapp-chat:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-10px);
}

/* WhatsApp Pulse Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* WhatsApp Button Responsive */
@media (max-width: 768px) {
    .whatsapp-chat {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-chat i {
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on mobile for better UX */
    }
}

@media (max-width: 480px) {
    .whatsapp-chat {
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-chat i {
        font-size: 22px;
    }
}

