/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation */
.navbar {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    box-shadow: none;
}

.navbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: none;
}

.navbar.scrolled .nav-link {
    color: #333;
}

.navbar.scrolled .bar {
    background: #333;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    background: transparent;
    border: none;
    outline: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    cursor: pointer;
}

.logo-text {
    color: #1a365d;
    font-weight: 700;
    font-size: 1.8rem;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #1a365d;
}

/* Remove underline from nav links */
.nav-link::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 93, 0.6);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
    text-shadow: 0 4px 24px rgba(26,54,93,0.5), 0 1px 2px rgba(0,0,0,0.25);
    letter-spacing: 1px;
    z-index: 2;
    width: 100%;
    pointer-events: none;
    animation: fadeInUp 1s;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Page Hero Section (for About, Services, Contact pages) */
.page-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(30, 58, 138, 0.7); */
    z-index: -1;
}

.page-hero .hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.page-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.page-hero .hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #1a365d;
    color: white;
}

.btn-primary:hover {
    background: #16294a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a365d;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #1a365d;
    border: 2px solid #1a365d;
}

.btn-outline:hover {
    background: #1a365d;
    color: white;
}

/* Page Header (keeping for backward compatibility) */
.page-header {
    background: linear-gradient(135deg, #1a365d 0%, #16294a 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: #f8fafc;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #64748b;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #1a365d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #1a365d;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Capabilities Section */
.capabilities-section {
    padding: 0 0 80px 0;
    background: #f8fafc;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.capability-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-5px);
}

.capability-icon {
    width: 50px;
    height: 50px;
    background: #1a365d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.capability-icon i {
    color: white;
    font-size: 1.2rem;
}

.capability-item h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.capability-item p {
    color: #64748b;
    font-size: 0.9rem;
}

/* About Page Styles */
.about-overview {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin: 2rem 0 1rem;
}

.about-text p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.commitment-section {
    padding: 80px 0;
    background: #f8fafc;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.commitment-item {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.commitment-icon {
    width: 70px;
    height: 70px;
    background: #1a365d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.commitment-icon i {
    color: white;
    font-size: 1.8rem;
}

.commitment-item h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.commitment-item p {
    color: #64748b;
}

.strengths-section {
    padding: 80px 0;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.strength-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-5px);
}

.strength-icon {
    width: 50px;
    height: 50px;
    background: #1a365d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.strength-icon i {
    color: white;
    font-size: 1.2rem;
}

.strength-item h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.strength-item p {
    color: #64748b;
    font-size: 0.9rem;
}

.values-section {
    padding: 80px 0;
    background: #f8fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-item h4 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value-item p {
    color: #64748b;
}

/* Services Page Styles */
.services-overview {
    padding: 60px 0;
    background: #f8fafc;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.services-intro p {
    font-size: 1.1rem;
    color: #64748b;
}

.service-section {
    padding: 80px 0;
}

.service-section:nth-child(even) {
    background: #f8fafc;
}

.service-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: #1a365d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large i {
    color: white;
    font-size: 2.5rem;
}

.service-intro h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.service-intro p {
    font-size: 1.1rem;
    color: #64748b;
}

.service-categories h3 {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 2rem;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: #1a365d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.category-icon i {
    color: white;
    font-size: 1.2rem;
}

.category-item h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.category-item p {
    color: #64748b;
    font-size: 0.9rem;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.benefits-section {
    padding: 80px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #1a365d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    color: white;
    font-size: 1.2rem;
}

.benefit-item h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #64748b;
    font-size: 0.9rem;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a365d 0%, #16294a 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #1a365d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1rem;
}

.contact-text h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #64748b;
    margin-bottom: 0.25rem;
}

.whatsapp-support {
    background: #25d366;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.whatsapp-support h4 {
    margin-bottom: 0.5rem;
}

.whatsapp-support p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #25d366;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
}

.contact-form-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-form {
    padding: 2.5rem;
}

.contact-form h3 {
    color: #1a365d;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a365d;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a365d;
}

.map-section {
    padding: 80px 0;
    background: #f8fafc;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #64748b;
}

