/* Base Styles */
:root {
    --primary-color: #326872;
    --secondary-color: #f5f7fa;
    --background-color-btn: #009cab;
    --background-color-primary: #003439;
    --text-color: #333;
    --text-light: #666;
    --border-color: #eaeaea;
    --success-color: #28a745;
    --white: #fff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.logo {
    line-height: 0.6;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--background-color-btn);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0, 102, 255, 0.2);
    z-index: -1;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    margin-top: 15px;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--background-color-btn);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background-color: var(--background-color-btn);
    color: var(--text-color);
}

/*Delete below to switch "Log-in" button back on in the header*/

    a[href="#"].btn-secondary,
.nav-buttons a:first-child {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
}


/* Header */
header {
    padding: 20px 0;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 5rem;
    font-weight: 700;
    color: var(--text-color);
}
.subtitle {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    width: 450px;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

.hero-image {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-report {
    width: 800px;
    height: 350px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Trusted By Section */
.trusted-by {
    padding: 40px 0;
    background-color: var(--secondary-color);
    text-align: center;
}

.trusted-by p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logo-item {
    font-weight: 600;
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.7);
}

/* Features Section */
.features {
    background-color: var(--white);
    text-align: center;
    height: 700px;
    margin-top: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Workflow Section */
.workflow {
    background-color: var(--background-color-primary);
}

.workflow .container {
    display: flex;
    align-items: center;
    gap: 60px;
    height: 550px;
}

.workflow-content {
    flex: 1;
    color: var(--secondary-color)
}

.workflow-content p{
    color: var(--secondary-color);
}

.workflow-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.workflow-list i {
    color: var(--text-light);
}

.workflow-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.workflow-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Security Section */
.security {
    background-color: var(--white);
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

.security-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.security-item {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    padding: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.security-icon {
    font-size: 1.8rem;
    color: var(--text-color);
    padding: 15px;
    background-color: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
}

.security-content h3 {
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--secondary-color);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: left;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--secondary-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Demo Section */
.demo {
    background-color: var(--border-color);
    text-align: center;
}

.demo .container {
    max-width: 800px;
}

.demo-content {
    margin-bottom: 40px;
}

.demo-form {
    background-color: var(--border-color);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 15px;
    padding-right: 30px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    color: var(--text-light);
    transition: var(--transition);
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center; 
    background-size: 20px;
}

.form-group:has(select)::after {
    content: '▼';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-light);
    font-size: 12px;    

}
.form-group select option {
    padding-right: 10px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: var;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo .logo {
    color: var(--background-color-btn);
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container,
    .workflow .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content,
    .workflow-content,
    .hero-image,
    .workflow-image {
        flex: none;
        width: 100%;
    }
    
    .security-item {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
