/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif; /* Professional and modern font */
}
/* Header Styles (Unchanged as requested) */
header {
    background-color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 80px;
}

.header-container {
    display: flex;
    align-items: center;
    max-width: none;
    margin: 0;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-left: 0;
    margin-left: 0;
}

.logo img {
    width: 100px;
    height: 90px;
    object-fit: caption;
    margin-left: 0;
}

nav {
    margin-left: 2rem;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0.5rem;
    margin: 0;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    padding: 0.75rem 1.25rem;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    color: green;
    background-color: #ecf0f1;
}

/* New Image Section After Header */
.intro-image-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f9fbfd;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.5s ease-in-out;
}

.intro-image-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.intro-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.intro-image:hover {
    transform: scale(1.02);
}

.intro-text {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: #5a6e87;
    font-size: 1.2rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-in-out 0.5s backwards;
}

/* Hero Section with Background Image */
.hero-section {
    height: 500px;
    background-image: url('C:\Users\MANAN\Desktop\Gork 3\download (9).jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.hero-content img {
    display: none; /* Hide the img tag since background-image is used */
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    animation: slideDown 1s ease-out;
}

/* About Us Section with Background Image */
.about-us-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.5s ease-in-out;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://via.placeholder.com/1200x600?text=Professional+Background');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a3c5e;
    font-weight: 700;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #2e7eba;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a6e87;
    max-width: 900px;
    margin: 0 auto 40px;
}

/* Team Section Styles with Member Images */
.team-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    animation: slideIn 1.5s ease-out;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a3c5e;
    text-align: center;
    position: relative;
}

.team-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #d81b60;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-content: center;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #f5f6fa;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #d81b60;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.team-photo:hover {
    transform: scale(1.05);
}

.team-info {
    flex: 1;
}

.team-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.team-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #7f8c8d;
}

/* Company Overview Section (Commented out in HTML, styled for reference) */
.company-overview-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #4a90e2, #6a9de7);
    color: #ffffff;
    animation: fadeIn 1.5s ease-in-out;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: center;
    position: relative;
}

.overview-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #ffffff;
}

.overview-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

/* Contact Section (Commented out in HTML, styled for reference) */
.contact-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    animation: slideIn 1.5s ease-out;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a3c5e;
    text-align: center;
    position: relative;
}

.contact-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #d81b60;
}

.contact-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 20px;
    text-align: center;
}

.contact-content a {
    color: #d81b60;
    text-decoration: none;
    font-weight: 600;
}

.contact-content a:hover {
    text-decoration: underline;
}

/* Services Section (Commented out in HTML, styled for reference) */
.services-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f5f6fa;
    animation: fadeInUp 1.5s ease-in-out;
}

.services-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a3c5e;
    text-align: center;
    position: relative;
}

.services-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #d81b60;
}

.services-content ul {
    list-style: none;
    padding-left: 0;
    text-align: center;
}

.services-content ul li {
    margin-bottom: 20px;
}

.services-content ul li a {
    color: #4a90e2;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 20px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.services-content ul li a:hover {
    background-color: #d81b60;
    color: #ffffff;
    transform: scale(1.05);
}

/* Footer Styles (Improved) */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9));
    z-index: -1;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.footer-column {
    text-align: left;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-column h3 {
    color: #ecf0f1;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    border-bottom: 2px solid #2e7eba;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

.footer-column p {
    color: #bdc3c7;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.footer-column ul li::before {
    content: '•';
    color: #2e7eba;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.footer-column ul li a {
    color: #2e7eba;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column ul li a:hover {
    color: #1a3c5e;
    transform: scale(1.05);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-icon {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.75rem;
    background-color: #34495e;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background-color: #2e7eba;
    transform: rotate(15deg) scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-bottom:hover {
    color: #ecf0f1;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1rem;
    }

    .footer-column {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }

    .footer-column ul li {
        padding-left: 0;
        text-align: center;
    }

    .footer-column ul li::before {
        display: none;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-bottom {
        margin-top: 2rem;
    }
}