/* styles.css */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;

}

a {
    color: inherit;
    text-decoration: none;
}

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


/* Navigation Bar */
nav {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ddd;
    padding: 1rem 2rem;
    color: black;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo{
    width: 100px;
    height: auto;
    
}
.logo h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #000080; /* Navy color */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: 000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}


 
/* Banner Section */
#banner {
    background: url('sempershiptbanner.webp') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.banner-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
     display: flex;
    flex-direction: column;
    align-items: center;      /* centers horizontally */
    justify-content: center;  /* centers vertically */
    height: 50%;             /* ensure it fills the banner section */
    text-align: center;
}

.banner-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.banner-overlay p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    
}


.btn {
    background-color: #ffdd57;
    color: #333;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #ffc300;
}

/* Services Section */
#services {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.card {
    background-color: #f1f1f1;
    border-radius: 10px;
    max-width: 300px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    color: #fff;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.4);
}

.card h3 {
    font-size: 1.2rem;
}

.card p {
    padding: 1rem;
    font-size: 0.95rem;
}

/* Reviews Section */
#reviews {
    padding: 4rem 2rem;
    background-color: #eaf4f4;
    text-align: center;
}

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

.review-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.review {
    background-color: #fff;
    border-left: 5px solid #0077b6;
    padding: 1rem 1.5rem;
    max-width: 300px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: left;
}

.review span {
    display: block;
    margin-top: 0.5rem;
    font-weight: bold;
}



/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #0077b6;
        position: absolute;
        top: 70px;
        right: 0;
        width: 200px;
        text-align: right;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    .service-cards,
    .review-cards,
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    #banner {
        height: auto;
        padding: 4rem 1rem;
    }

    .banner-overlay h1 {
        font-size: 1.8rem;
    }

    .banner-overlay p {
        font-size: 1rem;
    }
}

#banner h1 {
    font-size: 48px;
    margin: 0;
}

#banner p {
    font-size: 20px;
    margin: 10px 0 20px;
}

#banner .btn {
    background-color: red;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

#banner .btn:hover {
    background-color: darkred;
}

#banner .btn:active {
    background-color: crimson;
}

/* Services Section */
#services {
    padding: 50px 20px;
    text-align: center;
}

#services h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.card {
    width: 30%;
    margin: 10px;
    background-color: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.card h3 {
    font-size: 24px;
    margin: 0;
}

.card p {
    padding: 20px;
    color: #555;
}

/* Customer Reviews Section */
#reviews {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

#reviews h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.review-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.review {
    width: 30%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
}

.review p {
    font-style: italic;
    color: #555;
}

.review span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #000435;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-content {
    text-align: center;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.contact-info, .certifications {
    width: 45%;
    text-align: center;
}

.contact-info a{
    color: #ffdd57;
    text-decoration: underline;
}
footer h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

footer p {
    margin-top: 1em;
    text-align: center;

}

body {
  min-height: 100vh; /* Set minimum height to 100% of the viewport height */
  display: flex; /* Enable Flexbox */
  flex-direction: column; /* Stack elements vertically */
}

footer {
  margin-top: auto; /* Push the footer down by filling the space above it */
}

.footer-section a {
    color: #ffdd57;
    text-decoration: underline;
    

}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    nav .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #007BFF;
    }

    nav .nav-links.active {
        display: flex;
    }

    nav .menu-icon {
        display: block;
    }

    .card, .review {
        width: 100%;
        margin: 10px 0;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info, .certifications {
        width: 100%;
        text-align: center;
    }
}
/* Blog-specific styles */
.blog-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.blog-header p {
    color: #7f8c8d;
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #3498db;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.blog-title {
    color: #2c3e50;
    font-size: 1.4em;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-excerpt {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2980b9;
    text-decoration: underline;
}

.categories {
    margin: 50px 0;
}

.categories h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.category-tag {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: #3498db;
    color: white;
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2em;
    }
    
    .blog-header p {
        font-size: 1em;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
    }
    
    .blog-container {
        margin: 20px auto;
    }
}


/* Contact */
.contact-form {
    max-width: 600px;
    margin: 30px auto;
    margin-top: 40px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

textarea {
    height: 150px;
    resize: vertical;
}

.required-field::after {
    content: " *";
    color: red;
}

.submit-btn {
    background-color: #007BFF;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form {
        margin: 20px 15px;
        padding: 20px;
    }
}

/*Driver Application */
/* style.css */

/* Base Styles */
.driverapp {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}



/* Application Container */
.driver-application {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-top: 20px; /* Additional spacing */
    
}

/* Remove Blue Outline */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
    border-color: #ddd; /* Maintains border color without outline */
}

