/* --- STUNNING MODERN UI: Navy & Electric Orange --- */
:root {
    /* YOUR PALETTE */
    --theme-navy: #061a3a;        /* Deepest Midnight */
    --theme-navy-light: #0d2b5c;  /* Rich Blue */
    --theme-orange: #ff5100;      /* Electric Orange */
    --theme-orange-soft: #ff8e2b; /* Glow/Highlight */

    /* Text */
    --text-main: #061a3a;
    --text-muted: #64748b;
    --text-white: #ffffff;

    /* Backgrounds */
    --bg-body: #f8fafc;           /* Ultra-light blue-grey */
    --bg-card: #ffffff;
    
    /* Effects */
    --shadow-card: 0 10px 40px -10px rgba(6, 26, 58, 0.08);
    --shadow-hover: 0 20px 60px -10px rgba(6, 26, 58, 0.15);
    --shadow-orange: 0 10px 30px rgba(255, 81, 0, 0.3);
    --radius: 12px;
}



body,html{
      font-family: "Chivo", sans-serif !important;

    background-color: var(--bg-body);
    color: var(--text-main);
    margin: 0;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { 
    text-decoration: none !important; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 1. THE HERO BREADCRUMB (Left Aligned & Glowing) --- */
.breadcromb {
    position: relative;
    /* Deep Rich Gradient */
    background: radial-gradient(circle at 80% 50%, var(--theme-navy-light), var(--theme-navy) 70%);
    padding: 120px 0 130px 0 !important;
    overflow: hidden;
    color: var(--text-white);
    text-align: left; /* STRICT LEFT ALIGN */
    z-index: 1;
}

/* The "Digital Mesh" Background Pattern */
.breadcromb::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: -1;
}

/* The Orange Ambient Glow (Right Side) */
.breadcromb::after {
    content: '';
    position: absolute;
    right: -10%;
    top: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--theme-orange) 0%, transparent 70%);
    opacity: 0.12;
    filter: blur(80px);
    z-index: -1;
    animation: floatGlow 10s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0); opacity: 0.12; }
    100% { transform: translate(-20px, 20px); opacity: 0.18; }
}

.breadcromb-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* Page Title: Big & Bold */
.breadcromb-box h2 {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 20px 0;
    color: #fff;
    line-height: 1.1;
    position: relative;
    padding-left: 35px; /* Indent for accent line */
    letter-spacing: -1px;
}

/* The Vertical Orange Power Line */
.breadcromb-box h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 6px;
    background: linear-gradient(180deg, var(--theme-orange), var(--theme-orange-soft));
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 81, 0, 0.5); /* Neon Glow */
}

/* Navigation Links */
.breadcromb-box ul {
    list-style: none;
    padding: 0 0 0 35px; /* Align with text */
    margin: 0;
    display: flex;
    gap: 10px;
}

.breadcromb-box li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.breadcromb-box li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: var(--theme-orange);
}

.breadcromb-box a {
    color: #fff;
    position: relative;
}

.breadcromb-box a:hover {
    color: var(--theme-orange-soft);
}

/* --- 2. CARDS & SECTIONS (Clean & Airy) --- */
.service-problem-area, .about-promo {
    padding: 100px 0;
    background: var(--bg-body);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 60px;
}

.section-title .highlight {
    color: var(--theme-orange);
    position: relative;
    display: inline-block;
}

/* --- 3. FLOATING CARDS (Problem Items) --- */
.problem-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 0; /* Full bleed image */
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.problem-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 81, 0, 0.2);
}

.problem-image-box {
    height: 240px;
    width: 100%;
    overflow: hidden;
    margin: 0;
}

.problem-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.problem-item:hover .problem-image-box img {
    transform: scale(1.1);
}

/* Content Padding inside card */
.problem-heading-card {
    padding: 25px 25px 10px 25px;
    font-size: 22px;
    font-weight: 700;
    color: var(--theme-navy);
}

.problem-text-card {
    padding: 0 25px 30px 25px;
    color: var(--text-muted);
    font-size: 15px;
}

/* --- 4. BUTTONS (Modern Gradient Pill) --- */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--theme-orange) 0%, #ff7b00 100%);
    color: white;
    padding: 16px 36px;
    border-radius: 50px; /* Pill shape */
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-orange);
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Shine Effect */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 81, 0, 0.4);
    color: white !important;
}

.cta-button:hover::before {
    left: 100%;
}

/* --- 5. SERVICE LIST (Glass Grid) --- */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0;
    margin-top: 40px;
}

.service-list li {
    background: #fff;
    padding: 18px 25px;
    border-radius: 8px;
    border-left: 4px solid transparent; /* Hidden accent */
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.service-list li:hover {
    border-left-color: var(--theme-orange);
    background: #fff;
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Checkmark Icon replacement */
.service-list li::before {
    content: "✓";
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 81, 0, 0.1);
    color: var(--theme-orange);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
    margin-right: 15px;
}
.map-section{
    padding:40px;;
}
/* --- MOBILE --- */
@media (max-width: 768px) {
    .breadcromb { padding: 80px 0 !important; }
    .breadcromb-box h2 { font-size: 34px; padding-left: 20px; }
    .breadcromb-box ul { padding-left: 20px; flex-wrap: wrap; }
    
    .cta-button { width: 100%; text-align: center; }
    
    .section-title { font-size: 32px; margin-bottom: 40px; }
}