@import url(./animate.css);

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
    /* --primary-color: #d4af37; */
    --secondary-color: #fff;
    --dark-bg: #000;
    --dark-gray: #1a1a1a;
    --light-gray: #333;
    --primary-gold: #d4af37;
    --secondary-gold: #90723f;
    /* --deep-blue: #002b4c; */
    --deep-blue: #000;

    --light-blue: #46aef7;
    --text-black: #000000;
    --golden-gred : linear-gradient(101deg, rgba(205, 185, 116, 1) 0%, rgba(144, 114, 63, 1) 59%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--light-gray);
    overflow-x: hidden;
    scroll-behavior: smooth;

}

/* Dark Header Design */
.dark-header {
    /* background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-gray) 100%); */
    /* padding: 10px 0 0 0; */
    /* border-bottom: 2px solid var(--primary-color); */
    position: relative;
}

.dark-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.logo {
    width: 171px;
}

/* Dark Clock Design */
.clock-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
}

.clock-wrapper {
    text-align: center;
    transition: all 0.3s ease;
}

.clock-wrapper:hover {
    transform: translateY(-5px);
}

.clock-label {
    font-size: 0.8rem;
    color: var(--deep-blue);
    margin-bottom: 5px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.clock {
    width: 70px;
    height: 70px;
    background: var(--deep-blue);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(63, 99, 200, 0.5), inset 0 0 20px rgba(63, 99, 200, 0.2);
}

.clock-face {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hand {
    position: absolute;
    transform-origin: bottom center;
    bottom: 50%;
    left: 50%;
    border-radius: 10px;
}

.hour-hand {
    width: 3px;
    height: 22px;
    margin-left: -1.5px;
    background: var(--secondary-color);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.minute-hand {
    width: 2px;
    height: 30px;
    margin-left: -1px;
    background: var(--secondary-color);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.second-hand {
    width: 1px;
    height: 33px;
    margin-left: -0.5px;
    background: var(--primary-gold);
    box-shadow: 0 0 10px var(--primary-gold);
}

.center-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--secondary-gold);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(63, 99, 200, 0.8);
    z-index: 20;
}

/* Hour indicators */
.hour-indicator {
    position: absolute;
    width: 2px;
    height: 6px;
    background: var(--primary-gold);
    top: 5px;
    left: 50%;
    transform-origin: center 30px;
    border-radius: 2px;
    opacity: 0.8;
}

.hour-indicator.main {
    width: 3px;
    height: 10px;
    background: var(--secondary-color);
    opacity: 1;
}

/* Dark Button */
.submit-btn,
.get-in-touch-btn {
    background: var(--golden-gred);
    color: var(--secondary-color);
    border: none;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(63, 99, 200, 0.4); */
    font-size: 0.95rem;
}

.submit-btn:hover,
.get-in-touch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--secondary-gold);
    background: linear-gradient(101deg, rgba(144, 114, 63, 1) 59%, rgba(205, 185, 116, 1) 0%,);
    color: var(--secondary-color);
}

