*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}


body#home-page{

    background:#fff;
    color:#333;

}


section{

    padding:60px 40px;

}


/* NAVBAR */

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    background:#0b2c54;
    color:white;

}


.logo h2{

    font-size:24px;

}


.navbar nav{

    display:flex;
    gap:25px;

}


.navbar a{

    color:white;
    text-decoration:none;
    font-weight:bold;

}


.navbar a:hover{

    opacity:.8;

}





/* HERO */

.hero{
    position:relative;
    width:100%;
    overflow:hidden;
    background:#fff;
}

.hero-cover-img{
    display:block;
    width:100%;
    height:auto;
    max-width:100%;
    position:relative;
    z-index:1;
    transform-origin:center center;
    animation:heroWave 7s ease-in-out infinite;
}

.hero-overlay{
    position:absolute;
    inset:0;
    min-height:0;
    padding:0;
    display:block;
    background:transparent;
    z-index:3;
    pointer-events:none;
}

.hero-text{
    max-width:600px;
    color:white;
}

.hero-text h1{
    font-size:45px;
    margin-bottom:20px;
}

.hero-text p{
    font-size:17px;
    line-height:1.6;
}

.track-btn{
    display:inline-block;
    margin-top:25px;
    padding:14px 30px;
    background:white;
    color:#0b2c54;
    text-decoration:none;
    border-radius:6px;
    font-weight:bold;
}

.hero-front{
    position:absolute;
    right:7%;
    top:56%;
    transform:translateY(-50%);
    width:clamp(130px,22vw,300px);
    height:auto;
    max-width:28%;
    object-fit:contain;
    border-radius:15px;
    z-index:4;
    box-shadow:0 4px 14px rgba(0,0,0,.22);
    animation:frontWave 5s ease-in-out infinite;
}

@keyframes heroWave{
    0%,100%{transform:translateY(0) scale(1);}
    50%{transform:translateY(2px) scale(1.008);}
}

@keyframes frontWave{
    0%,100%{transform:translateY(-50%) rotate(0deg);}
    50%{transform:translateY(calc(-50% + 3px)) rotate(.5deg);}
}

/* COMPANY */

.company-info h2,
.history h2,
#gallery h2,
#videos h2,
#contact h2{

    color:#0b2c54;
    font-size:26px;
    margin-bottom:20px;

}


.company-info p,
.history p,
#contact p{

    font-size:15px;
    line-height:1.8;

}





/* GALLERY */

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}



.gallery-card{

    background:#f5f5f5;

    padding:15px;

    border-radius:10px;

}



.gallery-card img{

    width:100%;

    height:220px;

    object-fit:cover;

    border-radius:8px;

}



.gallery-card h3{

    margin-top:15px;

    color:#0b2c54;

}





/* VIDEO */

.video-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}



.video-grid video{

    width:100%;

    border-radius:10px;

}





/* FOOTER */


footer{

    background:#0b2c54;

    color:white;

    text-align:center;

    padding:25px;

    font-size:14px;

}



.footer-contact {
    text-align: center;
    margin-top: 20px;
}

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

.footer-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-social-links a {
    font-size: 24px;
    text-decoration: none;
}

/* MOBILE */


@media(max-width:800px){


.navbar{

    flex-direction:column;
    gap:20px;

}



.navbar nav{

    flex-wrap:wrap;
    justify-content:center;

}



.hero-overlay{

    flex-direction:column;
    text-align:center;
    gap:30px;

}



.hero-text h1{

    font-size:32px;

}



.gallery-grid,
.video-grid{

    grid-template-columns:1fr;

}




}
/* RESPONSIVE SAFETY OVERRIDES */
*,*::before,*::after{box-sizing:border-box;}
img,video{max-width:100%;height:auto;}
body#home-page{overflow-x:hidden;}
@media (max-width:600px){
  .navbar{padding:14px 16px;gap:12px;}
  .logo h2{font-size:20px;line-height:1.2;text-align:center;}
  .navbar nav{width:100%;gap:8px;}
  .navbar nav a{padding:8px 10px;font-size:14px;}
  .hero{min-height:0;padding:0;}
  .hero-overlay{inset:0;}
  .hero-front{right:6%;top:58%;width:24%;max-width:24%;border-radius:10px;}
  .hero-text h1{font-size:28px;line-height:1.15;}
  .hero-text p{font-size:15px;line-height:1.6;}
  .gallery-grid,.video-grid{gap:14px;}
}


