/* Visual Design System (Broker.triuvo.ai Match) */
:root {
    --neon: #50E3C2; /* Exact Neon Jade from Broker */
    --dark: #1b1b1b; /* Triuvo Black */
    --blue: #50E3C2; /* Mapping primary action to neon jade */
    --grey: #626262;
    --light-grey: #fafafa;
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    color: var(--grey);
    background: #fff;
    overflow-x: hidden; /* Prevent horizontal scroll from hero bleed */
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { display: block; max-width: 100%; }

.mobile-menu-toggle { display: none; }
/* --- HEADER (ITService 6 Scale) --- */
#Header {
    position: absolute; 
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 30px 60px; /* Generous padding */
    display: flex;
    align-items: center;
    background: transparent; 
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 35px; /* Reduced from 50px */
    filter: invert(1) brightness(0.2); 
}

.header-right { display: flex; gap: 40px; align-items: center; }

.main-nav ul { display: flex; gap: 30px; list-style: none; }
.main-nav a {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff; /* White text */
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2); 
}
.main-nav a:hover { color: var(--neon); text-shadow: none; }

.search-icon svg { stroke: #ffffff; cursor: pointer; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2)); }
.search-icon svg:hover { stroke: var(--neon); }

/* --- HERO (IMMERSIVE LAYOUT - MASSIVE SCALE) --- */
.hero-section {
    position: relative;
    height: 100vh; /* Full viewport height */
    min-height: 900px; /* Force massive height */
    display: flex;
    /* align-items: center; Removed to let container handle centering */
    background: #fff;
    overflow: hidden;
    padding-top: 0;
}

/* The Massive Visual Block */
.hero-visual-right {
    position: absolute;
    right: 0;
    top: 0; /* Align to top */
    width: 55%; 
    height: 100%; /* Full height to reach the bottom edge */
    z-index: 1;
    overflow: hidden;
    border-radius: 0;
}

.hero-visual-right img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center left;
}

/* Background Shape (Behind Image) */
.hero-shape-bg {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 100%;
    height: 140%;
    background: #f0f6ff;
    border-radius: 50%;
    z-index: -1;
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    background: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 10;
    bottom: 100px;
    left: 50px; 
    font-family: var(--font-head);
    text-align: center;
}
.floating-badge span { display: block; font-weight: 700; color: var(--blue); font-size: 18px; }
.floating-badge small { display: block; font-size: 11px; color: #999; letter-spacing: 1px; }


/* The Content Block (Left) */
.hero-container {
    max-width: 100%;
    padding: 0 8%;
    /* Ensure content never touches the image by adding massive right padding */
    padding-right: 57%; 
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    width: 100%; /* Fill the available narrow slot */
    padding-top: 100px;
}

.uptitle {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    color: #999; 
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-head);
    font-size: 68px; /* Massive Impact */
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 30px;
    font-weight: 600;
}

.text-blue { color: var(--blue); font-weight: 300; text-shadow: 0 0 20px rgba(0, 200, 83, 0.2); } 

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--grey);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Ensures text is centered */
    padding: 18px 40px;
    border-radius: 0;
    font-weight: 600;
    font-family: var(--font-head);
    font-size: 14px;
    transition: 0.3s;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--blue);
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(18, 104, 251, 0.3);
}
.btn-primary:hover { background: #0b5ed7; transform: translateY(-3px); }

.btn-secondary {
    background: transparent;
    color: #fff !important;
}
.btn-secondary:hover { transform: translateY(-3px); }

/* --- CONTENT SECTIONS --- */
.section-padding { padding: 100px 0; }
.bg-light { background: var(--light-grey); }
.text-center { text-align: center; }

.section-title {
    font-family: var(--font-head);
    font-size: 40px;
    color: var(--dark);
    max-width: 800px;
    margin: 20px auto 0;
}

.section-intro {
    background-color: #1b1b1b !important; /* Force Triuvo Black */
    background-image: none !important;
    color: #ffffff !important;
    position: relative;
    z-index: 10;
}

.section-intro .uptitle { color: var(--neon) !important; }
.section-intro .section-title { 
    color: #ffffff !important; 
    font-weight: 300 !important; /* Light weight as requested */
}

/* Grid Columns System */
@media (min-width: 768px) {
    .one { width: 100%; }
    .one-second { width: 50%; float: left; padding: 0 15px; }
    .one-third { width: 33.333%; float: left; padding: 0 15px; }
    .two-third { width: 66.666%; float: left; padding: 0 15px; }
    .one-fourth { width: 25%; float: left; padding: 0 15px; }
    .valign-middle { display: flex; align-items: center; }
}

/* Grid & Cards */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.clean-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.clean-card:hover { transform: translateY(-10px); }

.card-thumb img { width: 100%; height: 250px; object-fit: cover; }
.card-body { padding: 40px; }
.card-body h3 { font-family: var(--font-head); font-size: 22px; margin-bottom: 15px; color: var(--dark); }
.link-blue { font-weight: 600; color: var(--blue); border-bottom: 2px solid transparent; }
.link-blue:hover { border-bottom-color: var(--blue); }

/* Footer */
#footer { background: var(--dark); color: #888; padding: 50px 0; text-align: center; font-size: 14px; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-visual-right { width: 50%; opacity: 0.5; } /* Fade image on smaller screens to make text readable */
    .hero-content { width: 60%; }
}

@media (max-width: 768px) {
    .hero-visual-right { position: relative; width: 100%; height: 300px; order: -1; }
    .hero-section { flex-direction: column; height: auto; padding-top: 80px; }
    .hero-content { width: 100%; text-align: center; padding: 40px 0; }
    .grid-2 { grid-template-columns: 1fr; }
    .main-nav { display: none; } /* Add toggle logic */
    .header-container { padding: 0 20px; }
}