/* Clock Menu Button */
.clock-menu-btn {
    background: transparent;
    border: 2px solid var(--light-gray);
    color: var(--light-gray);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.clock-menu-btn:hover {
    background: var(--light-gray);
    color: var(--secondary-color);
    transform: rotate(90deg);
}

/* Custom navbar-toggler for dark theme */
/* .navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
} */

/* .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(63, 99, 200, 0.25);
} */


/* Dark Navigation */

/* From lg and above (≥ 992px) */
@media (min-width: 992px) {
    /* desktop overrides here */
    .main-navbar-menu{
        background: var(--deep-blue);
        border-bottom: 1px solid var(--primary-gold);
        position: sticky;
        top: 0;
        z-index: 110;
    }

    /* Fixed state after scroll */
    .main-navbar-menu.is-fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
}
@media (max-width: 991.98px) {
    /* mobile/tablet overrides here */
    .main-navbar-menu{
        background: var(--deep-blue);
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        z-index: 1050;
        border-right: 1px solid var(--primary-gold);
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    }

    .main-navbar-menu.is-open {
        left: 0;
    }

    .main-navbar-menu .navbar-nav {
        flex-direction: column;
        padding: 16px;
    }

    .main-navbar-menu .menu-close {
        margin-top: 10px 10px 0;
        background: transparent;
        border: 2px solid var(--primary-gold);
        color: var(--primary-gold);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 24px;
        line-height: 28px;
        text-align: center;
    }
}


/* Up to lg (≤ 991.98px) */
.dark-nav {
    background: var(--deep-blue);
    /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5); */
    position: sticky;
    top: 0;
    z-index: 1000;
    /* border-bottom: 1px solid var(--primary-color); */
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    padding: 15px 20px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: rgba(61, 61, 61, 0.2);
    color: var(--primary-gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0%;
    width: 0;
    height: 3px;
    /* background: var(--primary-color); */
    transform: translateX(-50%);
    transition: width 0.3s ease;
}



/* .nav-link:hover::after {
    width: 80%;
} */
@media (min-width: 992px) {
    /* desktop overrides here */
    .dropdown-menu{
         position: absolute !important;
    }
}
@media (max-width: 991.98px) {}

.dropdown-menu {
    background: var(--deep-blue);
    border: 1px solid var(--primary-gold);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    padding: 10px;
    margin-top: 10px;
   
}

.dropdown-item {
    color: var(--secondary-color) !important;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background:rgba(61, 61, 61, 0.2);
    color: var(--primary-gold) !important;
}


/* Dark Footer */
.footer {
    background: url(../img/hamburg-3763443_1920.jpg) center center no-repeat;
    background-size: cover;
    color: var(--secondary-color);
    padding: 50px 0 20px;
    border-top: 2px solid var(--primary-color);
    position: relative;
}
.footer::after{
    content: " ";
    width: 100%;
    height: 100%;
    background: var(--deep-blue);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.8;
}
.f-z-index{
    position: relative;
    z-index: 1;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(63, 99, 200, 0.5);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a7ce8;
}

/* Clock Offcanvas */
.clock-offcanvas {
    background: var(--deep-blue);
    color: var(--secondary-color);
    border-left: 2px solid var(--primary-color);
}

.clock-offcanvas-header {
    border-bottom: 1px solid var(--primary-color);
}

.clock-offcanvas-title {
    color: var(--primary-color);
}
.offcanvas .offcanvas-header h5{
    color: var(--secondary-color);
}


.clock-offcanvas .btn-close {
    filter: invert(1);
}

.clock-offcanvas-body {
    padding: 30px 20px;
}

.clock-offcanvas .clock-container {
    display: flex !important;
    flex-direction: column;
    gap: 40px;
    margin-top: 20px;
}

.clock-offcanvas .clock {
    width: 120px;
    height: 120px;
}

.clock-offcanvas .clock-label {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #90723f;
}

.clock-offcanvas .hour-hand {
    height: 35px;
}

.clock-offcanvas .minute-hand {
    height: 50px;
}

.clock-offcanvas .second-hand {
    height: 55px;
}

.clock-offcanvas .hour-indicator {
    height: 8px;
    transform-origin: center 52px;
}

.clock-offcanvas .hour-indicator.main {
    height: 12px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .clock-container {
        display: none;
    }
    
    .get-in-touch-btn {
        display: none;
    }
    
    .dark-header .row > div:nth-child(2) {
        order: 2;
    }
    
    .dark-header .row > div:nth-child(3) {
        order: 3;
    }
    
    .dark-header .row > div:nth-child(1) {
        order: 1;
    }
}



.banner-image{
    /* width: 100%; */
    height: 600px;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    will-change: opacity, transform;
    backface-visibility: hidden;
}
.banner-image::after{
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.3;
}
.swiper-button-prev,
.swiper-button-next{
    width: 42px;
    aspect-ratio: 1/1;
    border-radius: 5px;
    border: 2px solid #fff;
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 30px;
    align-self: center;
    color: #fff;
}

#banner .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--primary-color);
}

.banner-box{
    position: relative;
    z-index: 1;

    color: #fff !important;
}
.swiper-slide.swiper-slide-active .banner-image .banner-box{
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: animate__fadeInUp;
    animation-name: animate__fadeInUp;
    animation-delay: 0.6s;
  }

/* Smoother fade transitions for Swiper */
#banner.swiper-fade .swiper-slide{
    transition-property: opacity !important;
    transition-timing-function: ease-in-out !important;
}

.section-y{
    padding: 50px 0;
}

.main-heading{
    background: var(--golden-gred);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 56px !important;
    font-weight: 500 !important;
    line-height: 1.107 !important;
    letter-spacing: -.03em !important;
    margin-bottom: 25px !important;
}



 .section-descr{
    margin-top: 0 !important;
    color: var(--light-gray) !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    letter-spacing: -.005em !important;
    margin-bottom: 25px !important;
}

.service-slide,
.service-slide-img-box{
    position: relative;
}
.readmore{
    color: var(--primary-gold) !important;
    text-decoration: none;
}
	
.service-slide-img-box::after{
    content: " ";
    width: 100%;
    height: 100%;
    background: linear-gradient(178deg,rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 1) 77%);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.6;
    transition: 0.6s all;
}
.service-slide:hover .service-slide-img-box::after{
       opacity:1;
}

.service-slide-heading{
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
}
	
.service-slide-heading h3{
    color: var(--secondary-color);
    font-weight: 200;
    font-size: calc(1.1rem + .6vw);
}

