/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff7f50;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.1);
}

footer a {
    color: #ff7f50;
    text-decoration: none;
}

footer .social-icons {
    margin-top: 10px;
}

footer .social-icons a {
    margin: 0 10px;
}

footer .social-icons img {
    width: 25px;
    height: 25px;
}

/* Intro Section */
.intro {
    text-align: center;
    margin: 30px 0;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 2rem;
    color: #333;
}

/* Page-specific Styles */

/* About Us Page */
.about-table {
    width: 80%;
    margin: 40px auto;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.about-table th, .about-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.about-table th {
    background-color: #333;
    color: white;
}

.about-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.about-table tr:hover {
    background-color: #e0e0e0;
}

.about-table td a {
    color: #ff7f50;
    text-decoration: none;
}

/* Contact Page */
.contact-section {
    text-align: center;
    margin: 40px 0;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-info {
    font-size: 1.1rem;
    color: #555;
}

.contact-info a {
    color: #ff7f50;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form button {
    background-color: #333;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #ff7f50;
}

/* Schedule a Meeting Page */
.schedule-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.schedule-form .form-group {
    margin-bottom: 20px;
}

.schedule-form label {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.schedule-form input,
.schedule-form textarea {
    width: 90%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.schedule-form button {
    background-color: #333;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.schedule-form button:hover {
    background-color: #ff7f50;
}

/* Services Page */
.service {
    margin: 40px auto;
    text-align: center;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.service-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-img:hover {
    transform: scale(1.05);
}

.service p {
    font-size: 1.1rem;
    margin-top: 10px;
    color: #555;
}

.service .button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.service .button:hover {
    background-color: #ff7f50;
}

/* Projects Page */
.project-card {
    display: inline-block;
    width: 48%;
    margin: 20px 1%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.project-card h3 {
    margin-top: 15px;
    font-size: 1.5rem;
}

.project-card p {
    font-size: 1rem;
    color: #555;
}

.project-card .button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.project-card .button:hover {
    background-color: #ff7f50;
}
.head{
    text-align: center;
    text-decoration: underline;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
}
head:hover{
    color: #000;
    font-size: 30px;
    transition: 1s ease-in-out;
}
.paragraph{
    text-align: center;
}