/* ============================================================
   TalNet Computers - Main Stylesheet
   Color Scheme:
     Primary:    #0B1F3A (Dark Blue)
     Secondary:  #0099FF (Sky Blue)
     Accent:     #FF6600 (Orange)
     Background: #FFFFFF (White)
     Section:    #F8F9FA (Light Gray)
   ============================================================ */

/* ===== CSS Custom Properties ===== */
:root {
    --primary: #0B1F3A;
    --primary-light: #132d52;
    --primary-dark: #071226;
    --secondary: #0099FF;
    --secondary-dark: #0077cc;
    --accent: #FF6600;
    --accent-dark: #e55a00;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #0B1F3A;
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --text-white: #ffffff;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 4px rgba(11,31,58,0.08);
    --shadow-md: 0 5px 20px rgba(11,31,58,0.12);
    --shadow-lg: 0 10px 40px rgba(11,31,58,0.15);
    --shadow-xl: 0 20px 60px rgba(11,31,58,0.2);
    --glass-bg: rgba(255,255,255,0.12);
    --glass-border: rgba(255,255,255,0.2);
    --glass-shadow: 0 8px 32px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --gradient-primary: linear-gradient(135deg, #0B1F3A 0%, #132d52 100%);
    --gradient-secondary: linear-gradient(135deg, #0099FF 0%, #0077cc 100%);
    --gradient-accent: linear-gradient(135deg, #FF6600 0%, #e55a00 100%);
}

/* ===== Dark Mode ===== */
[data-bs-theme="dark"] {
    --primary: #0B1F3A;
    --bg-white: #0f0f23;
    --bg-light: #1a1a2e;
    --text-dark: #e4e6eb;
    --text-light: #b0b3b8;
    --border-color: #2d2d44;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.5);
    --glass-bg: rgba(255,255,255,0.05);
    --glass-border: rgba(255,255,255,0.08);
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    line-height: 1.7;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-dark);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(0,153,255,0.1);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--primary);
    color: var(--text-white);
    padding: 8px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1030;
}

.top-bar-info span {
    margin-right: 20px;
}

.top-bar-info i {
    margin-right: 6px;
    color: var(--secondary);
}

.top-bar-social a {
    color: rgba(255,255,255,0.7);
    margin-left: 12px;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--secondary);
}

/* ===== Navigation ===== */
.main-navbar {
    background: var(--primary) !important;
    padding: 12px 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(11,31,58,0.15);
}

.main-navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-navbar .brand-text {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--secondary) !important;
    background: rgba(255,255,255,0.05);
}

.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    width: 60%;
}

.main-navbar .dropdown-menu {
    background: var(--primary-light);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 8px;
    margin-top: 8px;
}

.main-navbar .dropdown-item {
    color: rgba(255,255,255,0.8);
    border-radius: var(--radius-sm);
    padding: 8px 16px;
    transition: var(--transition);
}

.main-navbar .dropdown-item:hover {
    background: rgba(0,153,255,0.15);
    color: var(--secondary);
}

.btn-accent {
    background: var(--accent);
    color: white !important;
    border: none;
    transition: var(--transition);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,102,0,0.3);
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    overflow: hidden;
}
.hero-slide {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,31,58,0.85) 0%, rgba(11,31,58,0.6) 100%);
    z-index: 1;
}

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

.hero-content .hero-badge {
    display: inline-block;
    padding: 6px 20px;
    background: var(--accent);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-content .hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-content .hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-content .btn {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1rem;
}

.hero-content .btn-primary {
    background: var(--secondary);
    border: none;
    box-shadow: 0 5px 20px rgba(0,153,255,0.3);
}

.hero-content .btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,153,255,0.4);
}

.hero-content .btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 30px;
    border-radius: 6px;
}

