
            
.filter-container {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 20px;
}

.filter-container input[type="text"] {
width: 70%;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
}

.filter-container select {
width: 30%;
padding: 10px;
font-size: 16px;
border: 1px solid #ccc;
}


.video-custom {
width: 100%; /* Full width within the column */
max-width: 500px; /* Limit the maximum width */
height: auto; /* Maintain aspect ratio */
}
.company-header {
text-align: center;
background-color: white; /* Optional: light background */
padding: 10px 0;
}

.company-header h1 {
color: #1e3a8a; /* Dark sky-blue */
font-size: 24px;
margin: 0;
font-weight: bold;
}
/* Popup Styles */
.popup {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
border-radius: 5px;
z-index: 9999;
}

.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 9998;
}

/* Button Styles */
.btn {
display: inline-block;
padding: 10px 20px;
background: #007bff;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
/* Add your CSS styles here */
.avatar {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
}
.footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px 0;
display: flex;
justify-content: space-between;
align-items: center;
}
.footer-left {
flex: 1;
text-align: left;
}
.footer-right {
flex: 1;
text-align: right;
}
.footer-center {
flex: 1;
}
.footer a {
color: #fff;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
overflow: auto;
}
.modal-content {
background-color: #fefefe;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
/* Style for the Back to Top button */
#backToTopBtn {
position: fixed;
bottom: 20px;
right: 20px;
font-size: 24px;
background-color: #333;
color: #fff;
padding: 10px;
border-radius: 50%;
cursor: pointer;
display: block; /* Ensure display block */
z-index: 10000; /* Increase z-index */
}

#backToTopBtn:hover {
background-color: #333;
}
/* Active link style */
.nav-item.active {
font-weight: bold;
color: #007bff; /* Customize the color as needed */
border-bottom: 2px solid #007bff; /* Optional underline for active link */
}
#serviceModal {
z-index: 1050; /* adjust this value if needed */
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}



.container {
max-width: 1200px;
margin: 0 auto;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-bottom: 30px;
margin-right: 320px; /* Space for floating cart */
}

.service-card {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-card button {
width: 100%;
padding: 10px;
background: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}

.service-card button:hover {
background: #0056b3;
}

/* Floating Cart Styles */
.cart {
display: none;
position: fixed;
top: 20px;
right: 20px;
width: 300px;
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
z-index: 100;
cursor: move;
max-height: 80vh;
overflow-y: auto;
}

.cart-header {
padding: 10px;
cursor: move;
background: #f8f9fa;
margin: -20px -20px 15px -20px;
border-radius: 8px 8px 0 0;
display: flex;
justify-content: space-between;
align-items: center;
}

.cart-items {
margin-bottom: 20px;
}

.cart-item {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
padding: 10px;
background: #f8f9fa;
border-radius: 4px;
}

.form-header {
padding: 10px;
cursor: move;
background: #f8f9fa;
margin: -20px -20px 15px -20px;
border-radius: 8px 8px 0 0;
display: flex;
justify-content: space-between;
align-items: center;
}

.close-btn {
background: none;
border: none;
font-size: 1.5em;
cursor: pointer;
color: #666;
}

.overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: 999;
}

.form-group {
margin-bottom: 15px;
}

.form-group label {
display: block;
margin-bottom: 5px;
}

.form-group input {
width: 100%;
padding: 8px;
border: 1px solid #ddd;
border-radius: 4px;
}

.submit-btn {
padding: 10px 20px;
background: #28a745;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
width: 100%;
}

.submit-btn:hover {
background: #218838;
}

.remove-btn {
padding: 5px 10px;
background: #dc3545;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 0.8em;
}

@media (max-width: 768px) {
.services-grid {
    margin-right: 0;
}

.cart {
    width: 90%;
    right: 5%;
}

.checkout-form {
    width: 90%;
}
}
.portfolio {
text-align: center;
}

.service-card {
display: inline-block;
width: 200px;
margin: 10px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
text-align: left;
}

.categories {
margin-bottom: 20px;
}
.portfolio {
text-align: center;
}

.categories {
margin-bottom: 20px;
}

.categories button {
margin: 5px;
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #007bff;
color: white;
cursor: pointer;
transition: background-color 0.3s;
}

.categories button:hover {
background-color: #0056b3;
}

.page-header {
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/back.jpg');
padding: 100px 0;
color: skyblue;
text-align: center;
margin-bottom: 50px;
}

.page-header a {
color: white;
text-decoration: none;
margin: 0 10px;
}

#searchInput {
width: 100%;
max-width: 500px;
padding: 15px;
margin: 20px auto;
display: block;
border: none;
border-radius: 25px;
box-shadow: 0 2px 15px rgba(0,0,0,0.1);
font-size: 16px;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
padding: 20px;
}

.service-card {
background: white;
border-radius: 15px;
padding: 25px;
text-align: center;
transition: transform 0.3s ease;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
transform: translateY(-10px);
}

.service-card h3 {
color: #333;
margin-bottom: 15px;
}

.service-card p {
color: #666;
margin-bottom: 20px;
}

.service-card button {
background: #007bff;
color: white;
border: none;
padding: 10px 25px;
border-radius: 25px;
cursor: pointer;
transition: background 0.3s ease;
}