/* Small administrator access icon */
.admin-access-icon{
    position:fixed;
    right:14px;
    bottom:14px;
    width:26px;
    height:26px;
    display:flex;
    align-items:center;justify-content:center;
    border-radius:50%;
    background:rgba(11,44,84,.9);
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    line-height:1;
    z-index:1000;
    box-shadow:0 2px 8px rgba(0,0,0,.2);
}.admin-access-icon:hover{
    opacity:.85;
}


/* ==========================================
   HISTORY + ABOUT US LAYOUT
   ========================================== */

.history-about-layout{

    display:grid;

    grid-template-columns:1fr 1fr;

    width:100%;

}


.history-about-layout .history,
.history-about-layout .company-info{

    width:100%;

}


/* ==========================================
   CONTACT + WATER WAVE LAYOUT
   ========================================== */

.contact-wave-layout{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:40px;

    width:100%;

}


.contact-wave-layout #contact{

    width:100%;

}


/* ==========================================
   WATER WAVE
   ========================================== */

.water-wave-container{

    position:relative;

    width:100%;

    height:260px;

    overflow:hidden;

    border-radius:20px;

    background:linear-gradient(
        to bottom,
        #3d91c9,
        #0b2c54
    );

    box-shadow:0 8px 25px rgba(0,0,0,.18);

}


/* Main moving water */

.water-surface{

    position:absolute;

    left:-10%;

    bottom:-35px;

    width:120%;

    height:150px;

    background:rgba(255,255,255,.18);

    border-radius:50% 50% 0 0;

    animation:waterRise 5s ease-in-out infinite;

}


/* Wave layers */

.water-wave{

    position:absolute;

    left:-25%;

    width:150%;

    height:90px;

    border-radius:50%;

}


.water-wave-one{

    bottom:70px;

    background:rgba(255,255,255,.20);

    animation:waveMoveOne 5s ease-in-out infinite;

}


.water-wave-two{

    bottom:35px;

    background:rgba(255,255,255,.13);

    animation:waveMoveTwo 7s ease-in-out infinite;

}


.water-wave-three{

    bottom:5px;

    background:rgba(0,0,0,.12);

    animation:waveMoveThree 6s ease-in-out infinite;

}


/* ==========================================
   WATER MOTION
   ========================================== */

@keyframes waveMoveOne{

    0%,
    100%{

        transform:translateX(-4%) rotate(1deg);

    }

    50%{

        transform:translateX(4%) rotate(-1deg);

    }

}


@keyframes waveMoveTwo{

    0%,
    100%{

        transform:translateX(4%) rotate(-1deg);

    }

    50%{

        transform:translateX(-4%) rotate(1deg);

    }

}


@keyframes waveMoveThree{

    0%,
    100%{

        transform:translateX(-3%);

    }

    50%{

        transform:translateX(3%);

    }

}


@keyframes waterRise{

    0%,
    100%{

        transform:translateY(8px) scaleX(1);

    }

    50%{

        transform:translateY(-8px) scaleX(1.04);

    }

}


/* ==========================================
   MOBILE WATER / TWO-COLUMN LAYOUT
   ========================================== */

@media(max-width:800px){

    .history-about-layout{

        grid-template-columns:1fr;

    }


    .contact-wave-layout{

        grid-template-columns:1fr;

        gap:20px;

    }


    .water-wave-container{

        height:220px;

    }

}

/* Welcome ship + anchor plugin */
.welcome-plugin{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-bottom:10px;
    font-size:42px;
    line-height:1;
    opacity:1;
    transition:opacity 1s ease, transform 1s ease;
}
.welcome-ship{
    display:inline-block;
    animation:welcomeShip 1.2s ease-in-out infinite;
}
.welcome-anchor{
    display:inline-block;
    animation:welcomeAnchor 1.2s ease-in-out infinite;
}
.welcome-plugin.welcome-hide{
    opacity:0;
    transform:translateY(-10px);
}
@keyframes welcomeShip{
    0%,100%{transform:translateY(0) rotate(-2deg);}
    50%{transform:translateY(-6px) rotate(2deg);}
}
@keyframes welcomeAnchor{
    0%,100%{transform:translateY(0) rotate(-8deg);}
    50%{transform:translateY(4px) rotate(8deg);}
}

