:root {
    --brand-dark: #1c2e67;
    /* top bar/nav accent */
    --brand-primary: #1e88c8;
    /* footer blue / accents */
    --light-sky: #dff5fb;
    /* CTA background */
}

body {
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
}

/* ---------- Topbar ---------- */
.topbar {
    background: var(--brand-dark);
    font-size: 0.95rem;
    padding: 8px 0;
}

/* Topbar social icons hover effect */
.topbar a {
    transition: 0.3s ease;
}

.topbar a:hover {
    color: #7fc7ff !important;
    /* Light blue */
    opacity: 0.7;
    /* Slight fade effect */
    transform: scale(1.07);
    /* Optional – slight zoom */
}

/* ---------- Logo ---------- */
.logo-img {
    height: 100px;
    object-fit: contain;
}

/* ---------- Navbar ---------- */
/* ----- NAVBAR STYLES ----- */

.navbar-nav .nav-link {
    font-family: "Roboto", 'Fira Sans';
    font-weight: 700;
    font-size: 1.2rem;
    padding: 30px 0;
    color: #1c2e4a;
    /* default dark navy */
    transition: all 0.2s ease-in-out;
}

/* Active menu (Home, Products, Contact) — sky blue */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.show {
    color: #0ea5e9 !important;
    /* sky blue */
}

/* Hover — pink */
.navbar-nav .nav-link:hover {
    color: #ff4da6 !important;
    /* pink hover */
}

.navbar .dropdown {
    position: static;
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #1c2e4a;
}

.dropdown-menu .dropdown-item:hover {
    background: #f0f8ff;
    color: #ff4da6;
}

/* Mega dropdown */
.dropdown-menu.mega-menu {
    display: none;
}

.mega-menu.show {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 2rem;
    row-gap: 0.45rem;
    width: min(900px, calc(100vw - 40px));
    padding: 1.6rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.mega-column {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 200px;
}

.mega-menu .dropdown-item {
    white-space: normal;
    line-height: 1.45;
    text-transform: uppercase;
    font-size: 0.92rem;
    padding-left: 0;
}

@media (max-width: 991.98px) {
    .mega-menu.show {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: calc(100vw - 24px);
        left: 0 !important;
        transform: none !important;
    }
}

@media (max-width: 767.98px) {
    .mega-menu.show {
        grid-template-columns: 1fr;
        width: calc(100vw - 24px);
    }
}


/* Hero container */
.hero {
    position: relative;
    /* ensure absolute children align to hero */
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: visible;
    /* allow wave to overflow */
    padding-bottom: 120px;
    /* reserve space for the wave (adjust as needed) */
}

/* Hero background image */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
    z-index: 0;
}

/* content inside hero should be above bg */
.hero .container,
.hero .hero-lead,
.hero .hero-welcome {
    position: relative;
    z-index: 2;
}

/* Wave container positioned at bottom of hero */
.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    /* small negative to overlap next section */
    z-index: 1;
    /* sits above bg but below text */
    width: 100%;
    pointer-events: none;
    display: block;
    line-height: 0;
}

/* Wave image responsive sizing */
.hero-wave-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 180px;
    /* cap height so it doesn't become huge on tall viewports */
    object-fit: cover;
}

/* tweak for smaller screens */
@media (max-width: 767.98px) {
    .hero {
        padding-bottom: 80px;
        min-height: 320px;
    }

    .hero-wave-img {
        max-height: 120px;
    }

    .hero-welcome {
        font-size: 1.8rem;
    }

    .hero-lead {
        font-size: 1rem;
    }
}

/* ===== ABOUT SECTION STYLE ===== */
.about-section {
    background: #ffffff;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* IMAGE WRAPPER with border + corner radius */
.about-img-wrapper {
    border: 8px solid #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Reduced image height */
.about-img {
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: cover;
    border-radius: 20px;
}

/* Title using Agbalumo */
.about-title {
    font-family: "Agbalumo", cursive !important;
    font-weight: 400;
    color: #19a7e0;
    font-size: 2.4rem;
    line-height: 1.1;
}

.about-subtitle {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #333;
}

.about-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

@media (max-width: 768px) {
    .about-img {
        max-height: 260px;
    }

    .about-title {
        font-size: 1.9rem;
    }
}

/* ===== FULL WIDTH IMAGE SECTION ===== */
.full-img-section {
    background: #ffffff;
    padding-bottom: 50px;
}

.full-img-wrapper {
    border: 8px solid #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.full-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ===== TEXT CONTENT SECTION ===== */
.text-content-section {
    background: #ffffff;
    padding-top: 30px;
    padding-bottom: 260px;
}

.text-content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.4rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .full-img-wrapper {
        border-radius: 16px;
    }

    .text-content-section {
        padding-bottom: 210px;
    }

    .text-content-section p {
        font-size: 1rem;
    }
}

/* ===== OFFER SECTION ===== */
.offer-section {
    background: #d9f5ff;
    /* light blue from screenshot */
    position: relative;
    margin-top: 40px;
    padding-top: 90px;
    padding-bottom: 60px;
    overflow: visible;
}

/* Top Wave */
.offer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    line-height: 0;
    pointer-events: none;
    transform: translateY(-40%);
}

.offer-wave img {
    width: 100%;
    max-width: none;
    display: block;
    transform: none;
}

/* Background fish illustration */
.offer-section::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 80px;
    width: 480px;
    height: 480px;
    background: url("/uploads/2025/02/fish_hd.png") no-repeat;
    background-size: contain;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    transform: none;
}

