/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: url(mainback.jpg) no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
}

/* Navigation */
nav {
    background-color: #001f3f;
    text-align: center;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Section Layout */
.section {
    margin: 20px auto;
    padding: 20px;
    text-align: center;
    background-color: rgba(0, 31, 63, 0.85);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    width: 80%;
}

/* Buttons */
button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* Inputs and Dropdowns */
input, select {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f0f0f0;
    color: #001f3f;
}

h1, h2 {
    color: #ffffff;
}
/* Services Section */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.card {
    background-color: rgba(0, 31, 63, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 300px;
    padding: 15px;
    color: #ffffff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.card h2 {
    font-size: 1.5em;
    margin: 10px 0;
}

.card p {
    font-size: 1em;
    margin-bottom: 15px;
}

.card button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.card button:hover {
    background-color: #0056b3;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}
/* Hero Section */
.hero-section {
    height: 60vh; /* Reduce height to 60% of the viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('hero.jpg') no-repeat center center;
    background-size: cover;
    color: #ffffff;
}

.hero-content {
    max-width: 600px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.5em; /* Adjust font size */
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2em; /* Adjust font size */
    margin-bottom: 20px;
    color: #dcdcdc;
}

.hero-content .btn {
    background-color: #007BFF;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em; /* Adjust button size */
}

.hero-content .btn:hover {
    background-color: #0056b3;
}
/* Footer Section */
.footer {
    background-color: #001f3f;
    color: #ffffff;
    padding: 20px 0;
    margin-top: 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.footer-column p,
.footer-column ul {
    margin: 0;
    padding: 0;
    font-size: 1em;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin: 5px 0;
}

.footer-column ul li a {
    color: #007BFF;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #007BFF;
    margin-top: 20px;
    font-size: 0.9em;
}
/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px; /* Set the width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #001f3f; /* Dark blue background for the track */
}

::-webkit-scrollbar-thumb {
    background: #007BFF; /* Lighter blue scrollbar thumb */
    border-radius: 5px; /* Rounded thumb corners */
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3; /* Darker blue on hover for the thumb */
}
/* About Us Section */
.about-section {
    color: #ffffff; /* White text for contrast */
    padding: 50px 20px;
    text-align: center; /* Center all text */
    background: none; /* Remove background */
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center; /* Center the content */
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.about-text h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #007BFF;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-text .btn {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    display: inline-block;
    margin-top: 10px;
}

.about-text .btn:hover {
    background-color: #0056b3;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center; /* Center the image */
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-text .btn {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    display: inline-block;
    margin-top: 10px;
}

.about-text .btn:hover {
    background-color: #0056b3;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* Navbar Style */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #001f3f; /* Dark blue background */
    color: white;
}

/* Left section (Logo) */
.navbar-left .logo img {
    height: 40px; /* Adjust logo size */
}

/* Center section (Search Bar) */
.navbar-center {
    flex: 1; /* Takes up the remaining space */
    text-align: center;
}

.navbar-center .search-bar {
    width: 60%; /* Search bar takes 60% width */
    padding: 8px;
    font-size: 1em;
    border-radius: 5px;
    border: none;
    outline: none;
    background-color: #a8d1fc;
}

/* Right section (Profile Section) */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Profile Section Styling */
.profile-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-photo {
    width: 40px; /* Profile photo size */
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info p {
    margin: 0;
    font-size: 1em;
    color: #dcdcdc;
}

/* Optional Hover Effect for Profile Info */
.profile-info p:hover {
    color: #007BFF;
    cursor: pointer;
}
/* Contact Us Page Styling */
#contact-us {
    padding: 50px 20px;
    background-color: rgba(0, 0, 50, 0.8);
    color: #000000; /* White text for contrast */
    text-align: center;
    font-family: 'Arial', sans-serif;
}

/* Main Container */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form Styling */
.contact-form {
    background-color: #002e6969; /* White background for form */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    transition: transform 0.3s ease-in-out;
}

.contact-form:hover {
    transform: translateY(-5px); /* Hover effect */
}

.contact-form h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #007BFF;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #007BFF;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
    background-color: #006efdbe;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #0056b3; /* Darker blue on focus */
    background-color: #e9f7ff;
    outline: none;
}

.submit-btn {
    background-color: #007BFF;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 25px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Contact Info Section */
.contact-info {
    background-color: rgba(0, 0, 50, 0.8); /* Transparent dark blue background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    color: white; /* White text for contrast */
}

.contact-info h2 {
    font-size: 2.2em;
    color: #ffffff; /* White color for the title */
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.2em;
    color: #ffffff; /* White text for paragraphs */
    line-height: 1.6;
    margin: 10px 0;
}

/* Map Section */
.map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 10px;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        padding: 20px;
    }

    .contact-form, .contact-info {
        padding: 20px;
    }

    .submit-btn {
        width: 100%;
    }

    .map iframe {
        height: 300px;
    }
}
/* Cart Page Styling */
#cart {
    padding: 50px 20px;
    background-color: rgba(0, 0, 50, 0.8); /* Transparent dark blue background */
    color: #ffffff;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

/* Cart Container */
.cart-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Cart Table */
.cart-items {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-items th, .cart-items td {
    padding: 15px;
    border: 1px solid #ddd;
}

.cart-items th {
    background-color: #333;
    color: white;
}

.cart-items td {
    background-color: #f4f4f465;
}

.cart-items td input {
    width: 60px;
    padding: 5px;
    text-align: center;
}

/* Cart Summary */
.cart-summary {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
}

.summary h2 {
    font-size: 2em;
    color: #007BFF;
}

.checkout-btn {
    background-color: #007BFF;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 25px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.checkout-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}