/* Title Styling */
.applytitle {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    font-size: 2em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 40px;
}

/* Section Styling */
.form-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    border-left: 4px solid #3498db;
}

.form-section h2 {
    color: #2c3e50;
    margin-top: 0;
    font-size: 1.3em;
}

/* Form Group Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
}

.required::after {
    content: " *";
    color: #e74c3c;
}

/* Input Fields */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border 0.3s;
}

textarea {
    height: 100px;
    resize: vertical;
}

/* Radio Buttons */
.radio-group {
    margin: 15px 0;
}

.radio-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.radio-option input {
    margin-right: 10px;
}

/* Checkboxes */
input[type="checkbox"] {
    margin-right: 10px;
}

/* Submit Button */
.btn-submit {
    background-color: #3498db;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    display: block;
    margin: 30px auto 0;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 300px;
}

.btn-submit:hover {
    background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .driver-application {
        padding: 15px;
        margin-top: 15px;
    }
    
    .form-section {
        padding: 15px;
    }
    
    .applytitle {
        font-size: 1.5em;
    }
    
    nav {
        margin-bottom: 30px;
    }
}

/* Validation Styling */
input:invalid,
select:invalid,
textarea:invalid {
    border-color: #e74c3c;
}

input:valid,
select:valid,
textarea:valid {
    border-color: #2ecc71;
}

/* Select Dropdown Styling */
select {
    appearance: none;
    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: 1em;
}

/* This is the Hippa compliance blog */
/* styles.css */

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}



/* Blog Container */
.blog-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

/* Blog Header */
.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h1 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    font-style: italic;
}

/* Blog Post Content */
.blog-post {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.blog-content h2 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.blog-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #555;
}

.blog-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #2c3e50;
        padding: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
    
    .menu-icon {
        display: block;
    }
    
    .blog-header h1 {
        font-size: 1.8rem;
    }
    
    .blog-post {
        padding: 1.5rem;
    }
}

/* Accessibility Improvements */
a:focus, button:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

[aria-label] {
    position: relative;
}




/* terms and conditions container */
.terms-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/* terms and conditions header */
.terms-header {
    text-align: center;
    margin-bottom: 2rem;
}
.terms-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.terms-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
/* terms and conditions content */
.terms-content h2 {
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}
.terms-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
}
.terms-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.terms-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
/* Responsive Design */
@media (max-width: 768px) {
    .terms-container {
        padding: 1rem;
    }
    
    .terms-header h1 {
        font-size: 2rem;
    }
    
    .terms-content h2 {
        font-size: 1.3rem;
    }
    
    .terms-content p {
        font-size: 0.95rem;
    }
}
/* Accessibility Improvements */
a:focus, button:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}
/* Privacy Policy */


/* Privacy Policy Container */
.privacy-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/* Privacy Policy Header */
.privacy-header {
    text-align: center;
    margin-bottom: 2rem;
}
.privacy-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.privacy-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
/* Privacy Policy Content */
.privacy-content h2 {
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}
.privacy-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
}
.privacy-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
/* Responsive Design */
@media (max-width: 768px) {
    .privacy-container {
        padding: 1rem;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-content h2 {
        font-size: 1.3rem;
    }
    
    .privacy-content p {
        font-size: 0.95rem;
    }
}
/* Accessibility Improvements */
a:focus, button:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}
/* Contact Form Styles */
.contact-head {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 2rem;
    
}
.contact-head, p {
    margin: 0 auto;
    max-width: 600px;
    padding: 0 20px;
}
/* Mobile-first responsive form */
.google-form-wrapper {
    max-width: 800px; /* Limits form width on large screens */
    margin: 0 auto;   /* Centers the form */
    padding: 0 16px;  /* Prevents edge-to-edge on mobile */
}

.google-form-wrapper iframe {
    width: 100%;
    height: 1200px;   /* Adjust based on your form's height */
    border: none;     /* Removes default iframe border */
}
.small-text a {
    text-align: center;
    color: #640d15;
    text-decoration: underline;
    
}
/* Shared form styling (reuse from driver form) */
.form-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  overflow: hidden;
}

/* Contact form specific adjustments */
.contact-form {
  background: #f9f9f9;       /* Light background for differentiation */
  padding: 1.5rem;          /* More internal spacing */
  border-radius: 12px;      /* Softer corners */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Subtle depth */
}

.form-container iframe {
  width: 100%;
  border: none;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .contact-form {
    padding: 0.5rem;       /* Tighter padding on mobile */
  }
  
  .form-container iframe {
    height: 1450px;        /* Slightly taller for contact fields */
  }
}