.read-more{
    opacity: 0;
    height: 0px;
    -webkit-transition: opacity .18s cubic-bezier(.05,.2,.1,1), -webkit-height .18s cubic-bezier(.05,.2,.1,1);
    transition: opacity .18s cubic-bezier(.05,.2,.1,1), -webkit-height .18s cubic-bezier(.05,.2,.1,1);
    transition: opacity .18s cubic-bezier(.05,.2,.1,1), height .18s cubic-bezier(.05,.2,.1,1);
    transition: opacity .18s cubic-bezier(.05,.2,.1,1), height .18s cubic-bezier(.05,.2,.1,1), -webkit-height .18s cubic-bezier(.05,.2,.1,1);
}
.service-slide:hover .read-more{
    height: 30px;
    opacity: 1;
    -webkit-transition: opacity .65s cubic-bezier(.05,.2,.1,1) .15s, -webkit-height .65s cubic-bezier(.05,.2,.1,1) .15s;
    transition: opacity .65s cubic-bezier(.05,.2,.1,1) .15s, -webkit-height .65s cubic-bezier(.05,.2,.1,1) .15s;
    transition: opacity .65s cubic-bezier(.05,.2,.1,1) .15s, height .65s cubic-bezier(.05,.2,.1,1) .15s;
    transition: opacity .65s cubic-bezier(.05,.2,.1,1) .15s, height .65s cubic-bezier(.05,.2,.1,1) .15s, -webkit-height .65s cubic-bezier(.05,.2,.1,1) .15s;
}
.activities-back-overlay h2{
    position: relative;
    z-index: 1;
}
.activities-side-png,
.activities-back-overlay{
    position: relative;
}

.activities-back-overlay::after{
    content: " ";
    width: 130%;
    height: 100%;
    position: absolute;
    right: -150px;
    top: 0;
    background: var(--deep-blue);
    z-index: -100;
    
}

.activities-side-png::after{
    content: " ";
    width: 150%;
    height: 80%;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-40%);
    background: var(--golden-gred);
    z-index: -99;
}
.activities-section{
    overflow-x: hidden;
}

.activities-side-png img{
    aspect-ratio: 4/4;
    position: absolute;
    right: -160%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.4;
}

.read-more a{
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-form-img{
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.contact-form{
    background: #e9edf399;
    padding: 30px;
}
.contact-info h2,
.contact-form h2{
    font-size: 35px !important;
}

.contact-info h2{
    margin-bottom: 0.7rem !important;
}
.form-select,
.form-control{
    border-radius: 0px;
    font-size:14px ;
    padding: 15px;
    font-weight: 500;
}

.form-select:focus,
.form-control:focus {
    background-color: var(--bs-body-bg);
    border-color: var(--secondary-gold);
    outline: 0;
    box-shadow: none;
}

/* .contact-form-form{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 59px 0 0 0;
} */

.c-banner {
    background-size: cover !important;
    height: 500px;
    position: relative;
}
.c-banner::after {
    content: " ";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
    position: absolute;
    left: 0;
    top: 0;
}

.about-us {
    background: url(../img/about-us.jpg) center, bottom no-repeat;
}

.chartering-and-commercial-management{
    background-repeat: no-repeat;
    background-position: center center;
}

.banner-box {
    position: relative;
    z-index: 1;
    text-align: center;
}
.breadcrumb span:last-child {
    color: #ffffff87;
}
.breadcrumb span a, .breadcrumb span {
    color: var(--secondary-color);
    font-size: 20px;
    text-decoration: none;
}

.activities-category{
    position: sticky;
    top: 100px;
    margin-right: 30px
}

.service-catagery-list{
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
}

.service-catagery-list h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.service-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.service-catagery-list ul li:last-child{
    border: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.service-catagery-list ul li {
    border-bottom: 1px solid #dfe1de;
    padding-bottom: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}
.service-catagery-list ul li a {
    position: relative;
    display: block;
    text-transform: capitalize;
    color: inherit;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}
.service-catagery-list ul li a:hover{
    color: #d4af37;
}

.service-section-bg{
    background-color: #f2f1ed;
    color: #8f8f8f;
}
.my-rounded{
    border-radius: 20px;
}

.service-box-section h1{
    font-size: calc(1.4rem + .6vw);
    background: var(--golden-gred);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* font-size: 56px !important; */
    /* font-weight: 500 !important; */
    line-height: 1.107 !important;
    letter-spacing: -.03em !important;
    margin-bottom: 25px !important;
}

.service-box-section ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activelink{color: var(--primary-gold) !important;}
.footerline a:hover,
.footerline a{
    color:#f4a210 ;
    text-decoration: none;
}
@media (max-width: 992px){
    .activities-back-overlay::after {
    content: " ";
    width: 2000%;
    height: 100%;
    position: absolute;
    right: -100%;
    top: 0;
    background: #002b4c;
    z-index: -100;
}
}
.c-banner,
.c-banner::after,
.banner-image::after,
.banner-image{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.rounded-20{
    border-radius: 20px;
}

@media (min-width:576px ) {
 .info-w{
        width: 300px;
    }
}

@media (max-width:576px ) {
    .dropdown-menu .dropdown-item{
        white-space: normal;
    }
   
}
.info-w{
    color: var(--dark-gray);

}

.og-email-number a{
    color: var(--dark-gray);
    text-decoration: none;
    display: flex;
    gap: 5px;
    align-items: baseline;
}

.og-email-number a i{
    font-size: 20px;
}

.error{
    color: #ff0202;
    font-size: 12px;
    position: absolute;
    bottom: -18px;
}

/* Chrome, Safari, Edge, Opera ke liye */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox ke liye */
input[type=number] {
  -moz-appearance: textfield;
}

/* Optional: ek hi look rakho sab browsers me */
input[type=number] {
  appearance: textfield;
}