/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.main-header {
    background-color: #0a0a0a;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-divine {
    color: #00FFFF;
}

.brand-traders {
    color: #FF00FF;
}

.brand-tagline {
    font-size: 0.8rem;
    color: #A0A0A0;
    font-weight: 500;
    letter-spacing: 1px;
}

.header-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #A0A0A0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #FFFFFF;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00FFFF, #FF00FF);
    border-radius: 1px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #00FFFF;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.mobile-menu-open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.mobile-menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.mobile-menu-open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Footer Styles */
.footer {
    background-color: #0a0a0a;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(138, 43, 226, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-upper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 300px;
}

.brand-name {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(90deg, #00FFFF, #FF00FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.brand-description {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    font-size: 16px;
    color: #00FFFF;
    text-shadow: 0 0 10px #00FFFF;
    width: 20px;
    text-align: center;
}

.contact-text {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
}

.footer-heading {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 25px;
    line-height: 1.3;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-link:hover {
    color: #00FFFF;
    text-shadow: 0 0 10px #00FFFF;
}

.footer-lower {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(138, 43, 226, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #FFFFFF;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.heart {
    color: #ff0000;
    font-size: 16px;
    text-shadow: 0 0 10px #ff0000;
}

.hercules-link {
    color: #00FFFF;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 0 10px #00FFFF;
    transition: all 0.3s ease;
}

.hercules-link:hover {
    color: #00FFFF;
    text-shadow: 0 0 20px #00FFFF;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid;
}

.social-icon.linkedin {
    border-color: #00FFFF;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.social-icon.linkedin:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

.social-icon.twitter {
    border-color: #FF00FF;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.social-icon.twitter:hover {
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.5);
}

.social-icon.facebook {
    border-color: #8A2BE2;
    box-shadow: 0 0 15px rgba(128, 0, 255, 0.3);
}

.social-icon.facebook:hover {
    background: rgba(128, 0, 255, 0.1);
    box-shadow: 0 0 25px rgba(128, 0, 255, 0.5);
}

.social-text {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.header {
    text-align: center;
    padding: 80px 0 60px;
    background: #0a0a0a
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    color: #A0A0A0;
    font-size: 14px;
    font-weight: 500;
}

.location-icon {
    font-size: 16px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    font-size: 4.5rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
    line-height: 1.1;
    margin-bottom: 30px;
}

.main-subtitle {
    font-size: 1.2rem;
    color: #A0A0A0;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text {
    text-align: left;
}

.story-label {
    color: #A0A0A0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
    border: 1px solid #00ffff;
    width: max-content;
    padding: 5px 10px;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.story-paragraph {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-image {
    position: relative;
}

.port-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #A0A0A0;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    border: 3px solid #00ffff;
    box-shadow: 0 0 15px #00ffff;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.value-description {
    font-size: 1rem;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    border: 3px solid #00ffff;
    box-shadow: 0 0 15px #00ffff;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #8000ff);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.service-description {
    font-size: 0.95rem;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #8A2BE2;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 80px;
}

.timeline-dot {
    position: absolute;
    left: 21px;
    top: 10px;
    width: 18px;
    height: 18px;
    background-color: #8A2BE2;
    border-radius: 50%;
    border: 4px solid #0a0a0a;
    box-shadow: 0 0 0 2px #8A2BE2;
    border: 3px solid #00ffff;
    box-shadow: 0 0 15px #00ffff;
}

.timeline-content {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.timeline-date {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #8000ff);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #00ffff;
    margin-bottom: 10px;
}

.timeline-description {
    font-size: 1rem;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.1);
}

.team-image {
    margin-bottom: 25px;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8A2BE2;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

.team-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.team-position {
    color: #A0A0A0;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-description {
    font-size: 0.95rem;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cert-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.1);
}

.cert-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(138, 43, 226, 0.1);
    border-radius: 12px;
    border: 3px solid #00ffff;
    box-shadow: 0 0 15px #00ffff;
}

.cert-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.cert-description {
    font-size: 0.9rem;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    /* background-color: #8A2BE2; */
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 150px;
    text-align: center;
}

.cta-btn-primary {
    background-color: #0a0a0a;
    color: #FFFFFF;
    border: 2px solid #0a0a0a;
}

.cta-btn-primary:hover {
    background-color: #1A1A2E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
    background-color: #FFFFFF;
    color: #8A2BE2;
    border: 2px solid #FFFFFF;
}

.cta-btn-secondary:hover {
    background-color: #F0F0F0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .story-text {
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid rgba(0, 255, 255, 0.1);
    }
    
    .header-nav.mobile-nav-open {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 10px 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(0, 255, 255, 0.1);
        color: #00FFFF;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .main-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-dot {
        left: 11px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 60px 0 40px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .story-title {
        font-size: 1.8rem;
    }
    
    .story-paragraph {
        font-size: 1rem;
    }
    
    .port-image {
        height: 250px;
    }
    
    .value-card,
    .service-card,
    .team-card,
    .cert-card {
        padding: 25px 20px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #8A2BE2;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9932CC;
}

.cargo-ship-animation {
    position: fixed;
    bottom: 30%;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 9999;
    display: flex;
    justify-content: flex-start;
}

.cargo-ship-animation .cargo-ship-track {
    width: fit-content;
    transform: translateX(-150vw);
    animation: cargoShipTravel 55s linear infinite;
    will-change: transform;
}

.cargo-ship-animation svg {
    display: block;
    transform-origin: center center;
    animation: cargoShipFlip 55s linear infinite;
    will-change: transform;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
}

.fade-in-up.is-visible {
    animation: fadeInUp 0.9s ease forwards;
}

@keyframes cargoShipTravel {
    0% {
        transform: translateX(-150vw);
    }

    50% {
        transform: translateX(150vw);
    }

    100% {
        transform: translateX(-150vw);
    }
}

@keyframes cargoShipFlip {
    0%,
    49.999% {
        transform: scaleX(1);
    }

    50%,
    100% {
        transform: scaleX(-1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
