﻿
:root {
    --blue: #00A0DC;
    --pink: #EC328D;
    --black: #000000;
    --dark-section: #111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff4ef;
    color: #ffffff;
    scroll-behavior: smooth;
}

header {
    width: 100%;
    /*max-width: 1200px;*/
    /*    margin: auto;*/
    /*padding: 20px;*/
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 165px;
}
nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #012f5a ;/*#aaa;*/
    font-size: 14px;
    transition: 0.3s;
}

    /*nav a:hover {
        color: var(--blue);
        text-shadow: 0 0 5px var(--blue);
    }*/

/* Header layout fix */

.header-left {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 200px; /* adjust size */
    width: auto;
    object-fit: contain;
}

/* Navigation */
/*.header-nav a {*/
    /* margin: 0 12px;*/
    /*text-decoration: none;
    color: #012f5a ;*//*#888;*/
    /*font-size: 14px;*/
    /*transition: .3s;*/
/*}*/

    /*.header-nav a:hover {
        color: var(--blue);        
    }*/

.header-nav a {
    position: relative;
    padding-bottom: 3px;
}

    .header-nav a:hover {
        color: #012f5a;
    }

    .header-nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 2px;
        background: #012f5a;
        transition: width .3s ease;
    }

    .header-nav a:hover::after {
        width: 100%;
    }

/* Buttons with neat border line */
.btn {
    border-radius: 30px;
    font-size: 14px;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
    background: transparent;
    border: 2px solid;
    color: inherit;
}

.btn-blue {    
    background: #012e5b;
    color: #fff;
}

    .btn-blue:hover {
        background: #ff6f21; /*var(--blue);*/
        color: #fff;
    }
.btn1 {
    border-radius: 30px;
    font-size: 14px;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
    background: #fff;
    border: 2px solid #012e5b;
}
btn-blue-line {
    background: #fff;
    color: #012e5b;
    border: 2px solid #012e5b;
}

.btn-blue-line:hover {
    background: #012e5b; /*var(--blue);*/
    color: #fff;
    border: 2px solid #fff;
}

.btn-orange {
    background: #ff6f21;
    color: #fff;
}

    .btn-orange:hover {
        background:#012e5b ; /*var(--blue);*/
        color: #fff;
    }

.btn-pink {
    border-color: var(--pink);
    color: var(--pink);
}

    .btn-pink:hover {
        background: var(--pink);
        color: #fff;
    }

section {
    padding: 80px 20px;
    /*max-width: 1100px;*/
    margin: auto;
    text-align: center;
}

/* Hero section with light background and smiley faces theme */
/*#hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #f9f9f9;
    color: #111;
    border-radius: 5px;*/ /*16px;*/
    /*padding: 120px 20px;
    background: url('../images/hero.png') center/cover no-repeat;*/
    /*background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?fit=crop&w=1600&q=80') center/cover no-repeat;*/
    /*filter: brightness(50%) !important;*/
/*}

    #hero img {
        width: 100%;
        max-width: 800px;
        border-radius: 16px;
        margin-bottom: 40px;
    }

    #hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #ff802f;*/ /*var(--blue);*/
    /*}

    #hero p {
        font-size: 1.2rem;
        max-width: 600px;
        margin: auto;
        color: #fff;*/ /*#333;*/
        /*margin-bottom: 30px;
    }*/

#hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('../images/hero.png') center/cover no-repeat;
    padding: 120px 20px;
    color: #111;
    /*border-radius: 5px;*/
    overflow: hidden;  important for rounded corners 
    height:auto;
}


    /* DARK OVERLAY ONLY ON BACKGROUND */
    #hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);  50% brightness 
        z-index: 1;
    }

    /* Bring TEXT above overlay */
    #hero > * {
        position: relative;
        z-index: 2;
    }
    #hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #ff802f;
        }

    #hero p {
        font-size: 1.2rem;
        max-width: 600px;
        margin: auto;
        color: #fff; /*#333;*/
        /*margin-bottom: 30px;*/
    }