/* ===== Animated Counters ===== */
.counter-section {
    background: var(--primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(0,153,255,0.05)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.counter-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.counter-item .counter-icon {
    width: 70px;
    height: 70px;
    background: rgba(0,153,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: var(--secondary);
}

.counter-item .counter-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.counter-item .counter-number .plus {
    color: var(--accent);
}

.counter-item .counter-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* ===== Service Cards ===== */
.services-section {
    padding: 100px 0;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px 30px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,153,255,0.03) 0%, rgba(255,102,0,0.03) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,153,255,0.06) 0%, transparent 70%);
    z-index: -1;
    transition: all 0.6s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,153,255,0.15), 0 10px 30px rgba(11,31,58,0.1);
    border-color: rgba(0,153,255,0.2);
}

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

.service-card:hover::after {
    top: -20%;
    right: -20%;
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    box-shadow: 0 5px 15px rgba(0,153,255,0.15);
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #0099FF, #0077cc);
    color: white;
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #FF6600, #e55a00);
    color: white;
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #6f42c1, #5530a3);
    color: white;
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #f39c12, #d68910);
    color: white;
}

.service-card:nth-child(1):hover {
    box-shadow: 0 20px 60px rgba(0,153,255,0.2), 0 10px 30px rgba(11,31,58,0.1);
}

.service-card:nth-child(2):hover {
    box-shadow: 0 20px 60px rgba(255,102,0,0.2), 0 10px 30px rgba(11,31,58,0.1);
}

.service-card:nth-child(3):hover {
    box-shadow: 0 20px 60px rgba(111,66,193,0.2), 0 10px 30px rgba(11,31,58,0.1);
}

.service-card:nth-child(4):hover {
    box-shadow: 0 20px 60px rgba(40,167,69,0.2), 0 10px 30px rgba(11,31,58,0.1);
}

.service-card:nth-child(5):hover {
    box-shadow: 0 20px 60px rgba(231,76,60,0.2), 0 10px 30px rgba(11,31,58,0.1);
}

.service-card:nth-child(6):hover {
    box-shadow: 0 20px 60px rgba(243,156,18,0.2), 0 10px 30px rgba(11,31,58,0.1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.service-card:nth-child(1):hover h4 { color: #0099FF; }
.service-card:nth-child(2):hover h4 { color: #FF6600; }
.service-card:nth-child(3):hover h4 { color: #6f42c1; }
.service-card:nth-child(4):hover h4 { color: #28a745; }
.service-card:nth-child(5):hover h4 { color: #e74c3c; }
.service-card:nth-child(6):hover h4 { color: #f39c12; }

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.service-card .service-link {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding-bottom: 2px;
}

.service-card .service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
}

.service-card:hover .service-link::after {
    width: 100%;
}

.service-card .service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(6px);
}

/* ===== Service Card Enhancements ===== */
.service-card {
    position: relative;
}
.service-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img {
    transform: scale(1.1);
}
.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,31,58,0.85), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.service-card:hover .service-card-overlay {
    opacity: 1;
}
.service-featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
}
.service-card-body {
    padding: 20px;
}
.service-icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(0,153,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 12px;
}
.service-category-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    background: rgba(0,153,255,0.1);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 8px;
}
.service-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.service-filters .filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}
.service-filters .filter-btn:hover,
.service-filters .filter-btn.active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}
.service-filters .input-group {
    width: auto;
    min-width: 200px;
}

/* ===== Service Detail ===== */
.service-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0,153,255,0.1), rgba(11,31,58,0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}
.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.service-detail-content .lead {
    font-size: 1.1rem;
    line-height: 1.7;
}
.service-full-desc {
    line-height: 1.8;
    color: var(--text-color);
}
.service-full-desc p {
    margin-bottom: 1rem;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}
