/*=========================================
HEADER
=========================================*/

.main-header{
    background:#fff;
    border-bottom:3px solid #d4af37;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.navbar{padding:12px 0;}

.navbar>.container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.navbar-brand{
    display:flex;
    align-items:center;
    gap:12px;
    max-width:340px;
    flex-shrink:0;
}

.navbar-brand img{
    width:auto;
    height:60px;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.15;
}

.title{
    color:#003b73;
    font-size:18px;
    font-weight:700;
}

.sub-title{
    color:#d4af37;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.navbar-collapse{
    justify-content:flex-end;
}

.navbar-nav{
    align-items:center;
    gap:8px;
}

.nav-link{
    color:#222!important;
    font-size:17px;
    font-weight:600;
    white-space:nowrap;
}

.verify-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:48px;
    padding:0 24px;
    background:#d4af37;
    color:#000;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.verify-btn:hover{
    background:#bf9723;
    color:#fff;
}

/*=========================================
FOOTER
=========================================*/

.footer{
    background:#002b5b;
    color:#fff;
    padding:70px 0 25px;
}

.footer-logo{
    width:70px;
    height:70px;
    border-radius:50%;
    margin-bottom:15px;
}

.footer h4,
.footer h5{
    margin-bottom:20px;
    color:#fff;
    font-weight:700;
}

.footer p{
    color:#d9e4ef;
    font-size:15px;
    line-height:1.8;
}