/* Content on top of overlay */

.hero-content {
    position: relative;
    z-index: 2;
    transform: translateY(11vh);
   /* max-width: 700px;*/
}
/*topSection*/
        #topSection {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #f9f9f9;
    color: #111;
    border-radius: 5px; /*16px;*/
    padding: 120px 20px;
}
/* Dark sections */
.dark-section {
    background: #fff4ef; /*#dfe1e7; #ffe2d5 ;var(--dark-section);*/
    padding: 20px 20px; /*40px 20px;*/
    /*border-radius: 16px;*/
    margin-top: 40px;
    /*margin-bottom: 2em;*/
}

h2 {
    color: #002e57; /*var(--blue);*/
    margin-bottom: 20px;
}
h3 {
    color: #002e57; /*var(--blue);*/
    /*margin-bottom: 20px;*/
}

p {
    color: #ff8230; /*#ccc;*/
    line-height: 1.6;
}

/* Service grid layout */
/*.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
    margin-top: 30px;
    text-align: left;
}*/

/*.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-top: 40px;
    text-align: left;    
}*/

.service-grid {
    max-width: 1100px; /* centers grid and controls row width */
    margin: 0 auto; /* center horizontally */
    padding: 0 40px; /* add left/right space */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px; /* reduce gap between boxes */
    margin-top: 40px;
    text-align: left;
}
.service-box {
    background: #fff4ef; /*#002d55; #111;*/
    padding: 20px;
    /*border-radius: 16px;*/
    /*border: 1px solid #222;*/
    transition: 0.3s;
    text-align: center; /* center the icon + heading */
}

    .service-box:hover {
        transform: translateY(-5px);
    }

    /* Headings (dark blue) */
    .service-box h3 {
        color: #ff7323; /*#002e57;*/
        margin-bottom: 10px;
        font-weight: 600;
        text-align: left;
    }
    .service-box p {
        color: #003561; /*#002e57;*/
        margin-bottom: 10px;        
        text-align: left;
    }

    /* Bullet list container */
    .service-box ul {
        text-align: left; /* keep bullets left-aligned */
        display: inline-block; /* keeps the list centered under the icon */
        padding-left: 18px; /* indent for bullets */
        margin: 0;
    }

    /* Bullet items (orange) */
    .service-box li {
        color: #003561 ;/*#ff8230;*/
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 8px;
    }

.service-icon {
    display: block;
    margin: 0 auto 15px;
    width: 150px;
    height: auto;
    /*margin-bottom: 15px;*/
}

.services-container {
    max-width: 2000px; /* same width as service-grid */
    margin: 0 auto; /* centers the whole block */
    padding: 0 40px; /* same left/right padding */
    text-align: center;
}

    .services-container h2 {
        text-align: center;
        margin-bottom: 30px;
    }

/* Quick Scan Page ---------------------------------- */

.quickscan-container {
    max-width: 800px;
    margin: 0px auto;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    color: #00355f;
    box-shadow: 0 0 40px rgba(0,0,0,0.05);
}

.qs-title {
    font-size: 2rem;
    color: #ff7023 ;/*var(--blue);*/
    margin-bottom: 20px;
    text-align: center;
}

.qs-section {
    margin-bottom: 40px;
}

