/*
Theme Name: Investors Compound
Template: twentytwentyfive
Author: Child Theme Configurator
Author URI: https://wordpress.org
Description: Investors Compound - Twenty Twenty-Five child theme emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Tags: one-column,custom-colors,custom-menu,custom-logo,editor-style,featured-images,full-site-editing,block-patterns,rtl-language-support,sticky-post,threaded-comments,translation-ready,wide-blocks,block-styles,style-variations,accessibility-ready,blog,portfolio,news
Version: 1.4.1766512526
Updated: 2025-12-23 17:55:26

*/

:root {
    /* Colors */
    --primary-green: #008000;
    /* Office Green */
    --primary-green-glow: rgba(0, 128, 0, 0.2);
    --secondary-green: #60e239;
    --soft-green: #bcffbc;
    --deep-charcoal: #1A1A1A;
    --dark-gray: #333333;
    --clean-white: #FFFFFF;
    --soft-white: #F9FBF9;
    --text-muted: #666666;
    --border-color: #EEEEEE;

    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 80px 20px;
    --container-width: 1200px;
}

body {
    background-color: var(--clean-white);
    color: var(--deep-charcoal);
    font-family: var(--font-main);
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: 0;
    color: var(--secondary-green);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--clean-white);
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px var(--primary-green-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px var(--primary-green-glow);
    background-color: var(--secondary-green);
}

/* Vertical Cards */
.vertical-card {
    background-color: var(--primary-green);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vertical-card:hover {
    border-color: var(--secondary-green);
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.vertical-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.vertical-card h3 {
    color: var(--clean-white) !important;
    margin-bottom: 15px;
}

.vertical-card p {
    color: var(--soft-white) !important;
    font-size: 1rem;
    margin: 0;
}