/* ============================================================
   Custom Styles for Portfolio Website (dennisnowland.uk)
   ============================================================ */
.badge, .btn, .fbShadow{
    box-shadow: 1px 1px #000000;
}
 
.badgeMinWidth{
    min-width: 170px !important;
    min-height:35px;
}
 
.hobbiesMinWidth{
    min-width: 125px !important;
}
 
 
 
li::marker {
  color: rgb(130, 2, 2);
}
 
.timeline-marker{
    background:brown !important;
}
/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 76px; /* Account for fixed navbar */
    background-color: white;
}
 
.text-primary{
    color:darkblue;
}
 
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #649fdb 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}
 
.hero-content h1 {
    animation: fadeInUp 1s ease-out;
}
 
.hero-content p {
    animation: fadeInUp 1s ease-out 0.2s both;
}
 
.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}
 
.hero-image img {
    animation: fadeInRight 1s ease-out 0.6s both;
    max-width: 300px;
    border: 5px solid rgba(255, 255, 255, 0.2);
}
 
/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #649fdb 100%);
    padding: 120px 0 80px;
    margin-bottom: 0;
}
 
/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 30px;
}
 
.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #007bff;
}
 
.timeline-item {
    position: relative;
    margin-bottom: 30px;
}
 
.timeline-marker {
    position: absolute;
    left: -22px;
    top: 20px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #007bff;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #007bff;
}
 
.timeline-content {
    margin-left: 20px;
}
 
/* Skills Progress Bars */
.progress {
    height: 10px;
    border-radius: 10px;
}
 
.progress-bar {
    border-radius: 10px;
    transition: width 1.5s ease-in-out;
}
 
/* Card Hover Effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    background-color: aliceblue;
    border-left: 4px solid #007bff;
}
 
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25) !important;
}
 
/* Achievement Cards */
.achievement-card .card-body {
    padding: 2rem;
    background-color: aliceblue;
}
 
.achievement-card i {
    transition: transform 0.3s ease;
}
 
.achievement-card:hover i {
    transform: scale(1.1);
    border-left: 4px solid #007bff;
}
 
/* Stats Cards */
.stats-card {
    background: linear-gradient(135deg, aliceblue 0%, aliceblue 80%);
 
}
 
.stats-card:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}
 
/* Testimonial Cards */
.testimonial-card {
    border-left: 4px solid #007bff;
    background-color: aliceblue;
}
 
.testimonial-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    
}
 
/* Skill Tags */
.skills-tags .badge,
.skill-tags .badge,
.achievement-stats .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}
 
/* Social Links */
.social-links a {
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
 
.social-links a:hover {
    color: #007bff !important;
}
 
/* Form Styles */
.form-control:focus,
.form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
 
/* Rating Input */
.rating-input .btn-check:checked + .btn {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000;
}
 
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
 
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
 
/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-marker {
        left: -17px;
    }
    
    .timeline-content {
        margin-left: 10px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
}
 
@media (max-width: 576px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}
 
/* Custom Utilities */
.text-primary {
    color:  darkblue !important;
}
 
.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}
 
/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
 
/* Loading Animation for Progress Bars */
.skill-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}
 
.skill-item:nth-child(1) { animation-delay: 0.1s; }
.skill-item:nth-child(2) { animation-delay: 0.2s; }
.skill-item:nth-child(3) { animation-delay: 0.3s; }
.skill-item:nth-child(4) { animation-delay: 0.4s; }
 
/* Navbar Active State */
.navbar-nav .nav-link.active {
    color: #007bff !important;
    font-weight: 600;
}
 
/* Button Hover Effects */
.btn {
    transition: all 0.3s ease;
}
 
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
 
/* Accordion Custom Styles */
.accordion-button:not(.collapsed) {
    background-color: #e7f3ff;
    color: #0c63e4;
}
 
.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
 