.qs-input {
    width: 100%;
    padding: 12px 15px;
    margin: 8px 0 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.qs-question {
    background: #fafafa;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.qs-question-text {
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff7123;
}

.qs-options {
    display: flex;
    gap: 12px;
    color: #00355f;
}

.qs-radio {
    background: #f5f5f5;
    padding: 8px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: 0.2s;
}

    .qs-radio:hover {
        background: #e0e0e0;
    }

    .qs-radio input {
        accent-color: #00345f;
    }

.qs-submit-area {
    margin-top: 30px;
    text-align: center;
}

/*.qs-btn-primary {
    background: var(--pink);
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    color: btn btn-blue#fff;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}*/

    .qs-btn-primary:hover {
        opacity: 0.8;
    }

.qs-btn-secondary {
    margin-left: 20px;
    text-decoration: none;
    color: #444;
}

/* Scan Result page ---------------------------------- */
/*.result-hero {
    text-align: center;
    padding: 0px 0px 0px;
    background: #fff4ef;*/ /* match header background */
    /*color: #002e57;*/ /* blue heading */
/*}*/
/* RESULT HERO — keep it centered with normal padding */
.result-hero {
    text-align: center;
    padding: 0px 20px 20px; /* FIX — removes uneven spacing */
    background: #fff4ef;
    color: #002e57;
}
    .result-hero h1 {
        font-size: 2.4rem;
        margin-bottom: 10px;
        color: #002e57; /* match home page heading color */
    }

    .result-hero p {
        color: #ff8230; /* orange body text like Services section */
        max-width: 600px;
        margin: 0 auto 20px;
    }

/* RESULT CARD SECTION */
/*.result-card-section {
    display: flex;
    justify-content: center;
    padding: 40px 20px 80px;
    background: #fff4ef;*/ /* match theme */
/*}*/
/* CENTER THE CARD PERFECTLY ON ALL SCREENS */
.result-card-section {
    display: flex;
    justify-content: center; /* <-- forces true centering */
    align-items: flex-start;
    padding: 0px 20px 80px; /* FIX — remove extra top padding */
    background: #fff4ef;
}

/* MAIN CARD */
/*.result-card {
    background: #ffffff;*/ /* white card like Quick Scan page */
    /*border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    padding: 40px;
    max-width: 700px;
    width: 100%;
    color: #002e57;*/ /* heading/body text */
/*}*/
/* MAKE SURE CARD IS TRULY CENTERED */
.result-card {
    margin: 0 auto; /* <-- ensures perfect centering */
    max-width: 750px; /* slightly wider, matches your form card */
    width: 100%;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    color: #002e57;
}

/* HEADER INSIDE CARD */
.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.result-label {
    font-size: 12px;
    color: #777;
}

.result-company {
    font-size: 18px;
    font-weight: 600;
    color: #002e57;
}

/* STATUS PILL */
.result-pill {
    background: #ffdf9e; /* soft yellow */
    color: #7a5500;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
}

/* STATS BOXES */
.result-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.result-stat {
    flex: 1;
    background: #f7f2ee; /* peach tint */
    border-radius: 12px;
    padding: 12px 16px;
}

.result-stat-label {
    font-size: 12px;
    color: #777;
}

.result-stat-value {
    font-size: 20px;
    font-weight: 600;
    margin-top: 4px;
    color: #002e57;
}

/* CONTENT LIST */
/* Center the inner content block */
.result-body {
    text-align: left; /* center <h3> */
}
    .result-body h3 {
        margin-top: 10px;
        margin-bottom: 10px;
        color: #002e57;
    }
    /* Center the UL as a block */
    .result-body ul {
        display: inline-block; /* <-- MAGIC FIX */
        text-align: left; /* bullets stay left */
        margin: 0 auto; /* center the UL */
        padding-left: 20px;
    }
    /* Adjust bullets */
    .result-body li {
        color: #00345e;
        margin-bottom: 5px;
    }

    /* Right-aligned links */
.result-links {
    display: flex;
    gap: 15px;
}

.result-links .header-nav {
    background: white;
    border: 1px solid #012e5b;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    color: #012e5b;
    cursor: pointer;
}

.result-links .header-nav:hover {
    background: #012e5b;
    color: white;
}
/*.result-body li {
    color: #00345e ;*//*#ff8230;*/
    /*margin-bottom: 5px;
}*/

/*Scale-Service section*/

/* Container */
.scale-services-section {
    padding: 40px 20px;
    background: #ffece4;/*#0b1220;*/ /* dark theme background */
    color: #fff;
    text-align: center;
}

    /* Title */
    .scale-services-section h2 {
        font-size: 2.4rem;
        color: #ff8230;
        margin-bottom: 10px;
    }

/* Subtext */
.scale-subtext {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #00345e; /*#d9d9d9;*/
    font-size: 1.1rem;
}

/* Card Grid */
.scale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Individual Card */
.scale-card {
    background: #00345d; /*#141c2d;*/
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

    /* Card heading */
    .scale-card h3 {
        margin: 10px 0 10px;
        color: #fff;
    }
/*--------------------------------------*/
/* Container matches scale-grid width */
.scale-addons {
    max-width: 900px; /* same width as scale-grid */
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
}

    /* Title spacing */
    .scale-addons h4 {
        margin-bottom: 20px;
        color: #0e305a;
        font-size: 1.1rem;
        font-weight: 600;
    }

/* Responsive grid for add-ons */
.addon-grid-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    justify-content: center;
}

    /* Individual tag/box styles */
    .addon-grid-boxes span {
        display: inline-block;
        padding: 10px 16px;
        background: #0e305a;
        color: white;
        border-radius: 8px;
        font-size: 14px;
        white-space: nowrap;
    }
/*--------------------------------------*/
/* Badge */
.badge {
    display: inline-block;
    padding: 6px 12px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    color: #fff;
    margin-bottom: 8px;
}

.badge-orange {
    background: #ff8230;
}

.badge-blue {
    background: #2d67ff;
}

.badge-green {
    background: #0fbf8c;
}

.badge-brown {
    background: #b67a3b;
}

/* Add-on grid */
.scale-addons {
    margin-top: 40px;    
}

    .scale-addons h4 {
        margin-bottom: 20px;
        color: #00345e;
    }

.addon-grid {    
    flex-wrap: wrap;
    gap: 12px;   
    
}

.addon-grid span {
    background: #141c2d;
    padding: 10px 15px;
    border-radius: 10px;
    color: #dcdcdc;
    font-size: 14px;
}

.scale-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
/* Badge image style */
.scale-badge-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* Title inside scale card */
.scale-card-header h3 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

/* Description text */
.scale-card-header p {
    margin: 0;
    color: #d5d5d5;
    font-size: 15px;
    line-height: 1.5;
}

/* Deep Consult Section */
.deep-consult-section {
    background: #fff4ef ;/*#0e0e0e;*/
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.deep-consult-card {
    background: #fff4f0 ;/*#0d0d0f;*/
    padding: 35px;
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    color: #fff;
    box-shadow: 0 4px 25px rgba(0,0,0,0.4);
}

    .deep-consult-card h3 {
        margin-top: 0;
        font-size: 1.4rem;
        font-weight: 600;
    }

    .deep-consult-card p {
        margin-bottom: 25px;
        color: #ff7223; /*#f5edea ;*/ /*#cfcfcf;*/
    }

/* Form Layout */
.deep-consult-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .deep-consult-form input {
        flex: 1;
        min-width: 180px;
        padding: 12px 15px;
        border-radius: 8px;
        background: #fff4f0; /*#1a1a1d;*/
        color: #002e59;
        border: 1px solid #bfbfbf; /*1px solid #333;*/
    }

.consult-btn {
    background: #f5298a;
    padding: 12px 22px;
    border-radius: 8px;
    border: none;
    color: white;
    cursor: pointer;
    font-weight: 600;
}

    .consult-btn:hover {
        background: #ff4da7;
    }
/* Pricing Page Styles */

.pricing-hero {
    text-align: center;
    padding: 0px 20px 40px;
}

    .pricing-hero h1 {
        font-size: 3rem;
        color: #00355f;
    }

    .pricing-hero p {
        color: #ff7123;
        margin-top: 10px;
    }

.pricing-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    padding: 40px 20px;
}

.price-card {
    background: #00345f;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #222;
    position: relative;
}

    .price-card.highlight {
        border: 1px solid var(--blue);
        box-shadow: 0 0 20px rgba(0,160,220,0.2);
    }
    .price-card h2 {
        color: #ffffff;
    }
.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--pink);
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
}

