/*
Theme Name: SEBA COMPUTER
Theme URI: https://sebacomputer.com
Author: SEBA COMPUTER
Author URI: https://sebacomputer.com
Description: Complete departmental management & web solutions WordPress theme. Perfect for software, IT, and service-based businesses.
Version: 1.0.0
License: GPL v2 or later
Text Domain: seba-computer
Tags: one-column, two-columns, right-sidebar, custom-header, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #3498db;
    --success: #27ae60;
    --warning: #f39c12;
    --dark: #1a252f;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --border-color: #dee2e6;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f8fafc;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
a:hover {
    color: var(--accent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}
.section-title p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-primary {
    background: var(--accent);
    color: white;
}
.btn-primary:hover {
    background: #2980b9;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-secondary {
    background: var(--secondary);
    color: white;
}
.btn-secondary:hover {
    background: #c0392b;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline-primary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-outline-primary:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.header.scrolled {
    padding: 10px 0;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-lg);
}
.navbar {
    padding: 20px 0;
    transition: var(--transition);
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}
.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.brand-name span:first-child {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}
.brand-name span:last-child {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
}
.nav-link {
    font-weight: 500;
    color: var(--primary);
    padding: 10px 15px !important;
    margin: 0 5px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: rgba(52,152,219,0.1);
}

/* Hero */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}
.hero-title span {
    color: var(--accent);
}
.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 700px;
}
.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.stat-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
}
.stat-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Department Cards */
.department-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-align: center;
}
.department-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}
.department-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}
.department-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.department-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}
.department-features li:last-child {
    border-bottom: none;
}
.department-features li i {
    color: var(--success);
}

/* Theme Cards */
.theme-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}
.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}
.theme-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.theme-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.theme-card:hover .theme-img img {
    transform: scale(1.05);
}
.theme-content {
    padding: 25px;
}
.theme-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}
.theme-desc {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}
.tag {
    background: #f1f8ff;
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin: 2px;
}
.price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}
.price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.original-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 0.9rem;
}
.current-price {
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 700;
}
.discount-badge {
    background: #ffebee;
    color: var(--secondary);
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Hosting Cards */
.hosting-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--border-color);
    position: relative;
    text-align: center;
}
.hosting-card.popular {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}
.hosting-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: white;
}
.hosting-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}
.hosting-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hosting-features li:last-child {
    border-bottom: none;
}
.feature-name {
    display: flex;
    align-items: center;
    gap: 8px;
}
.feature-value {
    font-weight: 600;
    color: var(--primary);
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}
.testimonial-content {
    position: relative;
    padding-left: 20px;
}
.testimonial-content:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--accent);
    font-family: serif;
    line-height: 1;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
}
.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact */
.contact-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
}
.contact-section .section-title h2,
.contact-section .section-title p {
    color: white;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}
.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.contact-details h4 {
    color: white;
    margin-bottom: 10px;
}
.contact-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}
.contact-form .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--accent);
    box-shadow: none;
    color: white;
}
.contact-form .form-control::placeholder {
    color: rgba(255,255,255,0.7);
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}
.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 20px;
}
.footer h5 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}
.footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}
.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}
.footer-about p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    color: white;
}
.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
}
.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 2rem;
    margin-top: 20px;
    color: rgba(255,255,255,0.7);
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    background: #25D366;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
.phone-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    background: var(--accent);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
.whatsapp-btn:hover,
.phone-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Blog Styles */
.blog-post {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}
.blog-post h2 {
    margin-bottom: 15px;
}
.blog-meta {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.blog-meta span {
    margin-right: 15px;
}
.blog-content {
    line-height: 1.8;
}
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 20px 0;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.pagination .page-numbers {
    padding: 8px 15px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Widgets */
.widget {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}
.widget-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}
.widget ul {
    list-style: none;
    padding: 0;
}
.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
}
.widget ul li:last-child {
    border-bottom: none;
}
.widget ul li a {
    transition: var(--transition);
}
.widget ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

/* Sidebar */
.sidebar {
    padding-left: 30px;
}
@media (max-width: 991px) {
    .sidebar {
        padding-left: 0;
        margin-top: 40px;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
    .section-padding { padding: 80px 0; }
    .hosting-card.popular { transform: scale(1); margin-top: 30px; }
}
@media (max-width: 767px) {
    .hero-title { font-size: 2rem; }
    .section-title h2 { font-size: 1.8rem; }
    .floating-buttons { bottom: 20px; right: 20px; }
    .whatsapp-btn, .phone-btn { width: 50px; height: 50px; font-size: 1.2rem; }
}
@media (max-width: 575px) {
    .hero-section { padding: 130px 0 60px; }
    .section-padding { padding: 60px 0; }
}