/* Project Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Header Styles */
.project-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.project-header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-container .custom-logo-link {
    display: block;
    line-height: 0;
}

.logo-container .custom-logo {
    max-height: 60px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-container .custom-logo:hover {
    opacity: 0.8;
}

/* Fallback for site title when no logo */
.logo-container .site-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    transition: color 0.3s ease;
    position: relative;
}

.main-navigation a:hover {
    color: #ccc;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.main-navigation li {
    position: relative;
}

.main-navigation .has-dropdown {
    position: relative;
}

.main-navigation .dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.main-navigation .has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.main-navigation .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    min-width: 200px;
    padding: 20px 0;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 0;
    z-index: 1001;
}

.main-navigation .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .dropdown-menu li {
    width: 100%;
}

.main-navigation .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.main-navigation .dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.main-navigation .dropdown-menu a::after {
    display: none;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #fff;
    color: #000;
}

/* Main Content */
.project-main {
    margin-top: 100px;
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    position: relative;
    overflow: hidden;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
}

/* Animation Container - Travels Left to Right */
.animation-container {
    width: 100%;
    height: 100px;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.flight-animation {
    height: 80px;
    width: auto;
    object-fit: contain;
    position: absolute;
    left: -200px; /* Start off-screen left */
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.flight-animation.loaded {
    opacity: 1;
}

/* Traveling Animation */
.animation-container.travel .flight-animation {
    animation: travelAcross 3s ease-in-out forwards;
}

@keyframes travelAcross {
    0% {
        left: -200px;
    }
    100% {
        left: calc(100% + 200px); /* Exit off-screen right */
    }
}

/* Fade out animation container */
.animation-container.fade-out {
    opacity: 0;
    transition: opacity 1s ease-out;
}

/* Hero Title */
.hero-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.fade-in-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 2s ease-out;
}

.fade-in-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Filter Navigation */
.filter-navigation {
    padding: 20px 0;
    margin-bottom: 10px;
    position: relative;
    z-index: 100;
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 100;
}

.filter-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.filter-nav a {
    color: #8f8f8f;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    padding: 10px 20px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    pointer-events: all;
    z-index: 10;
}

.filter-nav a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 6px;
    background: white;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    transition: width 0.3s ease;
    pointer-events: none;
}

.filter-nav a:hover,
.filter-nav a.active {
    color: #fff;
}

.filter-nav a:hover:after,
.filter-nav a.active:after {
    width: 20px;
}

/* Footer Styles */
.project-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Footer Logo Styles */
.footer-logo .custom-logo-link {
    display: block;
    line-height: 0;
}

.footer-logo .custom-logo {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1); /* Make logo white if it's dark */
    transition: opacity 0.3s ease;
}

.footer-logo .custom-logo:hover {
    opacity: 0.8;
}

/* Fallback for site title in footer */
.footer-logo .site-title-footer {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
    font-size: 14px;
}

.footer-section a:hover {
    color: #fff;
}

.footer-address {
    margin-bottom: 15px;
}

.footer-contact {
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    border-color: #fff;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 12px;
}
.project-name,
.project-name a{
        font-size: 18px!important;

     text-align: left!important;
    font-weight: bold!important
    
}
thead th{
    font-size: 19px!important;
    font-weight: bold!important
}
/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-navigation ul {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    /* Mobile Dropdown Styles */
    .main-navigation .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: none;
        margin-top: 10px;
        border-radius: 8px;
        min-width: auto;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }
    
    .main-navigation .has-dropdown:hover .dropdown-menu {
        max-height: 200px;
        padding: 10px 0;
    }
    
    .main-navigation .dropdown-menu a {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .social-icons {
        margin-top: 10px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    /* Mobile Animation Container */
    .animation-container {
        height: 60px;
    }
    
    .flight-animation {
        height: 50px;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    /* Mobile Logo Styles */
    .logo-container .custom-logo {
        max-height: 45px;
    }
    
    .footer-logo .custom-logo {
        max-height: 40px;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .project-main {
        margin-top: 120px;
    }
}

@media (max-width: 480px) {
    .main-navigation ul {
        gap: 15px;
    }
    
    .main-navigation a {
        font-size: 14px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    /* Small Mobile Animation */
    .animation-container {
        height: 50px;
    }
    
    .flight-animation {
        height: 40px;
    }
    
    /* Small Mobile Logo Styles */
    .logo-container .custom-logo {
        max-height: 35px;
    }
    
    .footer-logo .custom-logo {
        max-height: 30px;
    }
    
    .filter-nav a {
        padding: 8px 15px;
        font-size: 14px;
    }
}