.feature-item i {
    margin-top: 3px;
    font-size: 1rem;
    flex-shrink: 0;
}
.related-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    margin-bottom: 8px;
}
.related-service-item:hover {
    background: var(--bg-light);
    border-color: var(--secondary);
    transform: translateX(4px);
}
.related-service-item > i:first-child {
    width: 40px;
    height: 40px;
    background: rgba(0,153,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1rem;
    flex-shrink: 0;
}
.related-service-item > i:last-child {
    margin-left: auto;
    color: var(--secondary);
    font-size: 0.8rem;
}
.related-service-item div {
    flex: 1;
    min-width: 0;
}
.related-service-item div strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.related-service-item div small {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== Inquiry Form ===== */
.inquiry-form {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.inquiry-form h4 {
    font-weight: 700;
    margin-bottom: 4px;
}
.inquiry-form .form-control {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}

/* ===== Product Cards ===== */
.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card .product-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-card .badge-featured {
    background: var(--accent);
    color: white;
}

.product-card .badge-status {
    background: var(--secondary);
    color: white;
}

.product-card .product-body {
    padding: 20px;
}

.product-card .product-category {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card .product-body h5 {
    font-size: 1.1rem;
    margin: 8px 0;
}

.product-card .product-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.product-card .product-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.about-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-accent);
    color: white;
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 140px;
    box-shadow: var(--shadow-lg);
}

.about-image .experience-badge span {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-image .experience-badge small {
    font-size: 0.85rem;
    opacity: 0.9;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.value-item:hover {
    background: var(--bg-light);
}

.value-item .value-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(0,153,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--secondary);
}

/* ===== Team Card ===== */
.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}
.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.team-photo {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--bg-light);
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.team-card:hover .team-photo img {
    transform: scale(1.08);
}
.team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--secondary);
    background: linear-gradient(135deg, rgba(0,153,255,0.05), rgba(11,31,58,0.05));
}
.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(transparent, rgba(11,31,58,0.85));
    transition: var(--transition);
}
.team-card:hover .team-social {
    bottom: 0;
}
.team-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
}
.team-social a:hover {
    background: var(--secondary);
    color: white;
}
.team-info {
    padding: 20px;
}
.team-info h5 {
    margin-bottom: 4px;
    font-size: 1.05rem;
}
.team-designation {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 500;
}

/* ===== Portfolio ===== */
.portfolio-section {
    padding: 100px 0;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.portfolio-filter .filter-btn {
    padding: 8px 24px;
    border: 1px solid var(--border-color);
    background: transparent;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-filter .filter-btn:hover,
.portfolio-filter .filter-btn.active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 24px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,31,58,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h5 {
    color: white;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* ===== Blog Cards ===== */
.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card .blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-card .blog-body {
    padding: 20px;
}

.blog-card .blog-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-card .blog-meta span {
    margin-right: 15px;
}

.blog-card .blog-meta i {
    margin-right: 5px;
    color: var(--secondary);
}

.blog-card .blog-body h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.blog-card .blog-body h5 a {
    color: var(--text-dark);
}

.blog-card .blog-body h5 a:hover {
    color: var(--secondary);
}

.blog-card .blog-body p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-card .blog-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
}

/* ===== Testimonials ===== */
.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 35px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(0,153,255,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card .rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-card .review-text {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .client-info h6 {
    margin: 0;
    font-size: 1rem;
}

.testimonial-card .client-info small {
    color: var(--text-light);
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
}

.contact-info-card {
    background: var(--primary);
    color: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
}

.contact-info-card h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item .contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--secondary);
}

.contact-info-item h6 {
    color: white;
    margin-bottom: 5px;
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--bg-white);
}

.accordion-button {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-dark);
    background: var(--bg-white);
    padding: 18px 24px;
}

.accordion-button:not(.collapsed) {
    color: var(--secondary);
    background: rgba(0,153,255,0.05);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

.accordion-body {
    padding: 20px 24px;
    color: var(--text-light);
}

/* ===== Page Header ===== */
.page-header {
    background: var(--gradient-primary);
    padding: 250px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(0,153,255,0.05)" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,213.3C672,224,768,224,864,208C960,192,1056,160,1152,154.7C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    justify-content: center;
    background: transparent;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
}

.page-header .breadcrumb-item.active {
    color: var(--secondary);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* ===== Glassmorphism ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-5px);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 20px rgba(37,211,102,0.6);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== Scroll to Top ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,153,255,0.3);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
}

/* ===== Footer ===== */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
}