.price {
    font-size: 1.4rem;
    color: var(--blue);
}

.subtitle {
    margin-top: -8px;
    margin-bottom: 12px;
    color: #bbb;
}

.desc {
    color: #ccc;
    margin-bottom: 20px;
}

.price-list {
    list-style: none;
    padding-left: 0;
}

    .price-list li {
        margin-bottom: 8px;
        color: #ddd;
    }

.note {
    margin-top: 15px;
    color: #888;
    font-size: 0.9rem;
}

.addons-section {
    padding: 60px 20px;
    background: #fff4ef;
}

    .addons-section h2 {
        text-align: center;
        margin-bottom: 40px;
        color: #003560;
    }

.addons-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.addon-box {
    background: #111;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #222;
}

    .addon-box h3 {
        color: #ff7123;
        margin-bottom: 15px;
    }

    .addon-box ul {
        list-style: none;
        padding-left: 0;
    }

    .addon-box li {
        color: #ccc;
        margin-bottom: 6px;
    }

.small-notes {
    text-align: center;
    color: #777;
    margin-top: 30px;
}
/* BUTTONS */
.result-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.book-button {
    text-align: center;
    padding: 15px 10px 10px 10px;
}
.result-banner {
    text-align: center;
}
/* Match your blue theme button from Home page */
.btn-outline {
    border-radius: 30px;
    font-size: 14px;
    padding: 10px 20px;
    cursor: pointer;
    background: transparent;
    border: 2px solid #012e5b;
    color: #012e5b;
}

    .btn-outline:hover {
        background: #012e5b;
        color: #fff;
    }

