
/* General Reset */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Oswald', sans-serif;
}
/* Navbar Container */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7fcff; /* Light gray background for contrast */
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

/* Logo */
.logo img {
    width: 50px;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #222222; /* Dark gray text for readability */
    font-size: 18px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #0056b3; /* Deep blue-gray hover effect */
}

/* Hamburger Menu (Initially Hidden on Large Screens) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #333333; /* Dark gray bars */
    margin: 5px 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #f7fcff;
        width: 100%;
        text-align: center;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }
 

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 15px;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }
}


/* Profile Section */
body {
    background-color: white;
    color: black;
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding-top: 80px; /* To prevent content from hiding behind navbar */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Profile Row */
.profile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
}

.profile-image img {
    width: 400px;
    height: auto;
    border-radius: 10px;
}

.profile-info {
    width: 55%;
}

.profile-info h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: black;
}

/* Details Section */
.details h2 {
    color: black;
    border-bottom: 2px solid #ffc107;
    display: inline-block;
    margin-top: 30px;
}

.details ul {
    list-style: none;
    padding: 0;
}

.details li {
    font-size: 18px;
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-row {
        flex-direction: column;
        text-align: center;
    }

    .profile-image img {
        width: 80%;
    }

    .profile-info {
        width: 100%;
        margin-top: 20px;
    }
}

footer {
    background: #eff6fa;
    color: #222222; /* Dark text for contrast */
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer-left {
    flex: 1;
    min-width: 250px;
}

.company-name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #222222; /* Dark text */
}

.copyright {
    font-size: 14px;
    color: #555555; /* Medium gray for readability */
}

.footer-right {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222222; /* Dark heading */
}

.social-link,
.footer-link {
    color: #222222; /* Dark links */
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.social-link:hover,
.footer-link:hover {
    color: #0062ff; /* Accent color on hover */
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }
}

body {
    background-color: white;
    color: black;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Profile Container */
.profile-container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 20px;
}

/* Profile Content Layout */
.profile-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Profile Image */
.profile-image img {
    width: 400px;
    height: auto;
    border-radius: 10px;
}

/* Profile Details */
.profile-details {
    max-width: 600px;
}

.profile-details h1 {
    font-size: 28px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.profile-details h2 {
    font-size: 22px;
    margin-top: 30px; /* Increased margin between headings */
    color: #6d6250;
    position: relative;
    padding-bottom: 10px;
}

/* 
.profile-details h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 280px;
    height: 2px;
    background-color: #ffc107;
 */

.profile-details p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.profile-details ul {
    list-style-type: none;
    padding: 0;
}

.profile-details ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .profile-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-image img {
        width: 80%;
    }

    .profile-details {
        max-width: 100%;
        padding: 20px;
    }

    .profile-details p,
    .profile-details ul li {
        font-size: 14px;
    }
}

/* Profile 3 (Jagdish Chander Raina) Page Styles */
.profile-container-jc {
    display: flex;
    justify-content: center; /* Center the profile container */
    align-items: flex-start;
    padding: 100px 20px 50px;
    background-color: white;
    color: black;
    flex-wrap: wrap;
}

.profile-left-jc {
    flex: 0 0 35%; /* Adjust width */
    text-align: center;
    padding-bottom: 20px;
}

.profile-left-jc img {
    width: 80%;
    border-radius: 10px;
    max-width: 400px;
    height: auto;
}

.profile-right-jc {
    flex: 0 0 55%; /* Adjust width */
    padding-left: 30px;
    max-width: 600px;
}

.profile-right-jc h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.profile-right-jc h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.profile-right-jc .underline-jc {
    width: 50px;
    height: 4px;
    background-color: #6d6250;
    margin-bottom: 20px;
}

.profile-right-jc p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Stack the profile image above the text */
    .profile-container-jc {
        flex-direction: column;
        align-items: center;
    }

    .profile-left-jc {
        flex: 0 0 100%;
        text-align: center;
        padding-bottom: 20px;
    }

    .profile-right-jc {
        flex: 0 0 100%;
        padding-left: 0;
        text-align: center;
    }

    .profile-right-jc h1 {
        font-size: 28px;
    }

    .profile-right-jc h2 {
        font-size: 20px;
    }

    .profile-right-jc .underline-jc {
        margin: 20px auto;
    }

    .profile-right-jc p {
        font-size: 14px;
    }
}
