/* Custom CSS for SSS Professional Services */

:root {
    --primary-dark: #2C3E50;
    --primary-orange: #E67E22;
    --light-bg: #F8F9FA;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--primary-orange);
    padding: 0px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-dark);
}

.navbar-brand small {
    font-size: 0.7rem;
    color: var(--primary-orange);
}

.nav-link {
    font-weight: 600;
    color: var(--primary-dark);
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary-orange);
    padding: 11px;
    background-color: darkgreen;
    /*background-color: teal;*/
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a252f 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 30px;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-orange);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background-color: #cc701f;
    transform: translateY(-2px);
}

.btn-outline-custom {
    border: 2px solid var(--primary-orange);
    background: transparent;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 50px;
    color: var(--primary-orange);
    transition: 0.3s;
}

.btn-outline-custom:hover {
    background-color: var(--primary-orange);
    color: white;
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 25px;
    text-align: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

/* Feature List */
.feature-item {
    padding: 20px;
    border-left: 4px solid var(--primary-orange);
    background: var(--light-bg);
    margin-bottom: 20px;
    border-radius: 8px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Team Section */
.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-icon {
    width: 120px;
    height: 120px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 3px solid var(--primary-orange);
}

.team-icon i {
    font-size: 3.5rem;
    color: var(--primary-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
        text-align: center;
    }
    
    .hero .btn {
        margin-bottom: 10px;
    }
}
