/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.2em;
    margin-top: 20px;
}

.hero {
	text-align: center;
	padding: 50px 20px;
	color: white;
	position: relative;
	background: linear-gradient(to right, rgba(0, 123, 255, 0.9), rgba(0, 86, 179, 0.9)),
				url('https://images.unsplash.com/photo-1498050108023-c5249f4df085') no-repeat center center/cover;
}

.hero h1, .hero p {
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add shadow for better contrast */
}

.hero .cta-button {
	text-shadow: none; /* Keep buttons clean */
}

/* Buttons */
.cta-button {
    padding: 12px 24px;
    background-color: #d99000; /* Darker yellow for better contrast */
    color: #ffffff; /* White text for high contrast */
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold; /* Make the text bold */
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #b37600; /* Slightly darker yellow for hover */
    color: #ffffff; /* Keep text color consistent */
}



/* Section Styles */
.section {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.submit-button {
    padding: 12px 20px;          /* Padding around the button */
    font-size: 18px;             /* Font size of the text */
    color: white;                /* Text color */
    background-color: #007BFF;  /* Background color (you can change this to your desired color) */
    border: none;                /* No border */
    border-radius: 5px;         /* Rounded corners */
    width: 100%;                 /* Full width */
    margin-top: 15px;           /* Top margin */
    cursor: pointer;             /* Change cursor to pointer on hover */
    transition: background-color 0.3s; /* Smooth transition for background color */
	font-weight: bold;
}

.submit-button:hover {
    background-color: #0056b3;  /* Darker background color on hover */
}


/* How It Works Section */
.how-it-works, .why-choose-us {
    text-align: center;
    margin-bottom: 40px;
}

.how-it-works h2, .why-choose-us h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #336699; /* Primary blue color */
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.step {
    flex-basis: 22%;
    text-align: center;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step:hover {
    transform: scale(1.05);
    border-color: #004aad; /* Hover border color */
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #004aad; /* Primary blue color */
}

.step p {
    font-size: 1rem;
    color: #666;
}

.step-icon {
    font-size: 3rem;
    color: #fdb92e; /* Accent color for icons */
    margin-bottom: 15px;
}

/* Transport Companies Section */
.transport-companies {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.transport-companies h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: #336699; /* Primary blue color */
}

/* Companies Grid */
.companies-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Company Card */
.company-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    width: 300px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.company-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Company Name Styling */
.company-name {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #004aad; /* Primary color */
}

/* Company URL Styling */
.company-url a {
    font-size: 1.2rem;
    color: #336699; /* Link color */
    text-decoration: none;
}

.company-url a:hover {
    text-decoration: underline;
}

/* Subscribe Card */
.subscribe-card {
    background-color: #fff;
    border: 2px solid #336699; /* Blue border */
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

/* Center the main CTA button below the grid */
.button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Testimonials Section */
.testimonials {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #004aad; /* Primary color */
}

.testimonial {
    margin-bottom: 20px;
}

.testimonial p {
    font-size: 1.2rem;
    color: #333;
}

.testimonial span {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    color: #666;
}

/* Footer */
footer {
    width: 100%;
    background-color: #336699;
    color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: center;
}

footer .footer-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 10px;
}

footer p {
    margin: 0;
    color: #fff;
}

/* Services Section */
.services {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #336699;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(30% - 40px);
    min-width: 250px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #004aad; /* Primary blue */
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}

/* Links */
a {
    color: #336699; /* Primary link color */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #004aad; /* Darken link on hover */
    text-decoration: none;
}

a:focus {
    outline: none;
    border-bottom: 2px solid #004aad; /* Focus style */
}

a:active {
    color: #003366; /* Active link color */
}

/* Only apply these styles within .container */
.plaintext ul {
    list-style-type: none; /* Removes default bullets */
    padding: 0; /* Removes default padding */
    margin: 20px 0; /* Adds space above and below the list */
}

/* Styles for list items within .container */
.plaintext li {
    margin-bottom: 10px; /* Space between items */
    position: relative; /* For positioning the icon */
    padding-left: 25px; /* Adds space for the icon */
}

/* Font Awesome icon for list items within .container */
.plaintext li:before {
    content: '\f00c'; /* Unicode for Font Awesome check icon */
    font-family: 'Font Awesome 5 Free'; /* Font Awesome font family */
    font-weight: 900; /* Adjust weight for solid icons */
    position: absolute; /* Position icon relative to the list item */
    left: 0; /* Aligns the icon to the left */
    color: #007BFF; /* Color of the icon (customize as needed) */
}