footer {
    background: #012e5b; /*#0a0a0a;*/
    border-top: 1px solid #222;
    padding: 40px 20px;
    color: #888;
    text-align: left;
}

    footer .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
        gap: 30px;
        max-width: 1200px;
        margin: auto;
    }

    footer h4 {
        color: #fff;
        margin-bottom: 10px;
    }

    footer a {
        display: block;
        color: #aaa;
        font-size: 14px;
        text-decoration: none;
        transition: 0.3s;
    }

        footer a:hover {
            color: var(--blue);
            text-shadow: 0 0 5px var(--blue);
        }

    footer p {
        font-size: 12px;
    }

/* Tablet */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width:768px) {
   /* header {
        flex-direction: column;
        align-items: flex-start;
    }*/
    header {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 10px;
    }

    .logo-img {
        height: 120px;
    }

    section {
        text-align: center;
    }

    /*#hero h1 {
        font-size: 2.2rem;
    }*/
    .services-pro {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .service-grid {
        grid-template-columns: 1fr; /* single column */
        gap: 20px;
        padding: 0 10px;
    }

    .service-box {
        text-align: center;
    }

        .service-box ul {
            display: block;
            margin: 0 auto;
            text-align: left;
        }

    .service-icon {
        width: 120px; /* auto-downsize for mobile */
    }

    .deep-consult-form {
        flex-direction: column;
        align-items: center; /* <-- centers all items */
    }

        .deep-consult-form input {
            width: 100%;
            max-width: 350px; /* keeps inputs looking nice */
        }

    .consult-btn {
        width: 100%;
        max-width: 350px; /* center + full width */
        margin-top: 10px;
    }

    .addon-grid-boxes {
        /*grid-template-columns: 1fr 1fr;*/ /* 2 columns */
        grid-template-columns: 1fr; /* 1 column */
        gap: 10px;
    }

        .addon-grid-boxes span {
            width: 100%;
            text-align: center;
        }

    #hero {
        height: 55vh; 
        padding: 40px 20px !important; 
        background-position: center top;
        background-size: cover;
        background-position: center 40%;
    }

        #hero h1 {
            font-size: 1.5rem; 
            line-height: 2.2rem;
        }

        #hero p {
            font-size: 1rem;
            max-width: 90%;
        }

    .hero-content {
        transform: none !important;
        margin-top: 8%;
    }
    .btn {
        margin-bottom: 0.5em;
    }
    .btn1 {
        margin-bottom: 0.5em;
    }
}


