﻿
.navbar-brand {   /* overriding properties of the same class in bootstrap.css*/
    font-size: x-large;
    font-weight: bold;
    padding-top:0;
    padding-bottom: 0;
    height: 40px;
    color: white;
}

.brand-logo {
    height: 100%;
    width: auto;
    flex-shrink: 0;
}
.brand-name {
    color: white;
    font-weight: bold;
    white-space: nowrap;
    display: inline-block;
    line-height: normal;
}
.phone-in-navbar {
    color: white; 
    font-size: x-large;
    font-weight: bold;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    background-color: lightgray;
    border: thick;
    border-color: red;
    justify-content: space-between;
    height: auto;
    margin-bottom: 10px;
}
.top-image {
    display: flex;
    flex-grow: 1;
    height: 300px;
}
.tag-line {
    font-size: x-large;
    font-weight: bold;
    color: blue;
    text-align: center;
}
.badge {
    font-size: medium;
    font-weight: bold;
    color: cornflowerblue;
    text-align: center;
}
.main-container {
    display: flex;
    flex-wrap: wrap;
    height: auto;
}
.info-container {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 75%;
    padding-right: 10px;
    padding-top: 10px;
}
.info-box {
    display: flex;
    flex-grow: 0;
    flex-direction: column;
}
.info-box li {
    font-size: large;
}
.form-container {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 25%;
    flex-wrap: wrap;
}
.formbox {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 10px;
    background: #f9f5f5;
    border: thin solid blue;
}
.form-groups {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
}
.form-title {
    font-size: x-large;
    font-weight: bold;
    color: blue;
    text-align: center;
}
.form-subtitle {
    font-size: smaller;
    font-style: italic;
    color: red;
    text-align: center;
}
.form-question {
    color: darkblue;
    margin-bottom: 2px;
}
.formbox .form-answer {
    min-width: 100%;
    margin-bottom: 10px;
}
.form-submit-button {
    max-width: 95%;
    font-weight: bold;
    margin: 20px 0px;
    color: blue;
}
.form-message {
    color: red;
    font-size: smaller;
    font-weight: bold;
}
@media (orientation: portrait) {
    .info-container {
        width: 100%;
    }
    .form-container {
        width: 100%;
    }
    .top-image {
        height:200px;
    }
}
input:invalid:not(:placeholder-shown) {
    border: 2px solid red;
}

.rounded-btn {
    display: inline-block; /* Allows padding and margin control */
    padding: 10px 20px; /* Adjust size */
    background-color: cornflowerblue; /* Button background color */
    color: white; /* Text color */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline */
    font-size: 18px; /* Font size */
    font-weight: bold;
    border: none; /* Remove default border */
    border-radius: 50px; /* Large radius for pill shape */
    cursor: pointer; /* Pointer on hover */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover effect */
.rounded-btn:hover {
    background-color: dodgerblue;
    transform: scale(1.05); /* Slight zoom */
}

.micro-cta {
    margin-top: 5px;
    text-align: left;
}

.micro-cta a {
    color: #0066cc;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.micro-cta a:hover {
    color: #004999;
    border-bottom: 1px solid #004999;
}

/* BENEFITS SECTION (first info-box) */
.info-container .info-box:nth-of-type(1) ul {
    list-style: none;
    padding-left: 0;
}

    .info-container .info-box:nth-of-type(1) ul li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 12px;
    }

        .info-container .info-box:nth-of-type(1) ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            color: #1a7f3c;
            font-size: 18px;
            font-weight: 700;
        }

/* CASE STUDIES SECTION (second info-box after CTA button) */
.info-container .info-box:nth-of-type(2) ul {
    list-style: none;
    padding-left: 0;
}

    .info-container .info-box:nth-of-type(2) ul li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 12px;
    }

        .info-container .info-box:nth-of-type(2) ul li::before {
            content: "★";
            position: absolute;
            left: 0;
            top: 0;
            color: #d4a017; /* Gold */
            font-size: 20px;
            font-weight: bold;
        }

/* 3-STEP PROCESS SECTION (third info-box) */
.info-container .info-box:nth-of-type(3) ul {
    list-style: none;
    padding-left: 0;
}

    .info-container .info-box:nth-of-type(3) ul li {
        position: relative;
        padding-left: 26px;
        margin-bottom: 12px;
    }

        .info-container .info-box:nth-of-type(3) ul li::before {
            content: "➤";
            position: absolute;
            left: 0;
            top: 0;
            color: #2a4fbf;
            font-size: 18px;
            font-weight: 700;
        }

/* FAQ SECTION (fourth info-box) */
#faq ul {
    list-style: none;
    padding-left: 0;
}

    #faq ul li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 18px;
    }

        #faq ul li::before {
            content: "❓";
            position: absolute;
            left: 0;
            top: 0;
            color: #666;
            font-size: 18px;
        }