/* Title */
.offer-title {
    font-family: "Agbalumo", cursive;
    font-size: 2.7rem;
    color: #1da5df;
    line-height: 1.15;
    position: relative;
    z-index: 2;
}

/* Paragraph */
.offer-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #222;
    z-index: 2;
    position: relative;
}

/* Button */
.offer-btn {
    background: #028be9;
    border: none;
    padding: 10px 28px;
    font-size: 1rem;
    border-radius: 6px;
}

/* Right side image */
.offer-img-wrapper {
    background: #fff;
    padding: 12px;
    border-radius: 22px;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
    position: relative;
}

.offer-main-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .offer-section::before {
        width: 330px;
        height: 330px;
        left: auto;
        right: -40px;
        bottom: auto;
        top: 200px;
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .offer-title {
        font-size: 2rem;
        text-align: center;
    }

    .offer-section::before {
        width: 280px;
        height: 280px;
        left: auto;
        right: -20px;
        bottom: auto;
        top: 180px;
        opacity: 0.3;
    }

    .offer-text {
        text-align: center;
    }

    .offer-btn {
        display: block;
        margin: auto;
    }
}

@media (max-width: 576px) {
    .offer-section::before {
        width: 260px;
        height: 260px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        bottom: auto;
        top: 160px;
        opacity: 0.3;
    }
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    position: relative;
    background: #1fb3e2;
    overflow: hidden;
    z-index: 5;
    /* FIXED */
}

/* Correct Wave shape */
.footer-wave {
    position: absolute;
    top: -90px;
    /* wave height fixed */
    left: 0;
    width: 100%;
    z-index: 10;
    /* FIXED */
}

.footer-wave img {
    width: 100%;
    display: block;
}

/* Footer content background */
.footer-main {
    background: #1fb3e2;
    padding-top: 150px;
    /* space below the wave */
    padding-bottom: 60px;
    position: relative;
    z-index: 4;
}

/* Logo */
.footer-logo {
    width: 140px;
}

/* Text */
.footer-text {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
}

/* Titles */
.footer-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Links */
.footer-links li {
    list-style: none;
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
}

.footer-links a:hover {
    color: #003f88;
}

/* Contact */
.footer-contact li {
    list-style: none;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-contact i {
    color: #ffffff;
    width: 18px;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 15px;

}

.footer-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon:hover {
    background: #fff;
    color: #1fb3e2;
}

/* Copyright bar */
.footer-bottom {
    background: #004a9c;
    padding: 14px 0;
    text-align: center;
}

.footer-bottom p {
    color: #fff;
    font-size: 0.95rem;
}

/* FIX FOOTER COLUMN ALIGNMENT */
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Ensures list items align under Title */
    justify-content: flex-start;
}

.footer-links,
.footer-contact {
    padding-left: 0;
    /* remove unwanted left indent */
    margin-left: 5px;
    /* small gap from title */
}

/* Responsive */
@media (max-width: 768px) {
    .footer-main {
        padding-top: 130px;
        text-align: center;
    }

    .footer-logo {
        margin: auto;
    }

    .footer-social {
        justify-content: center;
    }
}
.mega-menu {
    min-width: 600px;
    max-width: 900px;
}

.mega-column {
    min-width: 200px;
}

.mega-item {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    line-height: 1.3;
    min-height: 38px; /* equal height rows */
    white-space: normal;
}
.row>* {
    flex-shrink: 0;
    width: 300%;
    max-width: 337%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}.mega-menu .dropdown-item {
    white-space: normal;
    padding: 0;
    font-size: 14px;
}
.mega-menu ul li {
    margin-bottom: 8px;
}