/* MOBILE HERO FIX - keeps hero content inside the hero and above Gallery */
@media (max-width: 600px){
    .hero{
        min-height: 560px;
        padding: 0;
        background-size: cover;
        background-position: center top;
        overflow: hidden;
    }

    .hero-overlay{
        min-height: 560px;
        height: 560px;
        width: 100%;
        padding: 24px 16px 28px;
        display:flex;
        flex-direction:column;
        justify-content:flex-end;
        align-items:center;
        gap:18px;
    }

    .hero-text{
        width:100%;
        max-width:600px;
        margin:0;
        text-align:center;
    }

    .hero-text p{
        margin:0;
        font-size:14px;
        line-height:1.5;
    }

    .track-btn{
        margin-top:14px;
        padding:12px 24px;
    }

    .hero-front{
        width:150px;
        height:150px;
        flex:0 0 auto;
    }

    #gallery{
        clear:both;
        position:relative;
        margin-top:0;
    }
}


/* HERO INFO BELOW HERO - keeps description and Track Package out of the hero image */
.hero-info{width:100%;padding:30px 40px 40px;text-align:center;background:#fff;color:#333;}
.hero-info p{max-width:900px;margin:0 auto;font-size:17px;line-height:1.6;}
.hero-info .track-btn{margin-top:20px;}
@media(max-width:800px){
 .hero{min-height:400px;padding:0;}
 .hero-overlay{min-height:400px;height:400px;padding:20px 16px;display:flex;justify-content:center;align-items:center;}
 .hero-front{width:180px;height:180px;}
 .hero-info{padding:24px 20px 30px;}
 .hero-info p{font-size:15px;line-height:1.55;}
 .hero-info .track-btn{margin-top:16px;}
}
@media(max-width:480px){
 .hero{min-height:340px;}
 .hero-overlay{min-height:340px;height:340px;}
 .hero-front{width:145px;height:145px;}
 .hero-info{padding:22px 16px 28px;}
}

/* FINAL HERO FRONT IMAGE POSITION - smaller and placed over the ship area */
.hero-front{
    width:140px;
    height:140px;
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    z-index:3;
}

@media (max-width:600px){
    .hero-front{
        width:105px;
        height:105px;
        left:8px;
        top:34%;
        transform:translateY(-50%);
    }
}

/* Responsive hero cover sizing */
.hero-cover, .hero-cover img, .hero img.cover, .hero-image img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 768px) {
    .hero {
        min-height: 62vh;
        height: auto;
    }
    .hero-cover, .hero-cover img, .hero img.cover, .hero-image img {
        max-height: 62vh;
        object-fit: cover;
    }
}
@media (min-width: 769px) {
    .hero {
        min-height: 72vh;
    }
}


/* FINAL HERO FIT: show the full cover on all screen sizes */
.hero{
    width:100%;
    aspect-ratio:2172 / 724;
    min-height:0 !important;
    height:auto !important;
    background-size:100% 100%;
    background-repeat:no-repeat;
    background-position:center;
    overflow:hidden;
}
.hero-overlay{
    width:100%;
    height:100%;
    min-height:0 !important;
    padding:0;
    position:relative;
    display:block;
}
.hero-front{
    width:160px !important;
    height:160px !important;
    position:absolute !important;
    left:auto !important;
    right:6% !important;
    top:50% !important;
    transform:translateY(-50%) !important;
    object-fit:cover;
    z-index:5;
}
@media (max-width:800px){
    .hero{
        aspect-ratio:2172 / 724;
        min-height:0 !important;
        height:auto !important;
        background-size:100% 100%;
    }
    .hero-front{
        width:125px !important;
        height:125px !important;
        right:5% !important;
        top:50% !important;
    }
}
@media (max-width:480px){
    .hero-front{
        width:115px !important;
        height:115px !important;
        right:4% !important;
    }
}


/* FINAL DEVICE FIT — full hero cover visible, front image on the right near the ship */
.hero{
    width:100%;
    min-height:0 !important;
    height:auto !important;
    aspect-ratio:auto !important;
    background:none !important;
    position:relative;
    overflow:hidden;
}
.hero-cover-img{
    display:block;
    width:100%;
    height:auto;
    max-width:100%;
    object-fit:contain;
}
.hero-overlay{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    min-height:0 !important;
    padding:0 !important;
    display:block !important;
}
.hero-front{
    width:clamp(100px, 18vw, 160px) !important;
    height:auto !important;
    aspect-ratio:3 / 2;
    object-fit:cover;
    position:absolute !important;
    right:5% !important;
    left:auto !important;
    top:52% !important;
    transform:translateY(-50%) !important;
    z-index:5;
}
@media (max-width:600px){
    .hero-front{
        width:clamp(100px, 23vw, 145px) !important;
        right:4% !important;
        top:52% !important;
    }
}
@media (max-width:380px){
    .hero-front{
        width:100px !important;
        right:4% !important;
    }
}