.service-card button:hover {
background: #0056b3;
}

.cart {
position: fixed;
top: 20px;
right: 20px;
width: 300px;
background: white;
border-radius: 15px;
box-shadow: 0 5px 25px rgba(0,0,0,0.2);
display: none;
z-index: 1000;
}

.cart-header {
padding: 15px;
background: #007bff;
color: white;
border-radius: 15px 15px 0 0;
cursor: move;
display: flex;
justify-content: space-between;
}

.cart-items {
padding: 15px;
max-height: 300px;
overflow-y: auto;
}

.cart-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
border-bottom: 1px solid #eee;
}

.remove-btn {
background: #dc3545;
color: white;
border: none;
padding: 5px 10px;
border-radius: 15px;
cursor: pointer;
}


.form-header {
padding: 15px;
background: #007bff;
color: white;
border-radius: 15px 15px 0 0;
cursor: move;
}

.form-group {
padding: 15px;
}

.form-group input {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}

.submit-btn {
width: 100%;
padding: 15px;
background: #28a745;
color: white;
border: none;
border-radius: 0 0 15px 15px;
cursor: pointer;
}

.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
display: none;
z-index: 999;
}

@media (max-width: 768px) {
.services-grid {
    grid-template-columns: 1fr;
}

.cart {
    width: 90%;
    right: 5%;
}
}
.checkout-form {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 400px;
max-width: 90%;
max-height: 90vh;
overflow-y: auto;
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
z-index: 1000;
}

.form-header {
position: sticky;
top: 0;
background: #007bff;
padding: 15px;
margin: -20px -20px 15px -20px;
border-radius: 8px 8px 0 0;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 1001;
}

.form-content {
padding: 15px 0;
}

.form-footer {
position: sticky;
bottom: 0;
background: white;
padding: 15px 0;
margin: 15px -20px -20px -20px;
border-radius: 0 0 8px 8px;
}

.form-group {
margin-bottom: 15px;
}

.form-group label {
display: block;
margin-bottom: 5px;
font-weight: 500;
}

.form-group input {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
transition: border-color 0.3s ease;
}

.form-group input:focus {
border-color: #007bff;
outline: none;
}

.submit-btn {
width: 100%;
padding: 12px;
background: #28a745;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-weight: 500;
transition: background-color 0.3s ease;
}

.submit-btn:hover {
background: #218838;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.checkout-form {
width: 95%;
max-height: 85vh;
}

.form-header {
padding: 12px;
}

.form-group input {
padding: 8px;
}
}

/* Animation for form appearance */
@keyframes slideIn {
from {
transform: translate(-50%, -60%);
opacity: 0;
}
to {
transform: translate(-50%, -50%);
opacity: 1;
}
}

.checkout-form.active {
animation: slideIn 0.3s ease forwards;
}
.page-header {
background: linear-gradient(rgba(0, 0, 51, 0.9), rgba(0, 0, 102, 0.9)), url('img/back.jpg');
/* Alternative solid dark blue background if you don't want gradient */
/* background-color: #000066; */
padding: 60px 0;
margin-bottom: 50px;
position: relative;
}

.page-header h2 {
color: #ffffff;
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 20px;
text-align: center;
text-transform: uppercase;
}

.page-header a {
color: #ffffff;
text-decoration: none;
font-size: 1.1rem;
margin: 0 10px;
transition: color 0.3s ease;
}

.page-header a:hover {
color: #007bff;
}

.page-header .col-12 {
text-align: center;
}

/* Breadcrumb styling */
.page-header .col-12:last-child {
margin-top: 10px;
}

.page-header a:not(:last-child):after {
content: "";
margin-left: 10px;
color: #ffffff;
opacity: 0.7;
}

@media (max-width: 768px) {
.page-header {
padding: 40px 0;
}

.page-header h2 {
font-size: 2rem;
}
}
.about {
padding: 60px 0;
}

.story {
padding: 40px 0;
background-color: #f9f9f9; /* Light background for contrast */
}

.section-title {
font-size: 2rem;
margin-bottom: 20px;
}

.section-header h2 {
font-size: 1.8rem;
margin-bottom: 15px;
}

.section-header p {
font-size: 1rem;
margin-bottom: 10px;
}
.team {
padding: 60px 0;
}
.team-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.team-item {
cursor: pointer;
text-align: center;
margin: 10px;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
width: 150px; /* Set a fixed width */
transition: background-color 0.3s;
}
.team-item:hover {
background-color: #f0f0f0;
}
.team-img img {
border-radius: 50%;
width: 100%;
max-width: 100px; /* Smaller image size */
}
.team-details {
display: none; /* Initially hide details */
margin-top: 10px;
text-align: left;
}
.portfolio-container {
display: grid;
grid-template-columns: repeat(4, 2fr);
gap: 20px;
}

.portfolio-item {
margin: 20px;
transition: transform 0.3s;
}

.portfolio-item img {
width: 100%;
height: 150px;
object-fit: cover;
}

.portfolio-item:hover {
transform: scale(1.05);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#portfolio-container .portfolio-item:nth-child(n+10) {
display: none;
}
