body {
    font-family: "Times New Roman", Times, serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
}

nav .logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Gradient Text */
.gradient-text {
    font-size: 2.5em;
    font-weight: bold;
    background: linear-gradient(90deg, indigo, orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin: 20px 0;
     font-family: "Times New Roman", Times, serif;
}

/* About Section and Features */
.about-section, .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.about-content, .feature-content {
    flex: 1;
    margin-right: 20px;
    text-align: justify;
}

.about-image, .feature-image {
    flex: 1;
    text-align: center;
}

.about-image img, .feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Features and Offerings Titles */
.features h2, .offerings h2 {
    text-align: center;
    width: 100%;
}

.feature {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature:nth-child(even) .feature-image {
    order: 2;
}

.offerings {
    text-align: center;
}

.offering {
    display: inline-block;
    width: 45%;
    text-align: center;
    margin-bottom: 20px;
}

.offering img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.offering h3 {
    font-size: 1.5em;
    margin-top: 0;
}

.offering p {
    font-size: 1em;
    color: #555;
}



/* Responsive Styles */
/* Responsive Styles for Mobile View */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .about-section, .features {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center align content */
    }

    .about-content, .feature-content {
        margin: 0 10px 20px 10px; /* Add space around text */
        text-align: justify;
    }

    .about-image, .feature-image {
        order: -1; /* Moves image above text */
        margin-bottom: 15px;
        text-align: center;
    }

    .about-image img, .feature-image img {
        width: 100%; /* Full width for better fit */
        height: auto;
        max-width: 500px; /* Optional: Restrict overly large images */
    }

    .feature {
        flex-direction: column; /* Stack feature content and image vertically */
        align-items: center;
    }

    .feature-image {
        order: -1; /* Ensure image is above content */
    }

    .offering {
        width: 100%; /* Full width for offerings on smaller screens */
        margin-bottom: 20px;
    }
}

/* Team Section */
.team-section {
    background-color: #222;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.team-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Team Member Card */
.team-member {
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    width: 250px; /* Fixed width for uniform card size */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Team Member Image */
.team-member img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s;
}

.team-member:hover img {
    opacity: 0.9;
}

/* Member Info */
.member-info {
    padding: 15px;
    background: linear-gradient(45deg, #444, #222);
}

.name {
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0 5px;
    color: #f9c74f; /* Highlighted name color */
}

.position {
    font-size: 1em;
    color: #ddd;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-member {
        width: 90%; /* Full width on smaller screens */
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .team-member {
        width: 45%; /* Half-width for medium screens */
    }
}