.footer-main {
    padding: 70px 0 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.2rem;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

.footer-widget h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact li i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact li a {
    color: rgba(255,255,255,0.7);
}

.footer-contact li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.copyright {
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-left: 20px;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* ===== Newsletter ===== */
.newsletter-section {
    background: var(--gradient-secondary);
    padding: 60px 0;
}

.newsletter-section h3 {
    color: white;
    font-weight: 700;
}

.newsletter-section p {
    color: rgba(255,255,255,0.8);
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    border-radius: 50px 0 0 50px !important;
    border: none;
    padding: 14px 20px;
}

.newsletter-form button {
    border-radius: 0 50px 50px 0 !important;
    padding: 14px 25px;
    background: var(--accent);
    border: none;
    color: white;
    font-weight: 600;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ===== Category Badge ===== */
.category-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0,153,255,0.1);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== Buttons ===== */
.btn-primary {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

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

.btn-outline-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

/* ===== Loading Spinner ===== */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.loading-spinner .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ===== Feature List ===== */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
}

/* ===== Benefit Cards ===== */
.benefit-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.benefit-card .benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,153,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--secondary);
}

/* ===== Product Detail Gallery ===== */
.product-gallery {
    position: relative;
}

.product-description {
    line-height: 1.8;
    color: var(--text-color);
}
.product-description p {
    margin-bottom: 1rem;
}

.product-gallery .main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 15px;
    height: 450px;
}

.product-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery .thumbnails {
    display: flex;
    gap: 10px;
}

.product-gallery .thumbnails img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.product-gallery .thumbnails img:hover,
.product-gallery .thumbnails img.active {
    border-color: var(--secondary);
}

/* ===== Video Gallery ===== */
.video-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.video-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.video-card .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.5rem;
    transition: var(--transition);
}

.video-card:hover .play-btn {
    background: var(--secondary);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

/* ===== Inquiry Form ===== */
.inquiry-form {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 35px;
    position: sticky;
    top: 100px;
}

.inquiry-form h4 {
    margin-bottom: 1.5rem;
}

/* ===== Form Styles ===== */
.form-control {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0,153,255,0.1);
}

.form-floating textarea.form-control {
    height: 140px;
}

/* ===== Pagination ===== */
.pagination .page-link {
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    transition: var(--transition);
}

.pagination .page-item.active .page-link {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
}

.pagination .page-link:hover {
    background: var(--bg-light);
    color: var(--secondary);
}

/* ===== Sidebar Widgets ===== */
.sidebar-widget {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 25px;
}

.sidebar-widget h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
}

.sidebar-categories {
    list-style: none;
    padding: 0;
}

.sidebar-categories li {
    margin-bottom: 8px;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-light);
    transition: var(--transition);
}

.sidebar-categories a:hover {
    background: rgba(0,153,255,0.05);
    color: var(--secondary);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    padding: 4px 14px;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-light);
    transition: var(--transition);
}

.tag-cloud a:hover {
    background: var(--secondary);
    color: white;
}

/* ===== Lightbox Gallery ===== */
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 24px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,31,58,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

/* ===== Breadcrumb ===== */
.breadcrumb-section {
    background: var(--bg-light);
    padding: 15px 0;
}

/* ===== Alert Messages ===== */
.alert {
    border-radius: var(--radius-sm);
    border: none;
}

/* ===== Responsive Embeds ===== */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===== Related Products ===== */
.related-products-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.related-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.12);
    border-color: rgba(0, 102, 255, 0.2);
}

.related-image-link {
    display: block;
    text-decoration: none;
}

.related-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.85), rgba(0, 51, 153, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.related-card:hover .related-overlay {
    opacity: 1;
}

.related-view-btn {
    width: 52px;
    height: 52px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transform: scale(0.5);
    transition: transform 0.35s ease;
}

.related-card:hover .related-view-btn {
    transform: scale(1);
}

.related-body {
    padding: 20px;
}

.related-body .related-category {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 6px;
}

.related-body h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-body p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease;
}

.related-link:hover {
    color: var(--accent);
    gap: 10px;
}

