/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: rgb(15, 131, 129);
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

header {
    position: sticky;
    top: 0%;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #222;
    color: #ffffff;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    transition: all 0.3s ease;
}

header nav a:hover {
    color: #ff6363;
    transform: scale(1.1);
}

.login-btn {
    padding: 10px 20px;
    background: #ff6363;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: #ff4444;
    transform: scale(1.1);
}

.banner {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns content to the start (left) */
    justify-content: center; /* Centers content vertically */
    background: url('img.avif') no-repeat center center/cover;
    color: #ffffff;
    padding: 140px 20px;
    position: relative;
    height: 50vh; /* Full viewport height for a more prominent banner */
    text-align: left ; /* Aligns text to the left */

}

.banner h1 {
   
    font-size: 50px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.banner p {
   
    font-size: 20px;
    margin-bottom: 40px; /* Adjusted spacing */
    line-height: 1.5;
}

.cta-buttons .btn {
    padding: 15px 30px;
    background: #ff6363;
    color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    margin: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn:hover {
    background-color: #ff4444;
    transform: scale(1.1);
}


/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    padding: 60px 20px;
    background: rgb(15, 131, 129);
}

.feature-card {
    background: #eba92f;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    perspective: 1000px;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ff6363;
    padding: 10px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon img {
    background: #ff4444;
    transform: rotate(360deg);
}

h3 {
    font-size: 22px;
    margin: 20px 0;
    color: #333;
}

p {
    font-size: 16px;
    color: #666;
}

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer p {
    font-size: 14px;
}

/* login page ------------------------------------------------------------------------------------------------ */

/* login Page Styles */
.register-form {
    max-width: 400px;
    margin: 100px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

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

.input-group input {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: #ff6363;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.input-group .btn {
    width: 100%;
    padding: 15px;
    background: #ff6363;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.input-group .btn:hover {
    background: #ff4444;
    transform: scale(1.05);
}

/* Dashboard ------------------------------------------------------------------------------------------------- */
/* Dashboard Page */
.sidebar {
    width: 250px;
    background: #333;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 60px;
}

.sidebar nav a {
    display: block;
    color: #fff;
    padding: 20px;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.sidebar nav a:hover {
    background: #ff6363;
    transform: translateX(10px);
}

.dashboard {
    margin-left: 250px;
    padding: 40px;
}

.dashboard-header {
    margin-bottom: 30px;
}

.dashboard-grid {
    display: flex;
    justify-content: space-between;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    flex-basis: 30%;
    text-align: center;
    transition: all 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.card h3 {
    margin-bottom: 20px;
}

/* explore pricing-------------------------------------------------------- */
/* General styles are the same from previous examples, but here we focus on specific styles for Explore Pricing */



.login-btn:hover {
    background-color: #ff4444;
    transform: scale(1.1);
}

.pricing-search {
    text-align: left;
    
    background: url('img.avif') no-repeat center center/cover;
    color: #fff;
    padding: 100px 20px;
    position: relative;
}

.pricing-search h1 {
    justify-content: left;
    font-size: 40px;
    margin-bottom: 10px;
}

.pricing-search p {
    justify-content: left;
    font-size: 18px;
    margin-bottom: 30px;
}

.search-bar {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-bottom: 20px;
}

.search-bar input {
    padding: 15px;
    width: 400px;
    border-radius: 5px 0 0 5px;
    border: none;
    outline: none;
    font-size: 16px;
    transition: box-shadow 0.3s ease;
}

.search-bar input:focus {
    box-shadow: 0 0 10px rgba(255, 99, 99, 0.8);
}

.search-btn {
    padding: 15px 20px;
    background-color: #ff6363;
    border: none;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: #ff4444;
    transform: scale(1.05);
}

.filters {
    text-align: left;
    margin: 20px 0;
}

.filters select {
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.filters select:hover {
    border-color: #ff6363;
}

.pricing-results {
    padding: 60px 20px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    perspective: 1000px;
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ff6363;
    font-weight: bold;
}

.product-card .view-details-btn {
    padding: 10px 20px;
    background: #ff6363;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.product-card:hover .view-details-btn {
    background: #ff4444;
    transform: scale(1.1);
}
.back-button {
    padding: 10px 20px;
    color: white;
    text-align: center;
}
