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

:root {
    --primary-color: #6CA0DC;
    /* Pastel Blue - "Cloud" Blue */
    --primary-hover: #5b8bbd;
    --secondary-color: #0c0834;
    /* Deep Dark Blue for backgrounds */
    --text-color: #333;
    --text-light: #ffffff;
    --bg-light: #f4f6f9;
    --card-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Softer, flatter shadow */
    --card-radius: 0px;
    /* Square design */
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

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

/* --- Components: Buttons --- */
.dt-btn,
.btn,
button[type="submit"] {
    border-radius: var(--card-radius);
    background-color: var(--primary-color);
    color: #000;
    /* Black text on bright green for high contrast */
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 12px 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: none;
    /* Flat design */
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.dt-btn:hover,
.btn:hover,
button[type="submit"]:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 220, 119, 0.3);
}

/* Secondary Button (Outline/Ghost) */
.btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* --- Components: Cards --- */
.blog-shortcode article,
.post-entry-content,
.white-card,
.modern-card,
.widget,
.icon-with-text-shortcode,
.vc_icon_element,
.icon-box-shortcode {
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 2px 8px rgba(0, 0, 0, 0.04);
    /* Subtle technical border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
}

.blog-shortcode article:hover,
.post-entry-content:hover,
.white-card:hover,
.modern-card:hover,
.widget:hover,
.icon-with-text-shortcode:hover,
.vc_icon_element:hover,
.icon-box-shortcode:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- Layout: Header & Nav --- */
.masthead.dt-header-menu-original {
    background-color: var(--secondary-color);
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    position: relative !important;
    /* Disable sticky */
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    height: 50px !important;
    /* 2/3 of previous 70px */
}

.branding {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    height: 50px;
    display: flex;
    align-items: center;
}

.branding img {
    max-height: 35px !important;
    /* Scaled down logo */
    width: auto !important;
}

/* Hide potentially cloned phantom headers */
.masthead-fixed,
.phantom-header {
    display: none !important;
}

/* --- Article Specific Styling (Tech/Enterprise Look) --- */

/* Modern Technical Lists (Ordered) */
.entry-content ol {
    counter-reset: tech-counter;
    list-style: none;
    padding-left: 0;
}

.entry-content ol li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}

.entry-content ol li::before {
    counter-increment: tech-counter;
    content: "0" counter(tech-counter);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    line-height: 1;
    padding-bottom: 5px;
}

/* Modern Technical Lists (Unordered) */
.entry-content ul {
    list-style: none;
    padding-left: 0;
}

.entry-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.entry-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    /* Square dot */
}

/* Refined Cards in Content (Flat & Technical) */
.entry-content .card.bg-light,
.entry-content .card.shadow-sm {
    background-color: #fff !important;
    border: 1px solid #e1e4e8;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.entry-content .card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.entry-content .card-title i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Lead paragraph enhancement */
.entry-content .lead {
    font-weight: 300;
    font-size: 1.4rem;
    color: var(--secondary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

/* Navigation Links */
.main-nav>li>a {
    font-weight: 500 !important;
    position: relative;
    color: #fff !important;
    /* Force white text */
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.main-nav>li>a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav>li:hover>a::after {
    width: 30px;
    /* Small tech accent */
}

/* --- Layout: Footer --- */
#footer {
    background-color: #080624;
    /* Even darker than secondary */
    color: #a0a0b0;
    font-size: 0.95rem;
}

#footer h3.widget-title {
    color: #fff;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 10px;
}

/* --- Typography: Articles --- */
.entry-title a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.2s;
    font-weight: 700;
}

.entry-title a:hover {
    color: var(--primary-color);
}

.entry-content {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.75rem;
}

.entry-content h2,
.entry-content h3 {
    color: var(--secondary-color);
    margin-top: 3rem;
    position: relative;
    display: inline-block;
}

/* Tech accent on clear headers */
.entry-content h2::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--primary-color);
    margin-bottom: 10px;
}


.widget {
    padding: 2rem;
    background: #fff;
}

.widget-title {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    border-bottom: none;
    padding-bottom: 0;
    display: block;
    width: 100%;
}

.widget-title h2 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.widget ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: block;
}

.widget ul li a {
    color: #555;
    font-weight: 500;
    transition: all 0.2s;
    display: block;
}

.widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* --- Components: Forms --- */
input[type="text"],
input[type="email"],
textarea,
select {
    border: 2px solid #e1e4e8;
    border-radius: var(--card-radius);
    /* Square */
    padding: 12px;
    background: #f9f9f9;
}

input:focus,
textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    outline: none;
}

/* --- Homepage specific: Modern Card Refactor --- */
/* .modern-card-wrapper removed - cleaner HTML structure */

.modern-card {
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-card-title {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.modern-card-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.modern-card-desc {
    color: #666;
}

.modern-card.modern-card-active {
    background: var(--secondary-color);
    color: #fff;
    border: none;
}

.modern-card.modern-card-active .modern-card-title,
.modern-card.modern-card-active .modern-card-desc {
    color: #fff;
}

.modern-card.modern-card-active .modern-card-subtitle {
    color: var(--primary-color);
}

/* --- Hero Section (Syneto Style) --- */
.main-gradient {
    /* Deep dark blue radial gradient */
    background: radial-gradient(circle at 50% 50%, #1a154a 0%, var(--secondary-color) 100%) !important;
    opacity: 1 !important;
}

/* Target the H1 in the hero section specifically */
#main>.container-fluid .col-12 h1 {
    color: #fff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-weight: 900;
    /* Extra bold for impact */
    letter-spacing: -1px;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

/* --- Homepage Refactoring Utilities (Replacing vc_custom) --- */
.section-bg-light {
    background-color: var(--bg-light) !important;
}

.section-bg-meeting {
    background-image: url('/assets/uploads/2019/11/top-view-photo-of-people-near-wooden-table-3183150.jpg') !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.feature-box-border {
    border-right: 3px solid var(--primary-color);
}

.py-large {
    padding-top: 80px;
    padding-bottom: 80px;
}