/* ==========================================
   GOOGLE FONT
========================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   RESET
========================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#fff;
    color:#333;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    margin:0;
    padding:0;
}

img{
    max-width:100%;
    display:block;
}

section{
    padding:100px 0;
}

.container{
    max-width:1200px;
}

/* ==========================================
   NAVBAR
========================================== */

.custom-navbar{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;

    padding:3px 0;

    background:rgba(6,20,38,.30);
    backdrop-filter:blur(15px);

    transition:.35s;

}

.navbar-scrolled{

    background:#071c33;
    padding:14px 0;
    box-shadow:0 8px 25px rgba(0,0,0,.18);

}

/* Logo */

.navbar-brand{

    display:flex;
    align-items:center;
    gap:12px;

    color:#fff !important;
    font-weight:700;
    font-size:26px;

}

.navbar-brand img{

    width:55px;
    height:55px;
    object-fit:contain;

}

.logo-text{

    display:flex;
    flex-direction:column;
    line-height:1.2;

}

.logo-text strong{

    font-size:23px;
    color:#fff;

}

.logo-text span{

    font-size:12px;
    color:#d4af37;
    letter-spacing:1px;

}

/* Menu */

.navbar-nav{

    display:flex;
    align-items:center;
    gap:8px;

}

.nav-item{

    position:relative;

}

.nav-link{

    color:#fff !important;

    padding:10px 18px !important;

    font-size:15px;
    font-weight:500;

    border-radius:8px;

    transition:.3s;

}

.nav-link:hover{

    color:#d4af37 !important;

}

.nav-link.active{

    color:#d4af37 !important;

}

.public-language-switcher{

    display:flex;
    align-items:center;
    gap:3px;
    margin-left:8px;
    padding:4px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:10px;
    background:rgba(255,255,255,.08);

}

.language-option{

    min-width:36px;
    padding:6px 8px;
    border-radius:7px;
    color:rgba(255,255,255,.75);
    text-align:center;
    text-decoration:none;
    font-size:12px;
    font-weight:700;
    transition:.25s;

}

.language-option:hover,
.language-option.active{

    background:#d4af37;
    color:#071c33;

}

/* ==========================================
   DROPDOWN
========================================== */

.dropdown-menu{

    border:none;
    border-radius:16px;

    overflow:hidden;

    min-width:250px;

    padding:8px;

    margin-top:15px;

    background:#fff;

    box-shadow:0 15px 45px rgba(0,0,0,.12);

}

.dropdown-item{

    display:flex;
    align-items:center;
    gap:10px;

    padding:14px 16px;

    border-radius:10px;

    color:#333;
    font-weight:500;

    transition:.3s;

}

.dropdown-item i{

    width:22px;
    color:#0d6efd;
    transition:.3s;

}

.dropdown-item:hover{

    background:#0d6efd;
    color:#fff;

}

.dropdown-item:hover i{

    color:#fff;

}

.dropdown-toggle::after{

    margin-left:8px;
    vertical-align:middle;

}

/* Hover Desktop */

@media(min-width:992px){

.dropdown:hover>.dropdown-menu{

    display:block;
    animation:dropdown .25s ease;

}

}

