/* styles.css - Professional Styling for Pro Shipping */

/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #F8FAFC;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Navigation Bar */
nav {
    background-color: #0056b3;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left .logo {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.nav-right a {
    color: white;
    text-decoration: none;
    font-size: 28px;
    margin: 0 15px;
    font-weight: bold;
}

.signup-btn {
    background: #FFA500;
    color: #0056b3;
    padding: 8px 15px;
    border-radius: 5px;
}

.signup-btn:hover {
    background: #FFA500;
    color: white;
}

/* Hero Section */
.hero {
    background: url('images/shipping1.jpg') center/cover no-repeat ;
    color: white;
    padding: 100px 20px;
    text-align: center;
    
}

.hero h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 25px;
    margin-bottom: 20px;
   
}

.cta-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #FFD700;
    color: #0056b3;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    font-weight: bold;
}

.cta-btn:hover {
    background: #FFA500;
    color: white;
}

/* Shipping Images Section */
.shipping-images {
    display: flex;
    justify-content: center;
    margin: 40px auto;
    gap: 20px;
}

.shipping-images img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    margin: 50px auto;
    width: 80%;
}

.feature {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
}

.feature img {
    width: 60px;
    margin-bottom: 10px;
}

.feature h2 {
    color: #333;
    font-size: 22px;
}

.feature p {
    font-size: 16px;
    color: #555;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 12px;
    position: relative;
    margin-top: 50px;
    width: 100%;
}

/* Centered Form Styling */
.container {
    width: 350px;
    margin: 10% auto; /* Centering vertically and horizontally */
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h2 {
    color: #333;
    font-size: 26px;
    margin-bottom: 20px;
}

input[type="text"], input[type="password"], input[type="email"], textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: #f1f1f1;
    transition: 0.3s;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, textarea:focus {
    border-color: #007bff;
    background: #fff;
}

button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background: linear-gradient(135deg, #0056b3, #004494);
}

p {
    margin-top: 15px;
    font-size: 14px;
}

p a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

p a:hover {
    text-decoration: underline;
}

/* Button Group Styling */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

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

.secondary-btn {
    background: #6c757d;
}

.secondary-btn:hover {
    background: #5a6268;
}

/* Button Group Styling */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* API Data Container */
.api-container {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    margin-top: 20px;
}

.api-container pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 14px;
    color: #333;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
}

.login-btn-dashboard{
    display: none;
}

.login-btn-navbar {
    display: block;    
}

@media screen and (max-width: 400px) {
    .login-btn-dashboard{
         display: block;
    }
    .login-btn-navbar {
        display: none;    
    }
}