/* Footer */
.footer {
    background: #1a365d;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

/* Message Animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 54, 93, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        color: white;
        padding: 1rem 0;
        font-size: 1.1rem;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: #1a365d;
    }
    
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-hero {
        height: 50vh;
    }
    
    .page-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 35px;
        max-width: 120px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .capability-item,
    .commitment-item,
    .strength-item,
    .value-item,
    .category-item,
    .benefit-item,
    .faq-item {
        padding: 1.5rem;
    }
}

.nav-quote-btn {
    margin-left: 0.5rem;
    background: #1a365d;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.8rem 2.2rem;
    font-size: 1.1rem;
    box-shadow: none;
    border: none;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    line-height: 1.1;
}

.nav-quote-btn:hover {
    background: #16294a;
    color: #fff;
}

@media (max-width: 900px) {
    .nav-quote-btn {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
        margin-left: 0.5rem;
    }
}

@media (max-width: 768px) {
    .nav-quote-btn {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 1.7rem;
        padding: 0 10px;
    }
}

.core-services-split {
    display: flex;
    width: 100%;
    min-height: 400px;
    height: 50vh;
    max-height: 600px;
    margin: 0 auto 3rem auto;
    box-shadow: 0 8px 32px rgba(26,54,93,0.08);
    overflow: hidden;
}
.core-service {
    flex: 1 1 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-service:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(26,54,93,0.15);
}

.core-service:active {
    transform: scale(0.98);
}

.core-service-air {
    background: url('../images/air-freight.jpg') center center/cover no-repeat;
}
.core-service-ocean {
    background: url('../images/ocean-freight.jpg') center center/cover no-repeat;
}
.core-service-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* background: rgba(30,58,138,0.35); */
    z-index: 1;
}
.core-service-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.core-service-content i {
    margin-bottom: 1.2rem;
    font-size: 3.5rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
}
.core-service-title {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
@media (max-width: 900px) {
    .core-services-split {
        flex-direction: column;
        height: auto;
        min-height: 300px;
        max-height: none;
    }
    .core-service {
        min-height: 200px;
        height: 40vw;
    }
}
@media (max-width: 600px) {
    .core-service-title {
        font-size: 1.2rem;
    }
    .core-service-content i {
        font-size: 2.2rem;
    }
}

/* Service Highlight Animation */
.service-highlight {
    animation: serviceHighlight 3s ease-in-out;
}

@keyframes serviceHighlight {
    0% {
        background-color: rgba(26, 54, 93, 0.1);
        transform: translateY(0);
    }
    50% {
        background-color: rgba(26, 54, 93, 0.2);
        transform: translateY(-5px);
    }
    100% {
        background-color: transparent;
        transform: translateY(0);
    }
}

/* Ensure service sections have proper padding for smooth scrolling */
.service-section {
    scroll-margin-top: 100px;
}

/* Sea Freight Services Redesign */
.sea-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 0 auto 2.5rem auto;
    max-width: 1100px;
}
.sea-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(26,54,93,0.08);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 180px;
}
.sea-card:hover {
    box-shadow: 0 8px 32px rgba(26,54,93,0.13);
    transform: translateY(-4px) scale(1.03);
}
.sea-card-icon {
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 1.1rem;
}
.sea-card-title {
    font-weight: 700;
    color: #1a365d;
    font-size: 1.13rem;
    margin-bottom: 0.5rem;
}
.sea-card-desc {
    color: #64748b;
    font-size: 1rem;
}

.sea-why-box {
    display: flex;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(26,54,93,0.08);
    margin: 2.5rem auto 0 auto;
    max-width: 1100px;
    padding: 2.2rem 2rem;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.sea-why-left {
    flex: 1 1 320px;
    min-width: 260px;
}
.sea-why-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1.2rem;
}
.sea-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sea-why-list li {
    color: #334155;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.sea-why-list i {
    color: #1a365d;
    font-size: 1rem;
}
.sea-why-right {
    flex: 1 1 320px;
    min-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sea-why-right img {
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(26,54,93,0.10);
}
@media (max-width: 900px) {
    .sea-why-box {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    .sea-why-right img {
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .sea-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .sea-card {
        padding: 1.2rem 1rem;
    }
    .sea-why-box {
        padding: 1rem 0.5rem;
    }
}

.footer-logo-img {
    display: block;
    max-width: 110px;
    height: auto;
    margin-bottom: 1rem;
    cursor: pointer;
}
@media (max-width: 600px) {
    .footer-logo-img {
        max-width: 70px;
    }
} 