@keyframes dropdown{

    from{

        opacity:0;
        transform:translateY(-10px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:991px){

.custom-navbar{

    background:#071c33;

}

.navbar-collapse{

    background:#071c33;
    margin-top:15px;
    padding:20px;
    border-radius:15px;

}

.navbar-nav{

    gap:0;

}

.nav-link{

    padding:12px 5px !important;

}

.dropdown-menu{

    border:none;
    box-shadow:none;
    background:rgba(255,255,255,.06);

}

.dropdown-item{

    color:#fff;

}

.dropdown-item i{

    color:#d4af37;

}

.public-language-switcher{

    width:max-content;
    margin:14px 0 0;

}

}
/* ==========================================
   HERO
========================================== */

.hero{
    position: relative;
    width: 100%;
    height: 100vh;

    background: url('../images/hero.jpg') center center/cover no-repeat;

    overflow: hidden;
}


.hero-overlay{

    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        rgba(4,17,31,.65),
        rgba(4,17,31,.65)
    );
    z-index:2;

}

.hero-content{

    position:relative;
    z-index:3;
    height:100vh;

    display:flex;
    justify-content:center;
    flex-direction:column;

    color:white;

}

.hero-subtitle{

    color:#d4af37;
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:20px;

}

.hero h1{

    font-size:72px;
    font-weight:800;
    margin:20px 0;

}

.hero p{

    max-width:650px;
    font-size:20px;
    color:#eee;

}

.hero-button{

    margin-top:40px;

}

/* ==========================================
   BUTTON
========================================== */

.btn-primary-custom{

    background:#0d6efd;
    color:white;
    border:none;
    padding:15px 35px;
    border-radius:50px;
    transition:.3s;
    margin-right:15px;

}

.btn-primary-custom:hover{

    background:#0b5ed7;
    color:white;

}

.btn-outline-custom{

    border:2px solid white;
    color:white;
    padding:15px 35px;
    border-radius:50px;
    transition:.3s;

}

.btn-outline-custom:hover{

    background:white;
    color:#071c33;

}

/* ==========================================
   SCROLL ICON
========================================== */

.scroll-down{

    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    z-index:5;
    color:white;
    font-size:28px;
    animation:updown 1.5s infinite;

}

@keyframes updown{

    0%{
        transform:translate(-50%,0);
    }

    50%{
        transform:translate(-50%,12px);
    }

    100%{
        transform:translate(-50%,0);
    }

}

/* ==========================================
   SECTION TITLE
========================================== */

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:40px;
    font-weight:700;
    color:#071c33;

}

.section-title p{

    color:#666;

}

/* ==========================================
   FOOTER
========================================== */

footer{

    background:#071c33;
    color:white;
    text-align:center;
    padding:30px 0;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    .custom-navbar{

        background:#071c33;

    }

    .nav-link{

        margin-left:0;
        margin-top:15px;

    }

}

@media(max-width:768px){

    .hero h1{

        font-size:42px;

    }

    .hero p{

        font-size:17px;

    }

    .hero-button .btn{

        display:block;
        width:220px;
        margin-bottom:15px;

    }

}
/* ==========================================
   ABOUT
========================================== */

.about{
    background:#f8fafc;
}

.about-image{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.about-image img{
    width:100%;
    transition:.5s;
}

.about-image:hover img{
    transform:scale(1.05);
}

.about-subtitle{
    color:#d4af37;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.about h2{
    font-size:42px;
    font-weight:700;
    margin:15px 0 25px;
    color:#071c33;
}

.about p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.about-list{
    margin-top:25px;
}

.about-list div{
    margin-bottom:15px;
    font-weight:500;
}

.about-list i{
    color:#0d6efd;
    margin-right:10px;
}

@media(max-width:768px){

.about h2{
    font-size:32px;
}

}
/* ==========================================
   WHY CHOOSE US
========================================== */

.why{

    background:#ffffff;

}

.section-subtitle{

    color:#d4af37;

    font-size:14px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

}

.why-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.why-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#071c33;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

}

.why-card h4{

    font-size:22px;

    font-weight:600;

    margin-bottom:15px;

    color:#071c33;

}

.why-card p{

    color:#666;

    line-height:1.8;

}
/* ==========================================
   SERVICES PREVIEW
========================================== */

.services-preview{
    background:#f8fafc;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.service-card i{
    font-size:48px;
    color:#0d6efd;
    margin-bottom:20px;
}

.service-card h4{
    font-size:22px;
    color:#071c33;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    margin-bottom:20px;
}

.service-card a{
    color:#0d6efd;
    font-weight:600;
}

.service-card a:hover{
    color:#071c33;
}
/* ==========================================
   GALLERY
========================================== */

.gallery-preview{

    background:#ffffff;

}

.gallery-item{

    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.gallery-item img{

    width:100%;
    height:280px;
    object-fit:cover;

    transition:.5s;

}

.gallery-overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(7,28,51,.65);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;

    transition:.4s;

}