/* FINAL HERO FIX — preserve the original cover photo, remove dark/black overlay,
   place the front image over the ship on the right, and add subtle sea-like motion. */
.hero{
    position:relative !important;
    width:100% !important;
    height:auto !important;
    min-height:0 !important;
    aspect-ratio:auto !important;
    background:transparent !important;
    overflow:hidden !important;
    padding:0 !important;
}

.hero-cover-img{
    display:block !important;
    width:100% !important;
    height:auto !important;
    max-width:100% !important;
    object-fit:contain !important;
    background:transparent !important;
    animation:heroCoverWave 7s ease-in-out infinite !important;
    transform-origin:center center !important;
}

.hero-overlay{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    min-height:0 !important;
    padding:0 !important;
    margin:0 !important;
    display:block !important;
    background:transparent !important;
    z-index:2 !important;
}

.hero-front{
    position:absolute !important;
    left:auto !important;
    top:50% !important;
    right:6% !important;
    width:clamp(105px, 14vw, 165px) !important;
    height:auto !important;
    aspect-ratio:1 / 1 !important;
    object-fit:contain !important;
    margin:0 !important;
    border-radius:15px !important;
    z-index:5 !important;
    transform:translate3d(0,-50%,0) rotate(0deg) !important;
    animation:heroFrontWave 4.5s ease-in-out infinite !important;
    box-shadow:none !important;
}

@keyframes heroCoverWave{
    0%,100%{
        transform:translate3d(0,0,0) scale(1);
    }
    25%{
        transform:translate3d(0.35%,0,0) scale(1.003);
    }
    50%{
        transform:translate3d(0,0.25%,0) scale(1.005);
    }
    75%{
        transform:translate3d(-0.35%,0,0) scale(1.003);
    }
}

@keyframes heroFrontWave{
    0%,100%{
        transform:translate3d(0,-50%,0) rotate(0deg);
    }
    25%{
        transform:translate3d(0.8%,-52%,0) rotate(1deg);
    }
    50%{
        transform:translate3d(-0.5%,-48%,0) rotate(-1deg);
    }
    75%{
        transform:translate3d(0.5%,-51%,0) rotate(0.7deg);
    }
}

@media (max-width:800px){
    .hero-front{
        right:6% !important;
        width:clamp(95px, 17vw, 135px) !important;
    }
}

@media (max-width:480px){
    .hero-front{
        right:5% !important;
        width:105px !important;
    }
}


/* HAMBURGER MENU - added without changing existing page connections */
.menu-toggle{
    display:none;
    border:0;
    background:transparent;
    padding:8px;
    cursor:pointer;
    flex-direction:column;
    gap:5px;
}
.menu-toggle span{
    display:block;
    width:25px;
    height:3px;
    border-radius:3px;
    background:#fff;
}
.main-menu{
    align-items:center;
}
.menu-admin-icon{
    position:static !important;
    width:28px !important;
    height:28px !important;
    display:flex !important;
    flex:0 0 auto;
    background:rgba(255,255,255,.14) !important;
    color:#fff !important;
    font-size:15px !important;
    box-shadow:none !important;
}
@media(max-width:800px){
    .navbar{
        position:relative;
        flex-direction:row;
    }
    .menu-toggle{
        display:flex;
    }
    .main-menu{
        display:none !important;
        position:absolute;
        top:100%;
        right:16px;
        min-width:190px;
        padding:10px;
        background:#0b2c54;
        border-radius:0 0 8px 8px;
        box-shadow:0 6px 15px rgba(0,0,0,.2);
        z-index:1100;
        flex-direction:column;
        gap:4px !important;
    }
    .main-menu.menu-open{
        display:flex !important;
    }
    .main-menu a{
        width:100%;
        padding:10px 12px;
        text-align:left;
    }
    .main-menu .menu-admin-icon{
        align-self:flex-start;
        justify-content:center;
    }
}
@media(min-width:801px){
    .main-menu{
        display:flex;
        gap:25px;
    }
}
