* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.nav-container {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(44, 62, 80, 0.9);
    transition: all 0.3s ease;
}

.nav-container.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px; /* Adjust height to fit */
    width: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between logo and name */
    border-radius: 10px;
}

.company-name {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}


.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}
.logo-img {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    width: fit-content;
    height: fit-content;
}
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #e74c3c;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
}

header {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

header p {
    font-size: 1.2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.parallax-header {
    background-image: url('image/img2.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.header-content {
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section-title {
    margin-bottom: 2rem;
    padding-top: 70px; /* Account for fixed navbar */
    margin-top: -70px; /* Offset padding to prevent content shift */
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #2c3e50;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.5s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: white;
    border: 4px solid #2c3e50;
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::after {
    right: -13px;
}

.right::after {
    left: -13px;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.timeline-content h2 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.gallery {
    margin: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.quote-section {
    background-color: #2c3e50;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    white-space: normal;
    overflow: hidden;
    border-right: 2px solid transparent;
    /* font-size: 1.5rem; */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.quote-author {
    margin-top: 1rem;
    font-size: 1.2rem;
    text-align: center;
    font-style: italic;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 10px;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}
/* footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-family: Arial, sans-serif;
} */

footer h3 {
    font-size: 20px;
    margin-bottom: 10px;
    margin-right: 5%;
    margin-left: 10px;
    text-transform: uppercase;
    color: orangered; /* Highlight color */
}

/* Align names to the left */
.names {
    display: flex;
    justify-content: flex-start; /* Aligns content to the left */
    max-width: 600px; /* Adjust as needed */
    margin: 0 auto; /* Centers the container */
    position: relative;
}

.names ul {
    padding: 0;
    margin: 0;
    text-align: left;
    list-style-type: none; /* Remove bullet points */
}

.names li {
    font-size: 16px;
    margin: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
}

footer p {
    font-size: 14px;
    margin-top: 10px;
}

footer p:last-child {
    font-size: 12px;
    opacity: 0.7;
}


.social-links {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: #2c3e50;
    margin: 0 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    background-color: #e74c3c;
    color: white;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #2c3e50;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background-color: rgba(44, 62, 80, 0.95);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links.active {
        transform: translateY(0%);
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 18px;
    }
    
    .left::after, .right::after {
        left: 18px;
    }
    
    .right {
        left: 0;
    }
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    font-size: 24px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #007bff; /* Change color on hover */
}

/* Icon */

.icon {
    text-decoration: none;
    border-bottom: none;
    position: relative;
}

    .icon:before {
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        text-transform: none !important;
        font-family: 'Font Awesome 5 Free';
        font-weight: 400;
    }

    .icon > .label {
        display: none;
    }

    .icon:before {
        line-height: inherit;
    }

    .icon.solid:before {
        font-weight: 900;
    }

    .icon.brands:before {
        font-family: 'Font Awesome 5 Brands';
    }

            /* Lightbox Styles */
            .lightbox {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0,0,0,0.9);
                display: none;
                z-index: 1000;
                align-items: center;
                justify-content: center;
                opacity: 0;
                transition: opacity 0.3s ease;
            }
    
            .lightbox.open {
                display: flex;
                opacity: 1;
            }
    
            .lightbox-content {
                max-width: 90%;
                max-height: 90%;
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
            }
    
            .lightbox-image {
                /* max-width: 100%; */
                /* max-height: 90vh; */
                object-fit: contain;
                border-radius: 8px;
                min-width: 300px;
                max-width: 90%;  /* Ensure image fits within lightbox */
                max-height: 80vh; /* Prevent overly tall images */
                display: block;
                margin: auto;
                /* object-fit: contain; Ensures the full image fits without distortion */
            }
    
            .lightbox-close {
                position: absolute;
                top: -40px;
                right: 0;
                color: white;
                font-size: 30px;
                cursor: pointer;
                background: none;
                border: none;
                outline: none;
            }
    
            .lightbox-nav {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                background-color: rgba(255,255,255,0.2);
                color: white;
                padding: 10px;
                text-decoration: none;
                font-size: 24px;
                border-radius: 50%;
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: background-color 0.3s ease;
            }
    
            .lightbox-prev {
                left: 20px;
            }
    
            .lightbox-next {
                right: 20px;
            }
    
            .lightbox-nav:hover {
                background-color: rgba(255,255,255,0.3);
            }
    
            .lightbox-caption {
                position: absolute;
                bottom: -50px;
                left: 0;
                width: 100%;
                color: white;
                text-align: center;
                padding: 10px;
                background-color: rgba(0,0,0,0.7);
            }
    
            @media (max-width: 768px) {
                .lightbox-prev, .lightbox-next {
                    font-size: 20px;
                    width: 40px;
                    height: 40px;
                }
            }

            button {
                padding: 10px 20px;
                background-color: rgba(44, 62, 80, 0.95);
                color: white;
                border: none;
                border-radius: 10px;
                cursor: pointer;
                font-size: 16px;
                position: absolute;
                margin-left: 30%;
                margin-top: 10px;
            }
            
            button:hover {
                background-color: #e74c3c;
            }
            
            /* Icons */

            /* Social Icons Container */
            .social-icons {
                display: flex;
                justify-content: center;
                gap: 20px;
                margin-top: 20px;
            }

            /* Style for Icons */
            .social-icons a {
                font-size: 30px; /* Adjust size */
                color: #333; /* Default color */
                transition: color 0.3s ease, transform 0.3s ease;
            }

            /* Hover Effects */
            .social-icons a:hover {
                transform: scale(1.2);
            }

            /* Different Colors for Each Icon */
            .social-icons a:nth-child(1) { color: #1DA1F2; }  /* Twitter */
            .social-icons a:nth-child(2) { color: #171515; }  /* GitHub */
            .social-icons a:nth-child(3) { color: #0077B5; }  /* LinkedIn */
            .social-icons a:nth-child(4) { color: #25D366; }  /* WhatsApp */

                .icon > .label {
                    display: none;
                }