.button-shadow, .hobbies-Shadow, .skills-Shadow{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
 
/* ============================================================
   ATS Engine page — additional styles
   (kept in the same visual language as the sheet above:
   aliceblue cards, #007bff / brown accents, button-shadow)
   ============================================================ */
.device-frame{
    animation: fadeInRight 1s ease-out 0.6s both;
    border: 5px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    max-width: min(380px, 100%);
    box-sizing: border-box;
    margin: 0 auto;
    text-align: left;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}
.device-topbar{
    background:#f1f3f5;
    padding:8px 12px;
    display:flex;
    align-items:center;
    gap:6px;
    border-bottom:1px solid #dee2e6;
}
.device-dot{width:9px;height:9px;border-radius:50%;display:inline-block;}
.device-body{background:#fff; padding:16px;}
.chat-bubble{
    padding:10px 13px;
    border-radius:12px;
    font-size:13.5px;
    margin-bottom:10px;
    max-width:92%;
}
.chat-bubble.user{background:darkblue; color:#fff; margin-left:auto; border-bottom-right-radius:3px;}
.chat-bubble.engine{background:aliceblue; border:1px solid #cfe2ff; border-bottom-left-radius:3px;}
.mini-card{
    background:#fff; border:1px solid #dee2e6; border-radius:8px; padding:8px 10px; font-size:11px; flex:1;
    border-top:4px solid brown;
}
.mini-card.new{border-top-color:#007bff;}
.mini-card .role{font-weight:700; font-size:12px;}
.mini-card .meta{color:#6c757d; font-size:10px;}
.problem-icon, .flex-icon{font-size:1.9rem; margin-bottom:1rem;}
.stats-card .fa-stack, .stats-card i{color:#007bff;}
.lifecycle-badge{font-size:0.95rem; padding:0.5rem 0.9rem;}
.match-status-badge{
    display:inline-block; white-space:normal; text-align:left;
    font-size:0.85rem; padding:0.5rem 0.9rem; max-width:100%;
}
section{scroll-margin-top:90px;}
.compare-card-outer{background:#fff; border-radius:10px; padding:1.25rem;}
.pill-actions .btn{min-width:150px;}
.fitbadge{
    display:inline-block; margin-top:6px; background:#198754; color:#fff; font-size:10.5px;
    font-weight:700; padding:2px 7px; border-radius:5px;
}
 















/* ============================================================
   ATS ENGINE PROFESSIONAL PAGE
   ============================================================ */
.ats-pro-section{padding:5rem 0;}
.ats-pro-card{background:aliceblue;border-left:4px solid #007bff;border-radius:.5rem;box-shadow:0 10px 25px rgba(0,0,0,.35);padding:2rem;height:100%;transition:transform .3s ease,box-shadow .3s ease;}
.ats-pro-card:hover{transform:translateY(-5px);box-shadow:0 10px 25px rgba(0,0,0,.25);}
.ats-price-card{background:#fff;border-left:6px solid #007bff;border-radius:14px;box-shadow:0 10px 25px rgba(0,0,0,.35);padding:2.5rem;}
.ats-price-value{font-size:4rem;font-weight:700;color:darkblue;line-height:1;}
.ats-price-period{color:#6c757d;font-size:1.1rem;}
.ats-feature-pill{display:inline-block;background:#fff;border:1px solid #cfe2ff;border-radius:30px;padding:.55rem 1rem;margin:.35rem;font-weight:600;box-shadow:0 4px 8px rgba(0,0,0,.15);}
.ats-kpi-card{background:aliceblue;border-left:4px solid brown;border-radius:10px;text-align:center;padding:1.5rem;box-shadow:0 10px 25px rgba(0,0,0,.25);}
.ats-kpi-value{font-size:2rem;font-weight:700;color:darkblue;}
.ats-highlight-band{background:linear-gradient(135deg,#667eea 0%,#649fdb 100%);color:#fff;}
.ats-cta-panel{background:darkblue;color:#fff;border-radius:12px;padding:3rem;text-align:center;box-shadow:0 10px 25px rgba(0,0,0,.35);}
.ats-ai-callout{background:#e7f3ff;border-left:5px solid #007bff;padding:1.5rem;border-radius:.5rem;}

/* Featured/recommended pricing tier */
.ats-price-card{position:relative;}
.ats-price-card.ats-featured{border-left-color:brown;transform:scale(1.03);}
.ats-price-card.ats-featured:hover{transform:scale(1.03) translateY(-5px);}
.ats-ribbon{
    position:absolute; top:-14px; left:50%; transform:translateX(-50%);
    background:brown; color:#fff; font-size:.8rem; font-weight:700;
    padding:.35rem 1rem; border-radius:20px; white-space:nowrap;
    box-shadow:1px 1px #000000;
}
.ats-plan-list{list-style:none; padding:0; margin:1.5rem 0;}
.ats-plan-list li{padding:.4rem 0; font-size:.95rem;}
.ats-audience-tag{
    display:inline-block; font-size:.8rem; font-weight:700; letter-spacing:.03em;
    text-transform:uppercase; color:#007bff; margin-bottom:.5rem;
}
