body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover {
    text-decoration: underline;
}

.about-us-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #fff;
}

.content-container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    width: 100%;
}

.image-container {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.text-container {
    flex: 1;
    padding: 20px;
}

.text-container h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.text-container p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #555;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    margin-top: 50px;
}

/* Additional CSS for Image Path Issue */
.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-image .price-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #ff5733;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1em;
}
/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9fafb;
    color: #333;
}

header {
    background-color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6f61;
}

/* Navigation Links Styling */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px; /* Space between links */
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
    background-color: #f0f0f0;
    color: #ff6f61;
}

/* Login Button Styling */
.nav-links .login-btn {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links .login-btn:hover {
    background-color: #f0f0f0;
    color: #ff6f61;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #004c99 50%, #f9fafb 50%);
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6f61;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .hero-button {
    font-size: 1rem;
    padding: 10px 20px;
    color: white;
    background-color: #ff6f61;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero .hero-button:hover {
    background-color: #e65b54;
}

.hero button {
    margin: 0 10px;
    font-size: 1rem;
}

/* Services Section */
.services {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: #ffffff;
    color: #333;
}

.service-card {
    background: #f1f3f5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 30%;
}

.service-card img {
    width: 100%;
    border-radius: 10px;
}

.service-card h3 {
    margin: 20px 0 10px;
    color: #004c99;
}

.service-card p {
    color: #555;
}

.service-card button {
    background-color: #ff6f61;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-card button:hover {
    background-color: #e65b54;
}

/* About Section */
.about-section {
    display: flex;
    align-items: center;
    padding: 50px;
    background-color: #f9fafb;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-image {
    width: 300px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-content {
    max-width: 50%;
    text-align: left;
}

.about-content h2 {
    font-size: 2rem;
    color: #004c99;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing-section {
    padding: 50px;
    background-color: #ffffff;
    text-align: center;
}

.pricing-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #004c99;
}

.pricing-title span {
    color: #ff6f61;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px auto;
    max-width: 1200px;
}

.pricing-card {
    background-color: #f1f3f5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 250px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #004c99;
    margin-bottom: 10px;
}

.price {
    font-size: 1.2rem;
    color: #ff6f61;
    margin-bottom: 15px;
}

.book-now {
    background-color: #ff6f61;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.book-now:hover {
    background-color: #e65b54;
}

/* Reviews Section */
.reviews-section {
    text-align: center;
    background-color: #f9fafb;
    padding: 50px 20px;
}

.review-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px auto;
    max-width: 800px;
}

.review-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-card .review-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column; /* Stack items vertically */
        gap: 10px;
    }
    .about-section {
        flex-direction: column;
        text-align: center;
    }
}
/* Pricing Section */
.pricing-section {
    padding: 50px 20px;
    background-color: #f9fafb;
    text-align: center;
}

.pricing-title {
    font-size: 2rem;
    color: #004c99;
    margin-bottom: 30px;
    font-weight: bold;
}

.pricing-title span {
    color: #ff6f61;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #004c99;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 1.8rem;
    color: #ff6f61;
    font-weight: bold;
    margin: 10px 0 20px;
}

.pricing-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

.book-now {
    background-color: #ff6f61;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.book-now:hover {
    background-color: #e65b54;
}
/* Discount Section */
.discount-section {
    background: linear-gradient(135deg, #ff6f61, #e65b54);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 10px;
}

.discount-container {
    max-width: 800px;
    margin: 0 auto;
}

.discount-container h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.discount-container h2 span {
    color: #fdd835; /* Highlight color for discount text */
}

.discount-container p {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.discount-btn {
    background-color: #ffffff;
    color: #ff6f61;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.discount-btn:hover {
    background-color: #fdd835;
    color: #e65b54;
}
/* Pricing Section */
.pricing-section {
    padding: 50px 20px;
    background-color: #1a1a1a; /* Match dark theme */
    color: white;
    text-align: center;
}

.pricing-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: bold;
}

.pricing-title span {
    color: #ff6f61; /* Highlight color */
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #ff6f61;
    margin-bottom: 10px;
}

.pricing-card p {
    font-size: 1rem;
    color: #e0e0e0;
    margin: 5px 0;
}

.pricing-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-top: 10px;
}

.add-button {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-color: #ff6f61;
    color: white;
    font-size: 1.5rem;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.add-button:hover {
    background-color: #e65b54;
    transform: scale(1.1);
}

/* Pricing Section */
.pricing-section {
    padding: 50px 20px;
    background-color: #1a1a1a;
    color: white;
    text-align: center;
}

.pricing-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: bold;
}

.pricing-title span {
    color: #ff6f61;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #ff6f61;
    margin-bottom: 10px;
}

.pricing-card p {
    font-size: 1rem;
    color: #e0e0e0;
    margin: 5px 0;
}

.pricing-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-top: 10px;
}

.book-now {
    margin-top: 15px;
    background-color: #ff6f61;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;
    width: 100%;
}

.book-now:hover {
    background-color: #e65b54;
}

