 
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: white;
    color: black;
    overflow: hidden;
}

/* Main Layout */
.main-container {
    display: flex;
    height: 100%;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background: #111;
    padding: 20px;
    transition: width 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
}

.sidebar.collapsed {
    width: 60px;
}

.sidebar.collapsed .sidebar-item span {
    display: none;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sidebar-header h3 {
    color: #fff;
    margin: 0;
}

.sidebar-header button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sidebar-header button:hover {
    transform: rotate(90deg);
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.sidebar-item:hover {
    background: #333;
    transform: translateX(10px);
}

.sidebar-item i {
    margin-right: 10px;
}

/* About Us Content */
.container {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.about-section {
    margin-bottom: 30px;
}

.about-section h2 {
    color: black;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.about-section h2:hover {
    color: black;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    background: #f9f9f9;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 20px auto;
    border: 3px solid #007bff;
}

.card-body {
    text-align: center;
    padding: 20px;
}

.card-body h3 {
    color: black;
    margin-bottom: 10px;
}

.card-body p {
    color: #555;
    margin: 0;
}

.features, .packages {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-card, .package-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover, .package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.feature-card h4, .package-card h4 {
    color: black;
    margin-bottom: 10px;
}

.feature-card p, .package-card p {
    color: #555;
}

.back-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.back-btn:hover {
    background: #0056b3;
    transform: translateY(-3px);
}
/* Team Section */
.team-container {
display: flex;
flex-direction: column;
gap: 30px;
}

.team-member {
display: flex;
align-items: center;
background: #f9f9f9;
border-radius: 15px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
transform: translateY(-10px);
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.team-content {
flex: 1;
padding: 20px;
text-align: left;
}

.team-content h3 {
color: #007bff;
margin-bottom: 10px;
}

.team-content .role {
color: #555;
font-weight: bold;
margin-bottom: 10px;
}

.team-content p {
color: #555;
margin-bottom: 15px;
}

.social-links {
display: flex;
gap: 10px;
}

.social-icon {
color: #007bff;
font-size: 18px;
transition: color 0.3s ease;
}

.social-icon:hover {
color: #0056b3;
}

.team-image img {
width: 200px;
height: 200px;
object-fit: cover;
border-left: 3px solid #007bff;
}

/* Proposed By Section */
.proposed-container {
display: flex;
align-items: center;
background: #f9f9f9;
border-radius: 15px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proposed-container:hover {
transform: translateY(-10px);
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.proposed-content {
flex: 1;
padding: 20px;
text-align: left;
}

.proposed-content h3 {
color: #007bff;
margin-bottom: 10px;
}

.proposed-content p {
color: #555;
margin-bottom: 15px;
}

.visit-website-btn {
display: inline-block;
padding: 10px 20px;
background: #007bff;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background 0.3s ease, transform 0.3s ease;
}

.visit-website-btn:hover {
background: #0056b3;
transform: translateY(-3px);
}

.proposed-image img {
width: 200px;
height: 200px;
object-fit: cover;
border-left: 3px solid #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
.team-member, .proposed-container {
flex-direction: column;
}

.team-image img, .proposed-image img {
width: 100%;
height: auto;
border-left: none;
border-top: 3px solid #007bff;
}
}
 