/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif; /* Professional and clean font */
    line-height: 1.6;
    color: #333;
    background-color: #f9fbfd; /* Light professional background */
    overflow-x: hidden;
}

/* Container for centering content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styling (unchanged but with animation) */
header {
    background-color: white;
    padding: 1rem 0; /* Increased from 0 to add vertical padding */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 80px; /* Added to ensure a taller header */
}

.header-container {
    display: flex;
    align-items: center;
    max-width: none;
    margin: 0;
    padding: 0 2rem; /* Balanced padding on both sides */
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Increased from 1rem for better spacing */
    padding-left: 0;
    margin-left: 0;
}

.logo img {
    width:100px; /* Increased from 50px */
    height: 90px; /* Increased from 50px */
   
    object-fit: cover;
   
    margin-left: 0;
}		

.logo-text {
    color: #ecf0f1;
    font-size: 2rem; /* Increased from 1.5rem */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav {
    margin-left: 2rem;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0.5rem; /* Increased from 2rem */
    margin: 0;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem; /* Increased from 1.1rem */
    padding: 0.75rem 1.25rem; /* Increased from 0.5rem 1rem */
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    color: green;
    background-color: #ecf0f1;
}

/* Main section styling */
.industries-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e9f0f5 100%);
    position: relative;
    animation: fadeIn 1.5s ease-in-out;
}

.industries-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://via.placeholder.com/1500x800?text=Subtle+Pattern') no-repeat center/cover fixed;
    opacity: 0.05;
    z-index: -1;
}

h1 {
    font-size: 2.8rem;
    color: #1a3c5e;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideDown 1s ease-out;
}

.intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 40px;
    color: #4a6a8a;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeInUp 1s ease-in-out 0.5s backwards;
}

/* Industry list styling */
.industry-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    padding: 20px;
    background-color: #e9ecef;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    animation: slideIn 1.2s ease-out;
}

.industry-list li {
    background-color: #1a3c5e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.industry-list li:hover {
    transform: translateY(-3px) rotate(2deg);
    background-color: #123456;
    box-shadow: 0 5px 15px rgba(26, 60, 94, 0.3);
}

/* Introductory image */
.intro-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 50px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e7f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: zoomIn 1.5s ease-in-out;
}

.intro-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

/* Industry details styling */
.industry-details {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #1a3c5e;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideInLeft 1s ease-out;
}

.industry-item:nth-child(even) {
    animation: slideInRight 1s ease-out;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.industry-item.reverse {
    flex-direction: row-reverse;
}

.industry-image {
    flex: 1;
    max-width: 400px;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 2px solid #e0e7f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 1.2s ease-in-out 0.3s backwards;
}

.industry-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.industry-content {
    flex: 2;
    padding: 0 20px;
}

.industry-content h2 {
    font-size: 2rem;
    color: #1a3c5e;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: bounceIn 1s ease-out;
}

.industry-content p {
    font-size: 1.1rem;
    color: #5a6e87;
    line-height: 1.8;
    animation: fadeInUp 1s ease-in-out 0.5s backwards;
}

/* Footer styling (unchanged but with animation) */
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;
    }
}