/*
Theme Name: Coalition Custom
Theme URI: http://localhost:9090/coalitiontechnologies
Author: Antigravity
Author URI: https://google.com
Description: Custom theme for Coalition Technologies
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: coalition-custom
*/

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

body {
    font-family: "Space Grotesk", Sans-serif;
    color: #444;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Space Grotesk", Sans-serif;
}

.text-primary {
    color: var(--primary-blue) !important;
}

/* Custom CSS to match the design */
:root {
    --primary-blue: #006aac;
    /* Brighter blue for logo/accents */
    --dark-blue: #006aac;
    /* Hero background */
    --accent-green: #8cc63f;
    /* Lime green */
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f8f9fa;
}

/* Header */
.top-bar {
    background-color: #006aac;
    /* Adjust to match screenshot */
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
}

.site-header {
    background-color: #fff;
    padding: 15px 0;
}

/* Navigation styles moved to assets/css/style.css for creative enhancements */
/* 
.nav-link {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333 !important;
    padding: 10px 15px !important;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
} 
*/




/* Buttons */
.btn-custom-green {
    background-color: var(--accent-green);
    color: white;
    font-weight: 700;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    /* Slight radius */
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-custom-green:hover {
    background-color: #7ab332;
    color: white;
    transform: translateY(-2px);
}

.btn-client-login {
    border: 2px solid var(--accent-green);
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 4px;
}

.btn-client-login:hover {
    background-color: var(--accent-green);
    color: white;
}

/* Hero Section */
.hero-section {
    background-color: #006aac;
    /* Fallback */
    /* Overlay handled in HTML or via pseudo-element if needed, usually image covers it */
    position: relative;
    padding: 120px 0;
    color: white;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 50, 100, 0.9) 0%, rgba(0, 80, 150, 0.8) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-weight: 700;
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.awards-bar {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.awards-bar img {
    max-height: 120px;
    margin: 0 15px;
}

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

.about-graph-img {
    max-width: 100%;
    height: auto;
}

.service-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Custom Helpers */
.bg-custom-green {
    background-color: var(--accent-green) !important;
}

.text-custom-green {
    color: var(--accent-green) !important;
}

.border-custom-green {
    border: 1px solid var(--accent-green);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.border-custom-green:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.bg-light-blue {
    background-color: #f8fbff;
}

/* Icons */
.bi {
    line-height: 1;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.process-step img {
    max-width: 100%;
    border-radius: 8px;
}

.cta-banner {
    background-color: #fff;
    text-align: center;
    padding: 50px 0;
}

.cta-banner h2 {
    color: var(--primary-blue);
}

.results-section {
    padding: 80px 0;
}

.dark-blue-section {
    background-color: #1a3c6d;
    color: white;
    padding: 80px 0;
}

.step-circle-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number-img {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    flex-shrink: 0;
}

.footer-section {
    background-color: #111;
    color: #ccc;
    padding: 50px 0;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}


/* Accordion Styles */
.custom-accordion .accordion-item {
    border-left: 5px solid var(--primary-blue) !important;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-blue);
    background-color: transparent;
    box-shadow: none;
}

.custom-accordion .accordion-button {
    background-color: transparent;
    box-shadow: none;
    padding: 20px;
}

/* Custom Icons for Accordion */
.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3e%3c/svg%3e");
    transition: transform 0.2s ease-in-out;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238cc63f'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3e%3c/svg%3e");
    transform: rotate(0deg);
}

/* Contact Page Styles */
.contact-header {
    background-color: var(--primary-blue);
    color: white;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-form .form-control {
    background-color: #f1f1f1 !important;
    /* Light grey inputs */
    font-size: 14px;
}

.contact-form .form-control:focus {
    background-color: #fff !important;
    border: 1px solid #ccc !important;
    box-shadow: none;
}

.top-rated-box {
    background: linear-gradient(135deg, #005a8d 0%, #4facfe 100%);
}

/* How We Deliver Results */
.opacity-75 {
    opacity: 0.75;
}