/* ===== Dark Mode Overrides ===== */
[data-bs-theme="dark"] {
    --bg-dark-card: #16162a;
    --text-primary: #e4e6eb;
}
[data-bs-theme="dark"] body {
    background: #0a0a1a;
    color: #e4e6eb;
}
[data-bs-theme="dark"] .top-bar {
    background: #0d0d20;
    border-bottom-color: #2d2d44;
}
[data-bs-theme="dark"] .top-bar-info span {
    color: #b0b3b8;
}
[data-bs-theme="dark"] .top-bar-social a {
    background: rgba(255,255,255,0.08);
    color: #b0b3b8;
}
[data-bs-theme="dark"] .main-navbar {
    background: #0d0d20 !important;
}
[data-bs-theme="dark"] .main-navbar .nav-link {
    color: #b0b3b8;
}
[data-bs-theme="dark"] .main-navbar .nav-link:hover,
[data-bs-theme="dark"] .main-navbar .nav-link.active {
    color: #fff;
}
[data-bs-theme="dark"] .main-navbar .dropdown-menu {
    background: #16162a;
    border-color: #2d2d44;
}
[data-bs-theme="dark"] .main-navbar .dropdown-item {
    color: #b0b3b8;
}
[data-bs-theme="dark"] .main-navbar .dropdown-item:hover {
    background: rgba(0,153,255,0.15);
    color: #fff;
}
[data-bs-theme="dark"] .page-header {
    background: linear-gradient(135deg, #0d0d20 0%, #16162a 100%);
}
[data-bs-theme="dark"] .page-header h1 {
    color: #fff;
}
[data-bs-theme="dark"] .page-header .breadcrumb-item,
[data-bs-theme="dark"] .page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.6);
}
[data-bs-theme="dark"] .page-header .breadcrumb-item.active {
    color: var(--secondary);
}
[data-bs-theme="dark"] .service-card,
[data-bs-theme="dark"] .benefit-card,
[data-bs-theme="dark"] .product-card,
[data-bs-theme="dark"] .team-card,
[data-bs-theme="dark"] .inquiry-form,
[data-bs-theme="dark"] .list-group-item,
[data-bs-theme="dark"] .related-service-item {
    background: #16162a;
    border-color: #2d2d44;
}
[data-bs-theme="dark"] .service-card p,
[data-bs-theme="dark"] .benefit-card p,
[data-bs-theme="dark"] .product-card .product-body p,
[data-bs-theme="dark"] .team-card .team-info p {
    color: #b0b3b8;
}
[data-bs-theme="dark"] .service-card h4,
[data-bs-theme="dark"] .product-card .product-body h5,
[data-bs-theme="dark"] .team-card .team-info h5 {
    color: #e4e6eb;
}
[data-bs-theme="dark"] .product-card .product-body {
    background: #16162a;
}
[data-bs-theme="dark"] .product-card .product-footer {
    background: #12122a;
    border-top-color: #2d2d44;
}
[data-bs-theme="dark"] .product-card .product-category {
    color: var(--secondary);
}
[data-bs-theme="dark"] .list-group-item {
    color: #b0b3b8;
}
[data-bs-theme="dark"] .list-group-item:hover {
    background: rgba(0,153,255,0.1);
    color: #fff;
}
[data-bs-theme="dark"] .bg-light {
    background: #0f0f23 !important;
}
[data-bs-theme="dark"] .card {
    background: #16162a;
    border-color: #2d2d44;
}
[data-bs-theme="dark"] .card-header {
    background: #12122a;
    border-bottom-color: #2d2d44;
    color: #e4e6eb;
}
[data-bs-theme="dark"] .table {
    color: #e4e6eb;
}
[data-bs-theme="dark"] .table-hover tbody tr:hover {
    color: #e4e6eb;
    background: rgba(0,153,255,0.05);
}
[data-bs-theme="dark"] .modal-content {
    background: #16162a;
    border-color: #2d2d44;
}
[data-bs-theme="dark"] .modal-header {
    border-bottom-color: #2d2d44;
}
[data-bs-theme="dark"] .modal-footer {
    border-top-color: #2d2d44;
}
[data-bs-theme="dark"] .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}
[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select {
    background: #0f0f23;
    border-color: #2d2d44;
    color: #e4e6eb;
}
[data-bs-theme="dark"] .form-control:focus,
[data-bs-theme="dark"] .form-select:focus {
    background: #0f0f23;
    border-color: var(--secondary);
    color: #e4e6eb;
}
[data-bs-theme="dark"] .input-group-text {
    background: #12122a;
    border-color: #2d2d44;
    color: #b0b3b8;
}
[data-bs-theme="dark"] .section-subtitle {
    color: #b0b3b8 !important;
}
[data-bs-theme="dark"] .service-category-tag {
    background: rgba(0,153,255,0.15);
}
[data-bs-theme="dark"] .service-icon-wrap {
    background: rgba(0,153,255,0.15);
}
[data-bs-theme="dark"] .feature-item {
    background: #0f0f23;
}
[data-bs-theme="dark"] .value-item:hover {
    background: rgba(0,153,255,0.05);
}
[data-bs-theme="dark"] .footer-main {
    background: #0d0d20;
}
[data-bs-theme="dark"] .footer-bottom {
    background: #08081a;
}
[data-bs-theme="dark"] .counter-section {
    background: #0d0d20;
}
[data-bs-theme="dark"] .cta-section {
    background: linear-gradient(135deg, #0d0d20, #16162a);
}
[data-bs-theme="dark"] .service-detail-icon {
    background: linear-gradient(135deg, rgba(0,153,255,0.15), rgba(11,31,58,0.1));
}
[data-bs-theme="dark"] .service-sidebar-icon {
    background: linear-gradient(135deg, rgba(0,153,255,0.15), rgba(11,31,58,0.1)) !important;
}
[data-bs-theme="dark"] .service-filters .filter-btn {
    background: #16162a;
    border-color: #2d2d44;
    color: #b0b3b8;
}
[data-bs-theme="dark"] .service-filters .filter-btn:hover,
[data-bs-theme="dark"] .service-filters .filter-btn.active {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}
[data-bs-theme="dark"] .portfolio-filter .filter-btn {
    background: #16162a;
    border-color: #2d2d44;
    color: #b0b3b8;
}
[data-bs-theme="dark"] .portfolio-filter .filter-btn:hover,
[data-bs-theme="dark"] .portfolio-filter .filter-btn.active {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}
[data-bs-theme="dark"] .navbar-toggler {
    border-color: rgba(255,255,255,0.2);
}
[data-bs-theme="dark"] .navbar-toggler-icon {
    filter: invert(1);
}
[data-bs-theme="dark"] .whatsapp-float {
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
[data-bs-theme="dark"] .scroll-top-btn {
    background: #16162a;
    color: #b0b3b8;
    border-color: #2d2d44;
}
[data-bs-theme="dark"] .scroll-top-btn:hover {
    background: var(--secondary);
    color: #fff;
}
[data-bs-theme="dark"] .experience-badge {
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}
[data-bs-theme="dark"] .testimonial-card {
    background: #16162a;
}
[data-bs-theme="dark"] .testimonial-card::before {
    color: rgba(0,153,255,0.15);
}
[data-bs-theme="dark"] .testimonial-card .rating i {
    color: #ffc107;
}
[data-bs-theme="dark"] .testimonial-card .client-info h6 {
    color: #e4e6eb;
}
[data-bs-theme="dark"] .blog-card {
    background: #16162a;
    border-color: #2d2d44;
}
[data-bs-theme="dark"] .blog-card .blog-body {
    background: #16162a;
}
[data-bs-theme="dark"] .blog-card .blog-body h5 {
    color: #e4e6eb;
}
[data-bs-theme="dark"] .blog-card .blog-body p {
    color: #b0b3b8;
}
[data-bs-theme="dark"] .btn-outline-primary {
    border-color: var(--secondary);
    color: var(--secondary);
}
[data-bs-theme="dark"] .btn-outline-primary:hover {
    background: var(--secondary);
    color: #fff;
}
[data-bs-theme="dark"] .text-muted {
    color: #9a9ab0 !important;
}
