/* =========================================
   1. VARIABLES & RESET
   ========================================= */
   :root {
    --ocean-blue: #0c365a;   /* Deep Navy from Logo */
    --sky-blue: #58c2a9;     /* Seafoam Teal from Logo */
    --accent-dark: #092a47;  /* Darker navy for hovers */
    --footer-bg: #003051;    /* Exact Deep Blue from reference */
    --teal-accent: #20c997;  /* Footer Icons/Heads */
    --light-bg: #f8f9fa;
    --ocean-deep: #0a2a43; /* Richer Navy */
    --sky-bright: #58c2a9; /* Your Teal/Sky Blue */
    --white: #ffffff;
}

html {
    direction: ltr;
    text-align: left;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    padding-top: 80px; /* Offset for fixed nav */
    margin: 0;
    padding-bottom: 0 !important;
}

/* Accessibility: Focus Ring for Keyboard Navigation */
:focus-visible {
    outline: 3px solid var(--sky-blue);
    outline-offset: 2px;
}


/* Helper Classes */
.text-end { text-align: left !important; } /* Aligning Bootstrap columns */
.section-padding { padding: 80px 0; }
.bg-sky { background-color: var(--sky-blue) !important; }
.bg-ocean { background-color: var(--ocean-blue) !important; }

/* =========================================
   2. NAVIGATION BAR
   ========================================= */
.navbar {
    border-top: 4px solid var(--sky-blue);
    background-color: white !important;
    min-height: 80px;
    transition: all 0.3s ease;
}

.navbar-brand {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 20px;
}

.navbar-logo-custom {
    height: 110px;
    width: auto;
    position: absolute;
    top: -40px;
    left: 0;
    z-index: 1050;
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.1));
}

.brand-text {
    margin-left: 120px;
    color: var(--ocean-blue) !important;
    font-weight: 700;
}

.navbar-nav .nav-item { border-left: 1px solid #eee; }

/* Resetting the previous "blocky" style */
.nav-link {
    color: var(--ocean-blue) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    background-color: transparent !important; /* Removes the old navy box */
    padding: 10px 15px !important;
}

/* Hover State: Text turns Teal + Line appears */
.nav-link:hover {
    color: var(--sky-blue) !important;
}

/* The Animated Underline */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 15px;
    background-color: var(--sky-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: calc(100% - 30px); /* Adjusts line to fit text width */
}

@media (max-width: 991px) {
    .navbar-logo-custom {
        height: 50px; /* Smaller on mobile */
    }
    .brand-text {
        font-size: 0.85rem;
        margin-left: 10px;
    }
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-bottom: 3px solid var(--sky-blue);
        max-width: 900px;
    }
}

.nav-link {
    color: var(--ocean-blue) !important;
    font-weight: 600;
    padding: 10px 15px !important;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--sky-blue) !important;
}
/* =========================================
   ACTIVE LINK STYLING
   ========================================= */

/* The specific link of the current page */
.navbar-nav .nav-link.active {
    color: var(--sky-blue) !important;
    font-weight: 700;
    position: relative;
}

/* Optional: Add a small teal dot or line under the active link */
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--sky-blue);
    border-radius: 2px;
}




/* ==========================================================================
   CONTACT HERO
   ========================================================================== */
   .contact-hero {
    height: 450px;
     /* Replace with a port/office image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 75px;
    position: relative;
    border-bottom: 5px solid var(--sky-blue);
}

.contact-hero-overlay {
    background: rgba(12, 54, 90, 0.7);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   CONTACT INFO STYLES
   ========================================================================== */
.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(88, 194, 169, 0.1);
    color: var(--sky-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ocean-blue);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-links a:hover {
    background: var(--sky-blue);
    transform: translateY(-3px);
}

/* ==========================================================================
   FORM STYLES
   ========================================================================== */
.contact-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.custom-input {
    border: 2px solid #f0f0f0;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: var(--sky-blue);
    box-shadow: none;
    background-color: rgba(88, 194, 169, 0.05);
}

.btn-sky-to-ocean {
    border: none;
    background: var(--sky-blue);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-sky-to-ocean:hover {
    background: var(--ocean-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(12, 54, 90, 0.2);
}



/* =========================================
   6. BANNERS & FOOTER
   ========================================= */
   .footer-banner {
    width: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(12, 54, 90, 0.5), rgba(12, 54, 90, 0.5)), url('Home-2.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.site-footer {
    background-color: var(--footer-bg);
    color: #ffffff;
    padding: 60px 5% 20px;
    font-size: 14px;
}

.sister-company p{
    color:var(--sky-blue);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--sky-blue);
    transform: translateX(5px); /* Smooth slide-in effect */
}

.footer-socials a i {
    font-size: 1.2rem;
    transition: 0.3s;
}

.footer-socials a:hover i {
    color: var(--sky-blue);
    transform: translateY(-3px);
}
/* =========================================
   7. ANIMATIONS & RESPONSIVE
   ========================================= */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: floatUp 0.8s ease forwards;
}

@keyframes floatUp { 
    to { opacity: 1; transform: translateY(0); } 
}

@media (max-width: 768px) {
    .navbar-logo-custom { height: 60px; top: -10px; }
    .navbar-brand { padding-left: 70px; }
    .brand-text { margin-left: 0; font-size: 0.9rem; }
    .carousel-control-prev, .carousel-control-next { left: 10px; right: 10px; }
    .footer-banner { background-attachment: scroll; min-height: 300px; }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .contact-hero { height: 350px; }
    .contact-card { padding: 30px !important; }
}
