Services
/* SHOKA Consulting – Services Page CSS */
/* Brand: Gold on Black – Premium GRC Consulting */
/* Add this to: Appearance → Customize → Additional CSS */
/* Container and Basic Styles */
.service-page {
font-family: ‘Poppins’, sans-serif;
line-height: 1.6;
color: #f2f2f2;
background: #0d0d0d;
}
.service-page .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Hero Section */
.service-page .hero {
background: #0d0d0d;
color: #f2f2f2;
padding: 80px 20px 60px;
text-align: center;
border-bottom: 1px solid rgba(255, 223, 175, 0.1);
}
.service-page .hero h1 {
font-family: ‘Orbitron’, sans-serif;
font-size: 3.5rem;
font-weight: 400;
margin-bottom: 30px;
letter-spacing: -1px;
color: #FFDFAF;
}
.service-page .team-definitions {
max-width: 900px;
margin: 40px auto;
font-size: 1.1rem;
line-height: 2;
}
.service-page .team-red { color: #f85032; font-weight: 600; }
.service-page .team-blue { color: #4facfe; font-weight: 600; }
.service-page .team-purple { color: #764ba2; font-weight: 600; }
.service-page .team-zero { color: #FFDFAF; font-weight: 600; }
/* Value Section */
.service-page .value-section {
padding: 80px 20px;
background: #0d0d0d;
border-bottom: 1px solid rgba(255, 223, 175, 0.05);
}
.service-page .value-section h2 {
font-family: ‘Orbitron’, sans-serif;
font-size: 2.5rem;
color: #FFDFAF;
margin-bottom: 30px;
text-align: center;
font-weight: 400;
}
.service-page .value-content {
max-width: 900px;
margin: 0 auto;
font-size: 1.15rem;
line-height: 1.8;
color: #f2f2f2;
}
.service-page .value-content p {
margin-bottom: 20px;
}
.service-page .value-highlight {
background: rgba(255, 223, 175, 0.05);
padding: 30px 40px;
border-radius: 12px;
margin-top: 30px;
border-left: 4px solid #FFDFAF;
}
.service-page .value-highlight strong {
color: #FFDFAF;
font-size: 1.2rem;
}
/* Service Categories */
.service-page .service-categories {
padding: 80px 20px;
background: #0d0d0d;
}
.service-page .category-section {
margin-bottom: 80px;
}
.service-page .category-header {
text-align: center;
margin-bottom: 50px;
}
.service-page .category-header h2 {
font-family: ‘Orbitron’, sans-serif;
font-size: 2.5rem;
color: #FFDFAF;
margin-bottom: 15px;
font-weight: 400;
}
.service-page .category-header p {
font-size: 1.2rem;
color: #f2f2f2;
max-width: 700px;
margin: 0 auto;
opacity: 0.8;
}
/* Service Cards Grid */
.service-page .services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
gap: 40px;
margin-top: 40px;
}
.service-page .service-card {
background: rgba(255, 223, 175, 0.03);
border-radius: 16px;
padding: 40px;
border: 1px solid rgba(255, 223, 175, 0.1);
transition: all 0.3s ease;
cursor: pointer;
}
.service-page .service-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 40px rgba(255, 223, 175, 0.1);
border-color: rgba(255, 223, 175, 0.3);
}
.service-page .service-card.purple:hover { border-color: #764ba2; }
.service-page .service-card.blue:hover { border-color: #4facfe; }
.service-page .service-card.red:hover { border-color: #f85032; }
.service-page .service-badge {
display: inline-block;
padding: 8px 20px;
border-radius: 30px;
font-weight: 700;
font-size: 0.85rem;
letter-spacing: 0.5px;
margin-bottom: 20px;
text-transform: uppercase;
border: 1px solid;
}
.service-page .badge-purple {
background: rgba(118, 75, 162, 0.1);
color: #764ba2;
border-color: #764ba2;
}
.service-page .badge-blue {
background: rgba(79, 172, 254, 0.1);
color: #4facfe;
border-color: #4facfe;
}
.service-page .badge-red {
background: rgba(248, 80, 50, 0.1);
color: #f85032;
border-color: #f85032;
}
.service-page .service-card h3 {
font-family: ‘Orbitron’, sans-serif;
font-size: 2rem;
color: #FFDFAF;
margin-bottom: 15px;
font-weight: 400;
}
.service-page .service-card .subtitle {
font-size: 1.1rem;
color: #f2f2f2;
margin-bottom: 25px;
font-weight: 500;
opacity: 0.9;
}
.service-page .service-card .description {
color: #f2f2f2;
line-height: 1.8;
margin-bottom: 25px;
opacity: 0.8;
}
.service-page .key-benefits {
list-style: none;
margin: 20px 0;
}
.service-page .key-benefits li {
padding: 8px 0;
padding-left: 28px;
position: relative;
color: #f2f2f2;
font-size: 0.95rem;
opacity: 0.8;
}
.service-page .key-benefits li:before {
content: “✓”;
position: absolute;
left: 0;
color: #FFDFAF;
font-weight: bold;
font-size: 1.1rem;
}
.service-page .learn-more {
display: inline-block;
margin-top: 15px;
color: #FFDFAF;
font-weight: 600;
text-decoration: none;
font-size: 1rem;
transition: all 0.3s ease;
border-bottom: 2px solid transparent;
}
.service-page .learn-more:hover {
border-bottom-color: #FFDFAF;
transform: translateX(5px);
}
/* Service Objectives Section */
.service-page .service-objectives {
padding: 80px 20px;
background: #0d0d0d;
text-align: center;
border-top: 1px solid rgba(255, 223, 175, 0.05);
}
.service-page .service-objectives h2 {
font-family: ‘Orbitron’, sans-serif;
font-size: 2.5rem;
color: #FFDFAF;
margin-bottom: 40px;
font-weight: 400;
}
.service-page .service-objectives .content {
max-width: 900px;
margin: 0 auto;
font-size: 1.15rem;
line-height: 2.2;
color: #f2f2f2;
text-align: left;
opacity: 0.8;
}
/* Methodology Section */
.service-page .methodology-section {
padding: 80px 20px;
background: rgba(255, 223, 175, 0.03);
text-align: center;
border-top: 1px solid rgba(255, 223, 175, 0.1);
border-bottom: 1px solid rgba(255, 223, 175, 0.1);
}
.service-page .methodology-section h2 {
font-family: ‘Orbitron’, sans-serif;
font-size: 2.5rem;
color: #FFDFAF;
margin-bottom: 30px;
font-weight: 400;
}
.service-page .methodology-section p {
font-size: 1.2rem;
max-width: 800px;
margin: 0 auto 40px;
color: #f2f2f2;
opacity: 0.8;
}
.service-page .value-chain {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 10px 15px;
max-width: 1000px;
margin: 40px auto;
font-size: 1.2rem;
font-weight: 600;
}
.service-page .value-chain span {
color: #f2f2f2;
}
.service-page .value-chain .infinity {
color: #FFDFAF;
font-size: 1.4rem;
}
/* HP Cube Section */
.service-page .hp-cube-section {
padding: 80px 20px;
background: #0d0d0d;
text-align: center;
}
.service-page .hp-cube-section h2 {
font-family: ‘Orbitron’, sans-serif;
font-size: 2.5rem;
color: #FFDFAF;
margin-bottom: 20px;
font-weight: 400;
}
.service-page .hp-cube-section .subtitle {
font-size: 1.3rem;
color: #f2f2f2;
margin-bottom: 50px;
opacity: 0.8;
}
.service-page .hp-cube-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-top: 50px;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
}
.service-page .hp-cube-item {
padding: 40px 30px;
background: rgba(255, 223, 175, 0.03);
border-radius: 12px;
border: 1px solid rgba(255, 223, 175, 0.1);
transition: all 0.3s ease;
}
.service-page .hp-cube-item:hover {
border-color: #FFDFAF;
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(255, 223, 175, 0.1);
}
.service-page .hp-cube-item h3 {
font-family: ‘Orbitron’, sans-serif;
color: #FFDFAF;
margin-bottom: 15px;
font-size: 1.5rem;
font-weight: 400;
}
.service-page .hp-cube-item p {
color: #f2f2f2;
line-height: 1.7;
opacity: 0.8;
}
.service-page .hp-cube-link {
margin-top: 30px;
}
.service-page .hp-cube-link a {
color: #FFDFAF;
text-decoration: none;
font-weight: 600;
font-size: 1.05rem;
transition: all 0.3s ease;
border-bottom: 2px solid transparent;
}
.service-page .hp-cube-link a:hover {
border-bottom-color: #FFDFAF;
}
/* CTA Section */
.service-page .cta-section {
background: rgba(255, 223, 175, 0.05);
padding: 80px 20px;
text-align: center;
border-top: 1px solid rgba(255, 223, 175, 0.1);
}
.service-page .cta-section h2 {
font-family: ‘Orbitron’, sans-serif;
font-size: 2.5rem;
color: #FFDFAF;
margin-bottom: 20px;
font-weight: 400;
}
.service-page .cta-section p {
font-size: 1.2rem;
color: #f2f2f2;
margin-bottom: 40px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
opacity: 0.8;
}
.service-page .cta-button {
display: inline-block;
background: #FFDFAF;
color: #0d0d0d;
padding: 16px 40px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
border: 2px solid #FFDFAF;
}
.service-page .cta-button:hover {
background: transparent;
color: #FFDFAF;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(255, 223, 175, 0.2);
}
.service-page .contact-info {
margin-top: 30px;
font-size: 1rem;
color: #f2f2f2;
opacity: 0.7;
}
.service-page .contact-info a {
color: #FFDFAF;
text-decoration: none;
}
.service-page .contact-info a:hover {
text-decoration: underline;
}
/* Responsive */
@media (max-width: 768px) {
.service-page .hero h1 {
font-size: 2.5rem;
}
.service-page .services-grid {
grid-template-columns: 1fr;
}
.service-page .category-header h2 {
font-size: 2rem;
}
.service-page .service-card h3 {
font-size: 1.6rem;
}
}