.gallery-overlay i{

    color:#fff;

    font-size:40px;

    transform:scale(.5);

    transition:.4s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-item:hover i{

    transform:scale(1);

}
/* ==========================================
   CONTACT
========================================== */

.contact{

    background:#f8fafc;

}

.contact-info{

    display:flex;
    flex-direction:column;
    gap:25px;

}

.contact-box{

    display:flex;
    align-items:flex-start;
    gap:20px;

}

.contact-box i{

    width:60px;
    height:60px;

    background:#071c33;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

}

.contact-box h5{

    color:#071c33;
    font-weight:600;

}

.contact-box p{

    margin:0;
    color:#666;

}

.contact-form{

    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.form-control{

    border-radius:10px;
    padding:14px;

}
/* ==========================================
   CALL TO ACTION
========================================== */

.cta-section{

    position:relative;

    padding:140px 0;

    background:url('../images/cta.jpg') center center/cover no-repeat;

    overflow:hidden;

}

.cta-overlay{

    position:absolute;

    inset:0;

    background:rgba(7,28,51,.78);

}

.cta-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:#fff;

    max-width:850px;

    margin:auto;

}

.cta-content h2{

    font-size:52px;

    font-weight:700;

    margin:20px 0;

    line-height:1.3;

}

.cta-content p{

    color:#ddd;

    font-size:18px;

    max-width:700px;

    margin:auto;

    line-height:1.9;

}

.cta-content .btn{

    margin-top:20px;

}

.cta-content .btn-outline-custom{

    border:2px solid #fff;

}

.cta-content .btn-outline-custom:hover{

    background:#fff;

    color:#071c33;

}

@media(max-width:768px){

.cta-section{

    padding:90px 20px;

}

.cta-content h2{

    font-size:34px;

}

.cta-content p{

    font-size:16px;

}

.cta-content .btn{

    display:block;

    width:220px;

    margin:15px auto;

}

}
/* ==========================================
   FOOTER
========================================== */

.footer{

    background:#071c33;

    color:#ddd;

    padding:80px 0 30px;

}

.footer-logo{

    width:90px;

    margin-bottom:20px;

}

.footer h4{

    color:#fff;

    font-weight:700;

}

.footer h5{

    color:#fff;

    margin-bottom:20px;

    font-weight:600;

}

.footer p{

    line-height:1.8;

}

.footer ul{

    padding:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#bbb;

    transition:.3s;

}

.footer ul li a:hover{

    color:#d4af37;

    padding-left:6px;

}

.footer i{

    color:#d4af37;

    margin-right:8px;

}

.footer-social{

    margin-top:25px;

}

.footer-social a{

    width:42px;

    height:42px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    border:1px solid rgba(255,255,255,.2);

    border-radius:50%;

    color:#fff;

    margin-right:10px;

    transition:.3s;

}

.footer-social a:hover{

    background:#d4af37;

    color:#071c33;

    transform:translateY(-4px);

}

.footer hr{

    border-color:rgba(255,255,255,.1);

    margin:50px 0 20px;

}

.copyright{

    text-align:center;

    color:#999;

    font-size:15px;

}

@media(max-width:768px){

.footer{

    text-align:center;

}

.footer-social{

    justify-content:center;

}

}
/* ===================================================
   PAGE HERO
=================================================== */

.page-hero{
    position:relative;
    height:55vh;
    background:url('../images/hero.jpg') center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.page-overlay{
    position:absolute;
    inset:0;
    background:rgba(5,18,35,.72);
}

.page-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
}

.page-content h1{
    font-size:58px;
    font-weight:700;
    margin-bottom:15px;
}

.page-content p{
    font-size:20px;
    color:#d9d9d9;
    letter-spacing:1px;
}

/* ===================================================
   VISION
=================================================== */

.vision-section{
    padding:100px 0;
    background:#fff;
}

.vision-box{
    background:#fff;
    border-radius:20px;
    padding:60px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.vision-box:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.vision-box i{
    font-size:65px;
    color:#d4af37;
    margin-bottom:25px;
}

.vision-box p{
    font-size:18px;
    line-height:1.9;
    color:#666;
}

/* ===================================================
   MISSION
=================================================== */

.mission-section{
    background:#f8fafc;
    padding:100px 0;
}

.mission-card{
    background:#fff;
    border-radius:18px;
    padding:28px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.mission-card:hover{
    transform:translateY(-6px);
}

.mission-card i{
    width:55px;
    height:55px;
    background:#d4af37;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

.mission-card span{
    font-size:17px;
    font-weight:500;
}

/* ===================================================
   CORE VALUES
=================================================== */

.values-section{
    padding:100px 0;
    background:#fff;
}

.value-card{
    background:#fff;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.value-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.value-card i{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#071c33;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    margin-bottom:25px;
    font-size:35px;
    transition:.3s;
}

.value-card:hover i{
    background:#d4af37;
}

.value-card h4{
    font-weight:700;
    margin-bottom:15px;
    color:#071c33;
}

.value-card p{
    color:#777;
}

/* ===================================================
   RESPONSIVE
=================================================== */

@media(max-width:768px){

.page-content h1{
    font-size:38px;
}

.page-content p{
    font-size:16px;
}

.vision-box{
    padding:35px;
}

.vision-box i{
    font-size:48px;
}

.mission-card{
    padding:22px;
}

.value-card{
    margin-bottom:20px;
}

}

/*=================================================
STRUCTURE PAGE
=================================================*/

.structure-section{
    padding:90px 0;
    background:#f8fafc;
}

.structure-box{

    max-width:900px;
    margin:auto;

    background:#fff;

    border-radius:25px;

    padding:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;
}

.structure-box:hover{

    transform:translateY(-8px);

}

.structure-box img{

    width:100%;

    border-radius:15px;

    cursor:pointer;

    transition:.4s;
}

.structure-box img:hover{

    transform:scale(1.02);

}

.structure-note{

    margin-top:25px;

    text-align:center;

    color:#777;

    font-size:15px;
}
/*==================================================
MARINE SERVICES
==================================================*/

.service-intro{

    padding:90px 0 30px;

    background:#fff;

}

.services-page{

    padding-bottom:100px;

    background:#f8fafc;

}

.service-page-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.service-page-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.service-page-card img{

    width:100%;

    height:230px;

    object-fit:cover;

}

.service-content{

    padding:30px;

}

.service-content i{

    font-size:42px;

    color:#d4af37;

    margin-bottom:18px;

}

.service-content h4{

    font-weight:700;

    margin-bottom:15px;

    color:#0b2341;

}

.service-content p{

    color:#666;

    line-height:1.8;

    margin:0;

}
/*=========================================
GALLERY PAGE
=========================================*/

.gallery-page{

    padding:90px 0;
    background:#f7f9fc;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.5s;

}

.gallery-overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(7,28,51,.65);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.4s;

}

.gallery-overlay i{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#fff;

    color:#0d6efd;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    transition:.3s;

}

.gallery-item:hover img{

    transform:scale(1.12);

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay i:hover{

    background:#d4af37;

    color:#fff;

}
/*=========================================
VIDEO PAGE
=========================================*/

.video-page{

    padding:90px 0;

    background:#f8fafc;

}

.video-wrapper{

    max-width:1000px;

    margin:auto;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.video-wrapper video{

    width:100%;

    display:block;

}
/*=========================================
CONTACT PAGE
=========================================*/

.contact-page{

    padding:90px 0;
    background:#f8fafc;

}

.map-box{

    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.map-box iframe{

    width:100%;
    height:500px;
    border:0;

}

.contact-card{

    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    height:100%;

}

.contact-card h3{

    font-weight:700;
    margin-bottom:30px;
    color:#071c33;

}

.contact-item{

    display:flex;
    gap:18px;
    margin-bottom:25px;

}

.contact-item i{

    width:55px;
    height:55px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    flex-shrink:0;

}

.contact-item h5{

    margin-bottom:5px;
    color:#071c33;

}

.contact-item p{

    margin:0;
    color:#666;

}

.social-contact{

    display:flex;
    gap:15px;
    margin-top:35px;

}

.social-contact a{

    width:45px;
    height:45px;
    border-radius:50%;
    background:#071c33;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;

}

.social-contact a:hover{

    background:#0d6efd;
    transform:translateY(-5px);

}

/* FORM */

.contact-form-section{

    padding:90px 0;

}

.contact-form-section .form-control{

    border-radius:15px;
    padding:15px;
    border:1px solid #ddd;
    box-shadow:none;

}

.contact-form-section .form-control:focus{

    border-color:#0d6efd;
    box-shadow:none;

}

.contact-form-section textarea{

    resize:none;

}
/* ===========================
MARINE SERVICES
=========================== */

.service-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.service-card:hover{

    transform:translateY(-8px);

}

.service-image{

    width:100%;

    height:240px;

    object-fit:cover;

}

.service-content{

    padding:25px;

}

.service-content h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}

.service-content p{

    color:#666;

    line-height:1.8;

    min-height:90px;

}

.service-content a{

    text-decoration:none;

    color:#0d6efd;

    font-weight:600;

}
