
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f7;
    color: #1d1d1f;
    line-height: 1.6;
}

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

.container::after {
    content: "";
    display: table;
    clear: both;
}

header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

header a {
    color: #1d1d1f;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

header ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

header li {
    display: inline-block;
    padding: 0 15px;
}

header #branding {
    float: left;
    padding-top: 5px;
}

header #logo {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

header #branding h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

header nav {
    float: right;
    margin-top: 10px;
}

header .highlight, header .current a {
    color: #007aff;
    font-weight: 600;
}

header a:hover {
    color: #007aff;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #f4f4f4;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px 50px;
    border-radius: 10px;
}

.carousel-text h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.carousel-text p {
    font-size: 1.3em;
}

.carousel-button {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 50%;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
    border: none;
    width: 50px;
    height: 50px;
    line-height: 18px;
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

.carousel-button:hover {
    background-color: rgba(0,0,0,0.6);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-content a {
    color: #333;
    padding: 12px 25px;
    text-decoration: none;
    display: block;
    text-align: left;
    text-transform: none;
    font-size: 15px;
    font-weight: 400;
}

.dropdown-content a:hover {
    background-color: #f5f5f7;
    color: #007aff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropbtn {
    padding: 20px 15px;
    background-color: inherit;
    color: #1d1d1f;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    line-height: initial;
}

.dropdown:hover .dropbtn {
    color: #007aff;
}

section {
    padding: 60px 0;
}

.content-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 50px;
    margin: 30px auto;
    max-width: 1200px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

#main-content h2 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 50px;
    color: #1d1d1f;
    font-weight: 600;
}

#main-content h3 {
    font-size: 1.8em;
    color: #1d1d1f;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.contact-details {
    max-width: 500px;
    margin: 40px auto 0;
    text-align: center;
}

.contact-details p {
    font-size: 1.1em;
    line-height: 1.7;
}

.contact-details strong {
    color: #1d1d1f;
}

.content-card p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 1em;
    text-align: justify;
}

.content-card p:first-of-type {
    font-size: 1.25em;
    font-weight: 500;
    color: #333;
    margin-bottom: 1.5em;
}

.company-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.company-images img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-images img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}

.content-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 50px;
    margin: 30px auto;
    max-width: 1200px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 0.8s ease-out forwards;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f1f3f5;
    font-weight: 600;
}

.company-images {
    padding: 20px 0;
}

.company-images img {
    display: block;
    width: 80%;
    max-width: 800px;
    height: auto;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.team-members, .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.team-member, .step {
    background-color: #f5f5f7;
    border: 1px solid rgba(0, 0, 0, 0.0);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover, .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.team-member h3, .step h3 {
    margin-top: 0;
    color: #1d1d1f;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 600;
}

.team-member p, .step p {
    color: #555;
    font-size: 0.95em;
}

.team-member-img, .process-step-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
}

.partner-logos img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.image-gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.image-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

#main-content ul {
    list-style-position: inside;
    padding-left: 20px;
    margin-bottom: 20px;
}

#main-content li {
    margin-bottom: 10px;
    font-size: 1.1em;
}



th.category-header {
    background-color: #e9ecef;
    color: #343a40;
    text-align: left;
    font-weight: bold;
    padding: 12px 15px;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox-modal {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.company-images img, .image-gallery img, .partner-logos img, .process-step-img {
    cursor: pointer;
}

footer {
    padding: 40px 0;
    color: #888;
    background-color: #f5f5f7;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 60px;
}