.footer-links,
.footer-official-links{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a,
.footer-official-links a,
.footer-bottom-links a{
    color:#d9e4ef;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover,
.footer-official-links a:hover,
.footer-bottom-links a:hover{
    color:#d4af37;
}

.footer-links a:hover{
    padding-left:6px;
}

.footer i{
    width:22px;
    color:#d4af37;
}

.footer hr{
    margin:35px 0;
    border-color:rgba(255,255,255,.15);
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    margin:0;
}

.footer-bottom-links a{
    margin-left:18px;
}

.footer-social{
    margin-top:25px;
}

.footer-social a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:42px;
    height:42px;
    margin-right:8px;
    background:#003f78;
    color:#fff;
    border-radius:50%;
    transition:.3s;
}

.footer-social a:hover{
    background:#d4af37;
    color:#000;
    transform:translateY(-4px);
}

.footer-official-links{
    margin-top:20px;
}

.footer-official-links a{
    display:block;
    margin-bottom:8px;
}

/*=========================================
HOME HERO
=========================================*/

.hero{
    display:flex;
    align-items:center;
    min-height:700px;
    color:#fff;
    background:
    linear-gradient(rgba(0,43,91,.72),rgba(0,43,91,.72)),
    url('../images/hero/hero-bg.jpg') center/cover no-repeat;
}

.hero-badge{
    display:inline-block;
    margin-bottom:20px;
    padding:8px 20px;
    background:#d4af37;
    color:#000;
    border-radius:30px;
    font-weight:600;
}

.hero h1{
    margin-bottom:25px;
    font-size:58px;
    font-weight:700;
    line-height:1.2;
}

.hero p{
    margin-bottom:35px;
    font-size:19px;
    line-height:1.9;
    opacity:.95;
}

.hero-buttons a{
    margin:0 15px 10px 0;
}

.hero-image{
    max-width:100%;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    50%{transform:translateY(-12px);}
}

/*=========================================
COMMON SECTION
=========================================*/

.section{
    padding:90px 0;
}

.section h2{
    margin-bottom:25px;
    color:#002b5b;
    font-size:42px;
    font-weight:700;
}

.section p{
    color:#555;
    font-size:17px;
    line-height:1.9;
}

.section img{
    border-radius:15px;
}

/*=========================================
VERIFY
=========================================*/

.verify-home{
    padding:90px 0;
    background:#f4f8fc;
}

.verify-box{
    padding:50px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.verify-box h2{
    margin-bottom:15px;
    color:#002b5b;
    font-size:34px;
    font-weight:700;
    text-align:center;
}

.verify-box p{
    margin-bottom:30px;
    text-align:center;
}

.verify-box input,
.verify-box button{
    height:58px;
    border-radius:10px;
}

.verify-box input{
    font-size:17px;
}

.verify-box button{
    font-weight:600;
}

/*=========================================
RESPONSIVE
=========================================*/

@media (max-width:991px){

.hero{
    padding:120px 0;
    text-align:center;
}

.hero h1{
    font-size:42px;
}

.hero-image{
    margin-top:40px;
}

.section h2{
    font-size:34px;
}

.verify-box{
    padding:30px;
}

.footer{
    text-align:center;
}

.footer-bottom{
    flex-direction:column;
}

.footer-bottom-links a{
    margin:0 8px;
}

}

/*=========================================
ABOUT BOXES
=========================================*/

.about-box{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.about-box:hover{
    transform:translateY(-8px);
}

.about-box i{
    margin-bottom:20px;
    font-size:55px;
    color:#d4af37;
}

.about-box h4{
    margin-bottom:15px;
    font-size:24px;
    font-weight:700;
    color:#002b5b;
}

.about-box p{
    font-size:16px;
    color:#666;
}

/*=========================================
BUTTONS
=========================================*/

.btn-warning{
    padding:12px 28px;
    background:#d4af37;
    border:none;
    border-radius:8px;
    color:#000;
    font-weight:600;
    transition:.3s;
}

.btn-warning:hover{
    background:#be9727;
    color:#fff;
}

.btn-outline-light{
    padding:12px 28px;
    border-radius:8px;
}

/*=========================================
RESPONSIVE
=========================================*/

@media (max-width:991px){

    .hero{
        padding:120px 0;
        text-align:center;
    }

    .hero h1{
        font-size:42px;
    }

    .hero-image{
        margin-top:40px;
    }

    .section h2{
        font-size:34px;
    }

    .verify-box{
        padding:30px;
    }

}   /* ====== IMPORTANT: MEDIA QUERY CLOSED ====== */

/*=========================================
HOME PAGE - PART 2
=========================================*/

/* SERVICES */

.service-box{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.service-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.service-box i{
    margin-bottom:25px;
    font-size:60px;
    color:#d4af37;
}

.service-box h4{
    margin-bottom:18px;
    font-size:26px;
    font-weight:700;
    color:#002b5b;
}

.service-box p{
    margin-bottom:25px;
    font-size:16px;
    line-height:1.8;
    color:#666;
}

.service-box .btn{
    padding:10px 25px;
    border-radius:8px;
    font-weight:600;
}

@media(max-width:991px){

.service-box,
.feature-box,
.notice-box{
    margin-bottom:25px;
}

.counter-box{
    margin-bottom:30px;
}

.counter-box h2{
    font-size:42px;
}

/*=========================================
HOME PAGE - PART 3
=========================================*/

/*=========================================
FEATURE BOX
=========================================*/

.feature-box{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box i{
    margin-bottom:20px;
    font-size:55px;
    color:#d4af37;
}

.feature-box h3{
    margin-bottom:20px;
    font-size:28px;
    color:#002b5b;
}

/*=========================================
BUTTON
=========================================*/

.btn-warning{
    padding:12px 30px;
    background:#d4af37;
    border:none;
    border-radius:8px;
    color:#000;
    font-weight:600;
    transition:.3s;
}

.btn-warning:hover{
    background:#c89d20;
    color:#fff;
}

/*=========================================
OBJECTIVES / SERVICES
=========================================*/

.objective-box,
.service-box,
.resource-box{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.objective-box:hover,
.service-box:hover,
.resource-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.objective-box i,
.service-box i,
.resource-box i{
    margin-bottom:20px;
    font-size:58px;
    color:#d4af37;
}

.objective-box h4,
.service-box h4,
.resource-box h4{
    margin-bottom:15px;
    font-size:24px;
    font-weight:700;
    color:#002b5b;
}

.objective-box p,
.service-box p,
.resource-box p{
    color:#666;
    line-height:1.8;
}

/*=========================================
LIST GROUP
=========================================*/

.list-group{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.list-group-item{
    padding:18px 25px;
    border:1px solid #eee;
    font-size:17px;
    font-weight:500;
    transition:.3s;
}

.list-group-item:hover{
    background:#002b5b;
    color:#fff;
    padding-left:35px;
}

/*=========================================
RESOURCE
=========================================*/

.resource-box{
    border-top:5px solid #d4af37;
}

.resource-box a{
    display:inline-block;
    margin-top:15px;
}

/*=========================================
ACCORDION
=========================================*/

.accordion-item{
    overflow:hidden;
    margin-bottom:15px;
    border:none;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.accordion-button{
    padding:22px;
    background:#fff;
    color:#002b5b;
    font-size:18px;
    font-weight:600;
}

.accordion-button:not(.collapsed){
    background:#002b5b;
    color:#fff;
}

.accordion-body{
    padding:25px;
    font-size:16px;
    line-height:1.9;
}

/*=========================================
CTA
=========================================*/

.cta-section{
    padding:100px 0;
    text-align:center;
    color:#fff;
    background:
    linear-gradient(rgba(0,43,91,.88),rgba(0,43,91,.88)),
    url('../images/banner/cta.jpg') center/cover;
}

.cta-section h2{
    margin-bottom:20px;
    font-size:48px;
    font-weight:700;
}

.cta-section p{
    max-width:850px;
    margin:0 auto 35px;
    font-size:18px;
    line-height:1.9;
}

.cta-section .btn{
    margin:8px;
    padding:14px 35px;
    border-radius:10px;
    font-weight:600;
}

/*=========================================
TEXT CENTER
=========================================*/

.text-center h2{
    color:#002b5b;
    font-weight:700;
}

.text-center p{
    color:#666;
    font-size:17px;
}

/*=========================================
ANIMATION
=========================================*/

.about-box,
.feature-box,
.objective-box,
.service-box,
.resource-box{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(35px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/*=========================================
RESPONSIVE
=========================================*/

@media (max-width:992px){

.page-banner{
    padding:100px 0;
}

.page-banner h1{
    font-size:38px;
}

.section{
    padding:70px 0;
}

.section h2{
    font-size:34px;
}

.feature-box,
.about-box,
.service-box,
.resource-box{
    margin-bottom:25px;
}

.counter-box{
    margin-bottom:30px;
}

}

@media (max-width:576px){

.page-banner h1{
    font-size:30px;
}

.section h2{
    font-size:28px;
}

.counter-box h2{
    font-size:40px;
}

.cta-section{
    padding:70px 20px;
}

.cta-section h2{
    font-size:32px;
}

}
/*=========================================
SHIP & YACHT REGISTRATION
=========================================*/

/* PROCESS */

.process-box{
    position:relative;
    overflow:hidden;
    background:#fff;
    padding:30px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.process-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:#d4af37;
}

.process-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 35px rgba(0,0,0,.15);
}

.process-number{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#002b5b;
    color:#fff;
    font-size:28px;
    font-weight:700;
}

.process-box h5{
    margin-bottom:15px;
    color:#002b5b;
    font-size:22px;
    font-weight:700;
}

.process-box p{
    color:#666;
    line-height:1.8;
}

/*=========================================
SHIP IMAGE
=========================================*/

.ship-image,
.yacht-image{
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    transition:.35s;
}

.ship-image:hover,
.yacht-image:hover{
    transform:scale(1.03);
}

/*=========================================
DOCUMENT BOX
=========================================*/

.document-box{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.document-box ul{
    padding-left:20px;
}

.document-box li{
    padding:10px 0;
    border-bottom:1px solid #eee;
}

.document-box li:last-child{
    border:none;
}

/*=========================================
INFO BOX
=========================================*/

.registration-info,
.compliance-box{
    background:#f8f9fa;
    padding:30px;
    border-left:5px solid #d4af37;
    border-radius:12px;
}

.registration-info h4{
    margin-bottom:15px;
    color:#002b5b;
    font-weight:700;
}

/*=========================================
BENEFITS
=========================================*/

.benefit-box{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.benefit-box:hover{
    transform:translateY(-8px);
}

.benefit-box i{
    margin-bottom:20px;
    font-size:55px;
    color:#d4af37;
}

.benefit-box h4{
    margin-bottom:15px;
    color:#002b5b;
    font-weight:700;
}

/*=========================================
FAQ
=========================================*/

#shipFaq .accordion-item,
#yachtFaq .accordion-item{
    margin-bottom:15px;
    border:none;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

#shipFaq .accordion-button,
#yachtFaq .accordion-button{
    padding:20px;
    font-size:18px;
    font-weight:600;
}

#shipFaq .accordion-button:not(.collapsed),
#yachtFaq .accordion-button:not(.collapsed){
    background:#002b5b;
    color:#fff;
}

/*=========================================
YACHT HERO
=========================================*/

.yacht-hero{
    padding:140px 0;
    color:#fff;
    background:
    linear-gradient(rgba(0,43,91,.82),rgba(0,43,91,.82)),
    url('../images/yacht/yacht-banner.jpg') center/cover no-repeat;
}

/*=========================================
YACHT CTA
=========================================*/

.yacht-cta{
    padding:100px 0;
    text-align:center;
    color:#fff;
    background:
    linear-gradient(rgba(0,43,91,.90),rgba(0,43,91,.90)),
    url('../images/banner/cta.jpg') center/cover;
}

.yacht-cta h2{
    margin-bottom:20px;
    font-size:46px;
    font-weight:700;
}

.yacht-cta p{
    max-width:850px;
    margin:0 auto 35px;
    line-height:1.9;
}

/*=========================================
RESPONSIVE
=========================================*/

@media (max-width:991px){

.process-box,
.download-box,
.benefit-box{
    margin-bottom:25px;
}

.process-number{
    width:60px;
    height:60px;
    font-size:24px;
}

.cta-section,
.yacht-cta{
    padding:70px 20px;
}

.cta-section h2,
.yacht-cta h2{
    font-size:34px;
}

}

@media (max-width:576px){

.process-box{
    padding:25px 18px;
}

.process-box h5{
    font-size:20px;
}

.download-box i{
    font-size:48px;
}

.list-group-item{
    font-size:15px;
}

.yacht-cta h2{
    font-size:30px;
}

}

/*==================================================
CERTIFICATE VERIFICATION
==================================================*/

/* VERIFY */

.verify-success{
    background:#fff;
    padding:35px;
    margin-bottom:40px;
    border-left:6px solid #198754;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.verify-success h2{
    margin-bottom:25px;
    color:#198754;
    font-size:36px;
    font-weight:700;
}

.verify-success table{
    margin-top:20px;
}

.verify-success table th{
    width:35%;
    background:#f8f9fa;
    color:#002b5b;
    font-weight:600;
}

.verify-success table td{
    vertical-align:middle;
}

.verify-success img{
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* QR */

.qr-box{
    padding:20px;
    text-align:center;
    background:#fff;
    border:2px dashed #d4af37;
    border-radius:15px;
}

.qr-box img{
    max-width:180px;
}

/* SECURITY */

.security-box{
    padding:30px;
    background:#fff8e1;
    border-left:5px solid #d4af37;
    border-radius:12px;
}

/* CONTACT */

.contact-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-card ul{
    margin-top:20px;
}

.contact-card li{
    padding:16px 0;
    border-bottom:1px solid #eee;
}

.contact-card li:last-child{
    border:none;
}

/* VERIFY FAQ */

#verifyFaq .accordion-item{
    margin-bottom:15px;
    border:none;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

#verifyFaq .accordion-button{
    padding:22px;
    font-size:18px;
    font-weight:600;
}

#verifyFaq .accordion-button:not(.collapsed){
    background:#002b5b;
    color:#fff;
}

#verifyFaq .accordion-body{
    padding:25px;
    line-height:1.9;
}

/* RESPONSIVE */

@media (max-width:991px){

.verify-success{
    padding:25px;
}

.verify-success h2{
    font-size:28px;
}

.contact-card{
    margin-bottom:25px;
}

}

@media (max-width:576px){

.verify-success h2{
    font-size:24px;
}

.verify-success table{
    font-size:14px;
}

.qr-box img{
    max-width:130px;
}

.contact-card{
    padding:25px;
}

}
/*==================================================
CERTIFICATE VERIFICATION
==================================================*/

/* VERIFIED RESULT */

.verify-success{
    background:#fff;
    padding:40px;
    margin-bottom:40px;
    border-left:6px solid #198754;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.verify-success h2{
    color:#198754;
    font-size:34px;
    font-weight:700;
    margin-bottom:20px;
}

.verify-success table{
    margin-top:25px;
}

.verify-success table th{
    width:35%;
    background:#f8f9fa;
    color:#002b5b;
    font-weight:600;
}

.verify-success table td{
    vertical-align:middle;
}

/* QR */

.qr-box{
    display:inline-block;
    padding:20px;
    background:#fff;
    border:2px dashed #d4af37;
    border-radius:15px;
}

.qr-box img{
    width:170px;
}

/* SECURITY */

.alert-warning{
    border-left:5px solid #d4af37;
}

/* CONTACT */

.contact-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-card ul{
    margin-top:20px;
}

.contact-card li{
    padding:16px 0;
    border-bottom:1px solid #eee;
}

.contact-card li:last-child{
    border:none;
}

/* VERIFY FAQ */

#verifyFaq .accordion-item{
    margin-bottom:15px;
    border:none;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

#verifyFaq .accordion-button{
    padding:22px;
    font-size:18px;
    font-weight:600;
}

#verifyFaq .accordion-button:not(.collapsed){
    background:#002b5b;
    color:#fff;
}

#verifyFaq .accordion-body{
    padding:25px;
    line-height:1.9;
}

/* RESPONSIVE */

@media (max-width:991px){

.verify-success{
    padding:25px;
}

.verify-success h2{
    font-size:28px;
}

.contact-card{
    margin-bottom:25px;
}

}

@media (max-width:576px){

.verify-success{
    padding:20px;
}

.verify-success h2{
    font-size:24px;
}

.verify-success table{
    font-size:14px;
}

.qr-box img{
    width:130px;
}

.contact-card{
    padding:25px;
}

}
/*=========================================
RESPONSIVE
=========================================*/

@media (max-width:991px){

    .verify-success{
        padding:25px;
    }

    .verify-success h2{
        font-size:28px;
    }

    .contact-card,
    .feature-box{
        margin-bottom:25px;
    }

}

@media (max-width:576px){

    .verify-success{
        padding:20px;
    }

    .verify-success h2{
        font-size:24px;
    }

    .verify-success table{
        font-size:14px;
    }

    .qr-box img{
        width:130px;
    }

}
/*=========================================
GLOBAL LAYOUT FIX
=========================================*/

*,
*::before,
*::after{
    box-sizing:border-box;
}

html,
body{
    margin:0;
    padding:0;
    width:100%;
    overflow-x:hidden;
    scroll-behavior:smooth;
}

body{
    position:relative;
    font-family:'Poppins',sans-serif;
}

img,
video,
iframe{
    display:block;
    max-width:100%;
    height:auto;
}

section,
.hero,
.page-banner,
.cta-section,
footer,
header{
    overflow:hidden;
}