/* ============================================================
   FarmersBD — Main Stylesheet
   Design: Clean, Modern & Vibrant Aquaculture Theme (Teal-Ocean Gradient Palette)
   ============================================================ */

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
    /* Typography */
    --font-size-h1: 2.5rem;
    --font-size-h2: 1.85rem;
    --font-size-h3: 1.45rem;
    --font-size-h4: 1.2rem;
    --font-size-body: 0.95rem;
    --font-size-navbar: 0.925rem;
    --font-size-btn: 0.9rem;
    --font-size-footer: 0.875rem;

    --font-family-primary: "Noto Sans Bengali", system-ui, -apple-system, sans-serif;
    --line-height-base: 1.65;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    /* Section Spacing */
    --section-padding: 4.5rem 0;

    /* Clean & Vibrant Aquatic Palette */
    --color-primary: #0284c7;
    /* Ocean Blue */
    --color-primary-dark: #0369a1;
    /* Deep Ocean Blue */
    --color-primary-light: #38bdf8;
    /* Sky Blue */
    --color-secondary: #0d9488;
    /* Deep Teal */
    --color-accent: #f59e0b;
    /* Warm Amber */
    --color-accent-hover: #d97706;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    --grad-primary-hover: linear-gradient(135deg, #0369a1 0%, #075985 100%);
    --grad-secondary: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    --grad-accent: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    --grad-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --grad-card-top: linear-gradient(90deg, #0284c7, #0d9488);
    --grad-hero: linear-gradient(135deg, #0f172a 0%, #0284c7 100%);

    --color-danger: #e11d48;
    --color-success: #0d9488;
    --color-info: #0ea5e9;
    --color-warning: #f59e0b;

    --color-bg: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPgo8ZGVmcz4KPGxpbmVhckdyYWRpZW50IGlkPSJnIiB4MT0iMCIgeTE9IjAiIHgyPSIxIiB5Mj0iMSI+CjxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iI2YwZjlmZiIvPgo8c3RvcCBvZmZzZXQ9IjAuNSIgc3RvcC1jb2xvcj0iI2UwZjJmZSIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNmOGZhZmMiLz4KPC9saW5lYXJHcmFkaWVudD4KPC9kZWZzPgo8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2cpIi8+Cjwvc3ZnPg==') no-repeat center center fixed;
    /* Subtle aquatic gradient using base64 SVG */
    --color-bg-alt: #f1f5f9;
    /* Slate 100 */
    --color-text: #0f172a;
    /* Slate 900 */
    --color-text-muted: #475569;
    /* Slate 600 */
    --color-border: #e2e8f0;
    /* Slate 200 */
    --color-card-bg: rgba(255, 255, 255, 0.75);
    /* Increased transparency for glassmorphism */
    --color-shadow: rgba(2, 132, 199, 0.12);
    --color-shadow-hover: rgba(2, 132, 199, 0.20);

    /* Border Radii */
    --card-radius: 16px;
    --btn-radius: 10px;

    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Bootstrap Overrides ──────────────────────────────────── */
:root {
    --bs-primary: #0284c7;
    --bs-primary-rgb: 2, 132, 199;
    --bs-primary-bg-subtle: #e0f2fe;
    --bs-body-font-family: var(--font-family-primary);
    --bs-body-font-size: var(--font-size-body);
    --bs-body-line-height: var(--line-height-base);
    --bs-body-color: var(--color-text);
    --bs-body-bg: var(--color-bg);
    --bs-border-radius: var(--card-radius);
    --bs-border-radius-sm: 6px;
    --bs-border-radius-lg: 16px;
    --bs-link-color: #0284c7;
    --bs-link-hover-color: #0369a1;
}

/* ── Global Reset & Base ─────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Remove browser focus outline on sections/containers (prevents red outlines) */
section:focus,
section:focus-visible,
.container:focus,
.row:focus {
    outline: none !important;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-body);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    color: #0f172a;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
}

/* ── Header & Navigation Bar ────────────────────────────── */
.top-header {
    background: #0f172a;
    color: #94a3b8;
    padding: 7px 0;
    font-size: 0.825rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-header a {
    color: #cbd5e1;
}

.top-header a:hover {
    color: #38bdf8;
}

#mainNavbar.main-site-navbar {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.3rem 0;
    box-shadow: 0 4px 25px rgba(15, 23, 42, 0.05) !important;
    border-bottom: 1px solid rgba(2, 132, 199, 0.12);
    z-index: 1030;
}

.brand-icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0284c7 0%, #0d9488 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
    transition: transform 0.25s ease;
}

.navbar-brand:hover .brand-icon-badge {
    transform: scale(1.06) rotate(-4deg);
}

.brand-title {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #0f172a 0%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-tagline {
    font-size: 0.72rem;
    color: #0d9488;
    font-weight: 600;
    margin-top: 1px;
    letter-spacing: 0.2px;
}

.btn-nav-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-nav-circle:hover {
    background: #f8fafc;
    border-color: #0284c7;
    color: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
}

.btn-ai-quick {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(2, 132, 199, 0.12) 100%);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #0284c7;
    font-weight: 700;
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.btn-ai-quick:hover {
    background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.35);
    transform: translateY(-2px);
}

.btn-aquatic-login {
    background: linear-gradient(135deg, #0284c7 0%, #0d9488 100%);
    color: #ffffff;
    font-weight: 600;
    padding: 0.55rem 1.35rem;
    border-radius: 30px;
    font-size: 0.925rem;
    border: none;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
    transition: all 0.25s ease;
}

.btn-aquatic-login:hover {
    background: linear-gradient(135deg, #0369a1 0%, #0f766e 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
    transform: translateY(-2px);
}

/* ── Modern Navigation Links ────────────────────────────── */
.nav-svg-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.45rem;
    filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.12));
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.navbar-nav .nav-link:hover .nav-svg-icon {
    transform: scale(1.18) rotate(-4deg);
    filter: drop-shadow(0 3px 6px rgba(2, 132, 199, 0.25));
}

.navbar-nav .nav-link.active .nav-svg-icon {
    transform: scale(1.12);
    filter: drop-shadow(0 3px 6px rgba(2, 132, 199, 0.3));
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: #334155 !important;
    padding: 0.5rem 0.9rem !important;
    border-radius: 20px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-link:hover {
    color: #0284c7 !important;
    background-color: rgba(2, 132, 199, 0.08);
}

.navbar-nav .nav-link.active {
    color: #0284c7 !important;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.12) 0%, rgba(6, 182, 212, 0.12) 100%);
}

/* Modern bottom underline indicator */
.navbar-nav .nav-link::after {
    display: none;
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

.navbar-nav .nav-link.active::after {
    width: 70%;
}

/* ── Desktop Navbar Layout: 3-Column Grid (Dead Center Nav) ── */
@media (min-width: 992px) {
    #mainNavbar>.container-fluid {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        align-items: center !important;
        width: 100% !important;
    }

    .navbar-brand {
        grid-column: 1 !important;
        justify-self: start !important;
        margin-right: 0 !important;
    }

    #navbarContent {
        display: contents !important;
    }

    .navbar-nav-center {
        grid-column: 2 !important;
        justify-self: center !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.5rem !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .navbar-right-side {
        grid-column: 3 !important;
        justify-self: end !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.75rem !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }
}

/* Responsive spacing for smaller desktop displays */
@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-nav-center {
        gap: 0.15rem !important;
    }

    .navbar-nav .nav-link {
        padding: 0.4rem 0.5rem !important;
        font-size: 0.925rem;
    }
}

/* Circular & pill navbar button hover effects */
.navbar-right-side .btn-outline-secondary {
    transition: all 0.2s ease;
}

.navbar-right-side .btn-outline-secondary:hover {
    background-color: #f1f5f9;
    border-color: #94a3b8 !important;
    transform: translateY(-1px);
}

.navbar-right-side a.btn[style*="background-color: #059669"] {
    transition: all 0.2s ease;
}

.navbar-right-side a.btn[style*="background-color: #059669"]:hover {
    background-color: #047857 !important;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3) !important;
    transform: translateY(-1px);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    font-weight: 600;
    padding: 0.55rem 1.25rem;
    border-radius: var(--btn-radius);
    transition: var(--transition-base);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    border: none;
}

.btn-primary {
    background: var(--grad-primary) !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--grad-primary-hover) !important;
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35) !important;
    transform: translateY(-2px);
}

.btn-warning {
    background: var(--grad-accent) !important;
    color: #ffffff !important;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #d97706 0%, #c2410c 100%) !important;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35) !important;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline-light:hover {
    background: #ffffff !important;
    color: #0f766e !important;
    border-color: #ffffff !important;
}

.btn-outline-primary {
    border: 1px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--grad-primary) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}

/* ── Hero Carousel & Banner ─────────────────────────────── */
#hero {
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

#heroCarousel .carousel-item {
    height: 80vh;
    min-height: 520px;
    max-height: 720px;
    position: relative;
}

#heroCarousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: none;
    -webkit-filter: none;
}

.hero-overlay {
    display: none !important;
}

.carousel-control-prev,
.carousel-control-next {
    display: none !important;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 5;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-text {
    max-width: 760px;
    padding: 0 0 0 4.5rem !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}


.title-line-1 {
    color: #ffffff !important;
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 3px 12px rgba(15, 23, 42, 0.95), 0 6px 24px rgba(0, 0, 0, 0.9);
}

.title-line-2 {
    color: #ffb703 !important;
    font-size: 3.1rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.2px;
    margin-top: 0.2rem;
    text-shadow: 0 3px 12px rgba(15, 23, 42, 0.95), 0 6px 24px rgba(0, 0, 0, 0.9);
}

.hero-main-subtitle {
    font-size: 1.15rem;
    color: #ffffff !important;
    font-weight: 600;
    line-height: 1.75;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
    max-width: 580px;
    text-shadow: 0 2px 10px rgba(15, 23, 42, 0.95), 0 4px 18px rgba(0, 0, 0, 0.9);
}

.hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.btn-hero-teal {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 0.8rem 1.75rem !important;
    font-weight: 700 !important;
    font-size: 1.025rem !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.45) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-hero-teal:hover {
    background: linear-gradient(135deg, #0f766e 0%, #115e59 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 30px rgba(13, 148, 136, 0.6) !important;
    color: #ffffff !important;
}

.btn-hero-blue {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 0.8rem 1.75rem !important;
    font-weight: 700 !important;
    font-size: 1.025rem !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.45) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-hero-blue:hover {
    background: linear-gradient(135deg, #0369a1 0%, #075985 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 14px 30px rgba(2, 132, 199, 0.6) !important;
    color: #ffffff !important;
}

.hero-stats-image-row {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    max-width: 580px;
}

.hero-stat-image-item {
    flex: 1;
    position: relative;
}

.hero-stat-image-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.22);
}

.stat-img-num {
    font-size: 1.55rem;
    font-weight: 900;
    color: #ffb703 !important;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.stat-img-lbl {
    font-size: 0.85rem;
    color: #e2e8f0 !important;
    font-weight: 500;
    margin-top: 0.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.stat-num {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.stat-lbl {
    font-size: 0.75rem;
    color: #cbd5e1;
    font-weight: 500;
    margin-top: 2px;
}



/* ── Service & Feature Cards ─────────────────────────────── */
.section-padding {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.badge-label {
    display: inline-block;
    background: var(--bs-primary-bg-subtle);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.services-main-title,
.fish-main-title {
    font-size: 2.45rem;
    font-weight: 800;
    letter-spacing: -0.4px;
    background: linear-gradient(135deg, #0f172a 0%, #0284c7 60%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    display: inline-block;
}

/* Blog section title — styled gradient with underline accent */
.blog-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.2;
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 40%, #0d9488 80%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.6rem;
    display: inline-block;
    position: relative;
}

/* FAQ section title — styled gradient */
.faq-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.6rem;
    display: inline-block;
    position: relative;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.section-divider {
    width: 65px;
    height: 4px;
    background: linear-gradient(90deg, #0284c7 0%, #06b6d4 100%);
    margin: 0.75rem auto 1.1rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.35);
}

.service-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    padding: 1.85rem 1.6rem;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0284c7, #06b6d4);
    transition: height 0.25s ease;
}

.srv-card-coral::before {
    background: linear-gradient(90deg, #ff6b81, #e11d48);
}

.srv-card-cyan::before {
    background: linear-gradient(90deg, #06b6d4, #0d9488);
}

.srv-card-purple::before {
    background: linear-gradient(90deg, #8b5cf6, #6d28d9);
}

.srv-card-amber::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.srv-card-sky::before {
    background: linear-gradient(90deg, #0284c7, #0369a1);
}

.srv-card-blue::before {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(2, 132, 199, 0.14);
    border-color: rgba(2, 132, 199, 0.25);
}

.service-card:hover::before {
    height: 6px;
}

.service-icon-wrapper {
    display: inline-block;
}

.srv-svg-icon {
    width: 52px;
    height: 52px;
    filter: drop-shadow(0 6px 12px rgba(15, 23, 42, 0.12));
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .srv-svg-icon {
    transform: scale(1.12) rotate(-4deg);
    filter: drop-shadow(0 8px 18px rgba(2, 132, 199, 0.22));
}

.service-badge {
    font-size: 0.76rem;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
}

.badge-coral {
    background: #ffe4e6;
    color: #e11d48;
}

.badge-cyan {
    background: #cff4fc;
    color: #0891b2;
}

.badge-purple {
    background: #f3e8ff;
    color: #7c3aed;
}

.badge-amber {
    background: #fef3c7;
    color: #d97706;
}

.badge-sky {
    background: #e0f2fe;
    color: #0284c7;
}

.badge-blue {
    background: #dbeafe;
    color: #2563eb;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
    color: #0f172a;
    transition: color 0.2s ease;
}

.service-card:hover h3 {
    color: #0284c7;
}

.service-card p {
    font-size: 0.925rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    color: #475569;
}

.btn-service-action {
    background: rgba(2, 132, 199, 0.07);
    color: #0284c7;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    border: 1px solid rgba(2, 132, 199, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
}

.btn-service-action i {
    transition: transform 0.25s ease;
}

.service-card:hover .btn-service-action {
    background: linear-gradient(135deg, #0284c7 0%, #0d9488 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
}

.service-card:hover .btn-service-action i {
    transform: translateX(4px);
}

/* ── Colourful Service Icon Themes ───────────────────────── */
/* 1. Red / Coral Theme (Disease Detection) */
.service-icon-danger {
    background: #fee2e2 !important;
    color: #ef4444 !important;
}

.theme-danger {
    border-top: 3px solid #ef4444 !important;
}

.theme-danger:hover {
    border-color: #fca5a5 !important;
    border-top-color: #ef4444 !important;
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.18) !important;
}

.theme-danger:hover .service-icon-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3) !important;
}

.theme-danger:hover .btn-outline-primary {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
}

/* 2. Cyan / Icy Blue Theme (Aqua Medicine) */
.service-icon-cyan {
    background: #cffafe !important;
    color: #0891b2 !important;
}

.theme-cyan {
    border-top: 3px solid #06b6d4 !important;
}

.theme-cyan:hover {
    border-color: #a5f3fc !important;
    border-top-color: #06b6d4 !important;
    box-shadow: 0 12px 28px rgba(6, 182, 212, 0.18) !important;
}

.theme-cyan:hover .service-icon-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(6, 182, 212, 0.3) !important;
}

.theme-cyan:hover .btn-outline-primary {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3) !important;
}

/* 3. Purple / Indigo Theme (Expert Consultation) */
.service-icon-purple {
    background: #ede9fe !important;
    color: #7c3aed !important;
}

.theme-purple {
    border-top: 3px solid #8b5cf6 !important;
}

.theme-purple:hover {
    border-color: #ddd6fe !important;
    border-top-color: #8b5cf6 !important;
    box-shadow: 0 12px 28px rgba(139, 92, 246, 0.18) !important;
}

.theme-purple:hover .service-icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3) !important;
}

.theme-purple:hover .btn-outline-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3) !important;
}

/* 4. Amber / Orange Theme (Online Shop) */
.service-icon-amber {
    background: #fef3c7 !important;
    color: #d97706 !important;
}

.theme-amber {
    border-top: 3px solid #f59e0b !important;
}

.theme-amber:hover {
    border-color: #fde68a !important;
    border-top-color: #f59e0b !important;
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.18) !important;
}

.theme-amber:hover .service-icon-amber {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3) !important;
}

.theme-amber:hover .btn-outline-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3) !important;
}

/* 5. Deep Teal Theme (Training & Knowledge) */
.service-icon-emerald {
    background: #ccfbf1 !important;
    color: #0d9488 !important;
}

.theme-emerald {
    border-top: 3px solid #0d9488 !important;
}

.theme-emerald:hover {
    border-color: #99f6e4 !important;
    border-top-color: #0d9488 !important;
    box-shadow: 0 12px 28px rgba(13, 148, 136, 0.18) !important;
}

.theme-emerald:hover .service-icon-emerald {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3) !important;
}

.theme-emerald:hover .btn-outline-primary {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3) !important;
}

/* 6. Ocean Blue Theme (Production Boost) */
.service-icon-blue {
    background: #e0f2fe !important;
    color: #0284c7 !important;
}

.theme-blue {
    border-top: 3px solid #0284c7 !important;
}

.theme-blue:hover {
    border-color: #bae6fd !important;
    border-top-color: #0284c7 !important;
    box-shadow: 0 12px 28px rgba(2, 132, 199, 0.18) !important;
}

.theme-blue:hover .service-icon-blue {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3) !important;
}

.theme-blue:hover .btn-outline-primary {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3) !important;
}

/* ── Product, Fish & Blog Cards ────────────────────────────── */
.card {
    background: #ffffff;
    border: 1px solid #e2e8f0 !important;
    border-radius: var(--card-radius) !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px var(--color-shadow-hover) !important;
    border-color: #cbd5e1 !important;
}

.card-header {
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    padding: 1rem 1.25rem;
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f1f5f9;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-img-wrapper img {
    transform: scale(1.06);
}

/* ── Popular Fish Cards (Exact Match to User Screenshot) ──────── */
.fish-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04) !important;
}

.fish-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 32px rgba(2, 132, 199, 0.15) !important;
    border-color: rgba(2, 132, 199, 0.3) !important;
}

/* 5 cards per row on xl screens — slightly narrower cards */
#popular-fish .row>div {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 1199.98px) {
    #popular-fish .row>div {
        width: 33.333%;
    }
}

@media (max-width: 767.98px) {
    #popular-fish .row>div {
        width: 50%;
    }
}

.fish-img-wrapper {
    height: 145px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 50%, #e8f5e9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.fish-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain !important;
    border-radius: 10px !important;
    padding: 0 !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.fish-card:hover .fish-img {
    transform: scale(1.04) !important;
}

.fish-badge {
    background: rgba(2, 132, 199, 0.9) !important;
    color: #ffffff !important;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    z-index: 5;
    letter-spacing: 0.2px;
}

.fish-card .card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.35rem !important;
    transition: color 0.2s ease;
}

.fish-card:hover .card-title {
    color: #0284c7;
}

.fish-card .card-text {
    font-size: 0.8rem;
    line-height: 1.45;
    color: #64748b;
    margin-bottom: 0.75rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Modern Fish Card CTA Button ────────────────────────────── */
.btn-fish-action {
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    color: #0284c7 !important;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.45rem 1rem;
    border-radius: 30px;
    border: 1px solid rgba(2, 132, 199, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 6px rgba(2, 132, 199, 0.05);
    text-decoration: none !important;
}

.fish-btn-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ffffff;
    color: #0284c7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    box-shadow: 0 2px 6px rgba(2, 132, 199, 0.15);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.btn-fish-action:hover,
.fish-card:hover .btn-fish-action {
    background: linear-gradient(135deg, #0284c7 0%, #0d9488 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35) !important;
    transform: translateY(-1px);
}

.btn-fish-action:hover .fish-btn-icon,
.fish-card:hover .btn-fish-action .fish-btn-icon {
    background: #ffffff !important;
    color: #0284c7 !important;
    transform: translateX(3px) scale(1.08);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Hero (Must be below base styles) */
@media (max-width: 991.98px) {
    #heroCarousel .carousel-item {
        height: 70vh;
        min-height: 480px;
    }
    .hero-text {
        padding: 0 0 0 2rem !important;
    }
    .title-line-1 {
        font-size: 2.2rem !important;
    }
    .title-line-2 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    #heroCarousel .carousel-item {
        height: 60vh !important;
        min-height: 420px !important;
        max-height: 540px !important;
        position: relative !important;
    }

    #heroCarousel img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        z-index: 1 !important;
    }

    .hero-overlay {
        background: linear-gradient(180deg, 
            rgba(15, 23, 42, 0.78) 0%, 
            rgba(15, 23, 42, 0.5) 35%, 
            rgba(15, 23, 42, 0.3) 65%, 
            rgba(15, 23, 42, 0.75) 100%
        ) !important;
        display: block !important;
        pointer-events: none !important;
    }

    .hero-content {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        height: 100% !important;
        min-height: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        padding-top: 1rem !important;
        padding-bottom: 2rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        z-index: 5 !important;
        width: 100% !important;
    }

    .hero-text {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        width: 100% !important;
    }

    .title-line-1 {
        font-size: clamp(1.15rem, 4.2vw, 1.45rem) !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        line-height: 1.25 !important;
        margin-top: 0.15rem !important;
        margin-bottom: 0.15rem !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 14px rgba(15, 23, 42, 0.9), 0 1px 3px rgba(0, 0, 0, 1) !important;
    }

    .title-line-2 {
        font-size: clamp(1.35rem, 5.2vw, 1.75rem) !important;
        font-weight: 900 !important;
        color: #ffb703 !important;
        line-height: 1.2 !important;
        margin-top: 0 !important;
        margin-bottom: 0.35rem !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 14px rgba(15, 23, 42, 0.9), 0 1px 3px rgba(0, 0, 0, 1) !important;
    }

    .hero-main-subtitle {
        font-size: clamp(0.78rem, 2.5vw, 0.88rem) !important;
        color: #ffffff !important;
        font-weight: 500 !important;
        line-height: 1.45 !important;
        margin-top: 0.3rem !important;
        margin-bottom: 0.65rem !important;
        max-width: 100% !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 1) !important;
    }

    .hero-btn-group {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 0.6rem !important;
        margin-top: 0.75rem !important;
        width: 100% !important;
    }

    .btn-hero-teal, .btn-hero-blue {
        padding: 0.55rem 1.25rem !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 10px !important;
        margin: 0 !important;
        white-space: nowrap !important;
        width: auto !important;
        max-width: 100% !important;
        flex: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35) !important;
    }

    .btn-hero-teal i, .btn-hero-blue i {
        margin-right: 0.4rem !important;
        font-size: 0.95rem !important;
    }

    .hero-stats-image-row {
        margin-top: 0.65rem !important;
        padding-top: 0.5rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.25) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-stat-image-item {
        flex: 1 !important;
        text-align: center !important;
        padding: 0 2px !important;
        margin: 0 !important;
        position: relative !important;
    }

    .hero-stat-image-item:not(:last-child)::after {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        right: 0 !important;
        top: 15% !important;
        height: 70% !important;
        width: 1px !important;
        background: rgba(255, 255, 255, 0.25) !important;
    }

    .stat-img-num {
        font-size: clamp(0.88rem, 3.4vw, 1.12rem) !important;
        font-weight: 800 !important;
        color: #ffb703 !important;
        line-height: 1.15 !important;
        white-space: nowrap !important;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9) !important;
    }

    .stat-img-lbl {
        font-size: clamp(0.62rem, 2.1vw, 0.72rem) !important;
        color: #e2e8f0 !important;
        font-weight: 500 !important;
        margin-top: 0.1rem !important;
        white-space: nowrap !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9) !important;
    }

    #heroCarousel .carousel-indicators {
        position: absolute !important;
        bottom: 4px !important;
        margin-bottom: 0 !important;
        z-index: 10 !important;
    }
}

@media (max-width: 360px) {
    .btn-hero-teal, .btn-hero-blue {
        padding: 0.35rem 0.35rem !important;
        font-size: 0.68rem !important;
    }
}

/* ── Modern Aquatic Primary CTA Button ─────────────────────── */
a.btn-aquatic-primary,
button.btn-aquatic-primary,
.btn-aquatic-primary {
    background: linear-gradient(135deg, #0284c7 0%, #0d9488 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    padding: 0.75rem 2.2rem !important;
    border-radius: 50px !important;
    border: none !important;
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.35) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    text-decoration: none !important;
    letter-spacing: 0.3px;
}

a.btn-aquatic-primary .btn-icon-circle,
button.btn-aquatic-primary .btn-icon-circle,
.btn-aquatic-primary .btn-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

a.btn-aquatic-primary:hover,
button.btn-aquatic-primary:hover,
.btn-aquatic-primary:hover {
    background: linear-gradient(135deg, #0369a1 0%, #0f766e 100%) !important;
    color: #ffffff !important;
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 16px 36px rgba(2, 132, 199, 0.45) !important;
}

a.btn-aquatic-primary:hover .btn-icon-circle,
button.btn-aquatic-primary:hover .btn-icon-circle,
.btn-aquatic-primary:hover .btn-icon-circle {
    background: #ffffff !important;
    color: #0284c7 !important;
    transform: translateX(5px) rotate(-10deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-fish-action i {
    transition: transform 0.25s ease;
}

.fish-card:hover .btn-fish-action {
    background: linear-gradient(135deg, #0284c7 0%, #0d9488 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
}

.fish-card:hover .btn-fish-action i {
    transform: translateX(4px);
}

/* ── Product Cards (Matching Popular Fish Section Design) ───── */
.product-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04) !important;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 32px rgba(2, 132, 199, 0.15) !important;
    border-color: rgba(2, 132, 199, 0.3) !important;
}

.product-card .card-img-wrapper {
    height: 165px !important;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    border-bottom: 1px solid #e2e8f0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.product-card img,
.product-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain !important;
    border-radius: 10px !important;
    padding: 0 !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.product-card:hover .product-img,
.product-card:hover img {
    transform: scale(1.04) !important;
}

.product-badge {
    color: #ffffff !important;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    z-index: 5;
    letter-spacing: 0.2px;
}

.badge-featured {
    background: rgba(2, 132, 199, 0.9) !important;
    position: absolute;
    top: 10px;
    left: 10px;
}

.badge-discount {
    background: rgba(217, 119, 6, 0.95) !important;
    position: absolute;
    top: 10px;
    right: 10px;
}

.product-card .card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.35rem !important;
    transition: color 0.2s ease;
}

.product-card:hover .card-title {
    color: #0284c7;
}

.product-card .card-text {
    font-size: 0.8rem;
    line-height: 1.45;
    color: #64748b;
    margin-bottom: 0.75rem !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-product-action {
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    color: #0284c7 !important;
    font-weight: 700;
    font-size: 0.825rem;
    padding: 0.45rem 0.9rem;
    border-radius: 30px;
    border: 1px solid rgba(2, 132, 199, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 6px rgba(2, 132, 199, 0.05);
    text-decoration: none !important;
}

.product-card:hover .btn-product-action {
    background: linear-gradient(135deg, #0284c7 0%, #0d9488 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35) !important;
}

.product-card:hover .btn-product-action .fish-btn-icon {
    background: #ffffff !important;
    color: #0284c7 !important;
    transform: translateX(3px) scale(1.08);
}

.btn-cart-quick {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0284c7 0%, #0d9488 100%);
    color: #ffffff !important;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.btn-cart-quick:hover {
    background: linear-gradient(135deg, #0369a1 0%, #0f766e 100%);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.45);
}

/* ── AI Step Cards & Workflow Box ───────────────────────── */
.ai-step-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.ai-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2) !important;
}

.ai-workflow-container {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2) !important;
}


/* ══════════════════════════════════════════════════════════
   CONSULTATION CTA SECTION — Light Modern Design
══════════════════════════════════════════════════════════ */
.consult-cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 50%, #ecfdf5 100%);
    overflow: hidden;
}

/* Floating decorative orbs */
.consult-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.22;
    animation: consultOrbFloat 8s ease-in-out infinite;
}

.consult-orb-1 {
    width: 380px;
    height: 380px;
    background: #bae6fd;
    top: -120px;
    left: -100px;
    animation-delay: 0s;
}

.consult-orb-2 {
    width: 260px;
    height: 260px;
    background: #a7f3d0;
    bottom: -60px;
    right: 100px;
    animation-delay: 2.5s;
}

.consult-orb-3 {
    width: 180px;
    height: 180px;
    background: #fde68a;
    top: 35%;
    right: -30px;
    animation-delay: 5s;
}

@keyframes consultOrbFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-28px) scale(1.07);
    }
}

/* Live badge */
.consult-badge {
    background: #ffffff;
    border: 1.5px solid #bae6fd;
    color: #0369a1;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 10px rgba(2, 132, 199, 0.08);
}

.consult-badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
    animation: consultPulse 1.8s ease infinite;
}

@keyframes consultPulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(16, 185, 129, 0.0);
    }
}

/* Headline */
.consult-headline {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Subtitle */
.consult-subtext {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    max-width: 480px;
}

/* Feature pills */
.consult-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.consult-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 1.5px solid #e0f2fe;
    color: #0369a1;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 0.95rem;
    border-radius: 30px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(2, 132, 199, 0.07);
}

.consult-feature-pill i {
    font-size: 0.9rem;
    color: #0284c7;
}

.consult-feature-pill:hover {
    background: #e0f2fe;
    border-color: #7dd3fc;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.13);
}

/* Primary CTA button */
.btn-consult-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.28);
}

.btn-consult-primary .btn-consult-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

.btn-consult-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 36px rgba(2, 132, 199, 0.38);
    color: #ffffff;
}

.btn-consult-primary:hover .btn-consult-arrow {
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(3px);
}

/* Ghost button */
.btn-consult-ghost {
    display: inline-flex;
    align-items: center;
    color: #0369a1;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1.5px solid #7dd3fc;
    transition: all 0.25s ease;
}

.btn-consult-ghost:hover {
    color: #0284c7;
    border-bottom-color: #0284c7;
    letter-spacing: 0.3px;
}

/* Stat cards grid */
.consult-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.consult-stat-card {
    background: #ffffff;
    border: 1.5px solid #e0f2fe;
    border-radius: 20px;
    padding: 1.4rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(2, 132, 199, 0.07);
}

.consult-stat-card:hover {
    border-color: #7dd3fc;
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(2, 132, 199, 0.14);
}

.consult-stat-wide {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
}

.consult-stat-response {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
}

.consult-stat-icon {
    width: 48px;
    height: 48px;
    background: #e0f2fe;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #0284c7;
    flex-shrink: 0;
}

.consult-icon-green {
    background: #d1fae5;
    color: #059669;
}

.consult-icon-amber {
    background: #fef3c7;
    color: #d97706;
}

.consult-stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.consult-stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}

.consult-lightning {
    font-size: 1.8rem;
    color: #d97706;
    margin-bottom: 0.25rem;
}

/* Progress bar */
.consult-progress-bar {
    width: 100%;
    height: 6px;
    background: #e0f2fe;
    border-radius: 10px;
    overflow: hidden;
}

.consult-progress-fill {
    width: 92%;
    height: 100%;
    background: linear-gradient(90deg, #0284c7, #059669);
    border-radius: 10px;
    animation: consultProgressLoad 1.8s ease forwards;
}

@keyframes consultProgressLoad {
    from {
        width: 0%;
    }

    to {
        width: 92%;
    }
}

@media (max-width: 991.98px) {
    .consult-cta-section {
        padding: 4rem 0;
    }

    .consult-headline {
        font-size: 2rem;
    }

    .consult-card-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .consult-card-grid {
        grid-template-columns: 1fr;
    }

    .consult-stat-wide {
        grid-column: auto;
    }

    .consult-headline {
        font-size: 1.7rem;
    }
}

/* ── Blog Section ────────────────────────────────────── */
.blog-section {
    background: linear-gradient(160deg, #f0f9ff 0%, #e0f2fe 60%, #ecfdf5 100%);
}

/* Modern Blog Card — matches reference image */
.blog-card-modern {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(2, 132, 199, 0.08);
    border: 1.5px solid #e0f2fe;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(2, 132, 199, 0.16);
    border-color: #7dd3fc;
}

/* Image wrapper */
.blog-card-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.blog-card-modern:hover .blog-card-img-wrap img {
    transform: scale(1.06);
}

/* Category tag overlaid on image */
.blog-card-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.28rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.3px;
    box-shadow: 0 3px 10px rgba(2, 132, 199, 0.35);
    z-index: 2;
}

/* Card body */
.blog-card-body {
    padding: 1.5rem 1.5rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Date meta */
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.blog-card-meta i {
    color: #0284c7;
}

/* Title */
.blog-card-title {
    font-size: 1.08rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin: 0 0 0.6rem;
    transition: color 0.2s ease;
}

.blog-card-modern:hover .blog-card-title {
    color: #0284c7;
}

/* Excerpt */
.blog-card-excerpt {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 1.3rem;
}

/* CTA pill button */
.blog-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.6rem 1.1rem 0.6rem 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.28);
    align-self: flex-end;
    margin-top: auto;
}

.blog-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.8rem;
    transition: all 0.25s ease;
}

.blog-card-btn:hover {
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(2, 132, 199, 0.4);
    transform: translateY(-1px);
}

.blog-card-btn:hover .blog-btn-icon {
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(3px);
}

/* Keep old styles for other pages */
.blog-card .card-img-wrapper {


    height: 210px;
}

.price-current {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-old {
    font-size: 0.9rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.blog-category-badge {
    display: inline-block;
    width: fit-content;
    background: #e0f2fe;
    color: #0284c7;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
}

.blog-meta {
    font-size: 0.825rem;
    color: #64748b;
}

/* ── Why Choose Us ───────────────────────────────────────── */
#why-us {
    background: linear-gradient(135deg, #0f172a 0%, #0f766e 45%, #0284c7 100%) !important;
    position: relative;
    overflow: hidden;
}

#why-us::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

#why-us::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.22) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    padding: 1.35rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.why-us-card:hover {
    transform: translateY(-5px) scale(1.01);
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(2, 132, 199, 0.22) !important;
    border-color: #38bdf8 !important;
}

.why-us-icon-wrapper {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease;
}

.why-us-card:hover .why-us-icon-wrapper {
    transform: scale(1.1) rotate(4deg);
}

.why-us-title {
    font-size: 1.025rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.why-us-desc {
    font-size: 0.825rem;
    line-height: 1.45;
    color: #64748b;
    margin-bottom: 0;
}

.why-us-stat-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 0.85rem 0.75rem;
    text-align: center;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.why-us-stat-badge:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.why-us-stat-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: #38bdf8;
    line-height: 1.1;
}

.why-us-stat-lbl {
    font-size: 0.75rem;
    color: #e2e8f0;
    margin-top: 0.25rem;
}

/* ── Contact Stat Cards ───────────────────────────────────── */
.stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.25rem 1.5rem;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: #38bdf8;
    box-shadow: 0 14px 30px var(--color-shadow-hover);
}

/* ── Badges & Tags ───────────────────────────────────────── */
.badge {
    font-weight: 600;
    padding: 0.4em 0.75em;
    border-radius: 6px;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.bg-secondary {
    background-color: #475569 !important;
}

.bg-success {
    background-color: #10b981 !important;
}

.bg-danger {
    background-color: #e11d48 !important;
}

.bg-warning {
    background-color: #f59e0b !important;
    color: #ffffff !important;
}

.bg-info {
    background-color: #0ea5e9 !important;
}

/* ── Footer Exact Styling (Matches Reference UI) ────────── */
.footer-exact-wrap {
    position: relative;
    width: 100%;
    margin-top: 4.5rem;
    overflow: hidden;
}

.footer-wave-top {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(1px);
    background: transparent;
}

.footer-wave-top svg {
    position: relative;
    display: block;
    width: 100%;
    height: 75px;
}

.footer-main-body {
    background-color: #011f35;
    background-image:
        linear-gradient(180deg, #011f35 0%, #001524 100%),
        url('../images/general/footer_bg_fish.png');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto, auto 100%;
    padding: 2.5rem 0 1.8rem;
    color: #94a3b8;
}

.footer-brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.3px;
}

.footer-brand-tagline {
    font-size: 0.76rem;
    color: #38bdf8;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.footer-bio-text {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.65;
    max-width: 320px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.12);
    border: 1.2px solid rgba(14, 165, 233, 0.25);
    color: #bae6fd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-social-btn:hover {
    background: #0284c7;
    border-color: #38bdf8;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
}

.footer-column-heading {
    font-size: 1.08rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.4rem;
}

.footer-column-heading i,
.footer-icon-svg {
    color: #38bdf8;
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.footer-contact-svg {
    color: #38bdf8;
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.footer-sub-icon svg {
    color: #38bdf8;
    width: 22px;
    height: 22px;
}

.footer-send-btn svg {
    width: 15px;
    height: 15px;
    color: #ffffff;
}

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

.footer-link-list li {
    margin-bottom: 0.75rem;
}

.footer-link-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    max-width: 140px;
}

.footer-link-list li a i {
    font-size: 0.75rem;
    color: #64748b;
    transition: transform 0.2s ease, color 0.2s ease;
}

.footer-link-list li a:hover {
    color: #ffffff;
    padding-left: 2px;
}

.footer-link-list li a:hover i {
    color: #38bdf8;
    transform: translateX(3px);
}

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

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.95rem;
    font-size: 0.88rem;
    color: #cbd5e1;
}

.footer-contact-list li i {
    color: #38bdf8;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact-list li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-list li a:hover {
    color: #38bdf8;
}

.footer-subscribe-box {
    background: rgba(255, 255, 255, 0.025);
    border: 1.2px solid rgba(14, 165, 233, 0.2);
    border-radius: 16px;
    padding: 1.4rem 1.4rem 1.3rem;
    backdrop-filter: blur(8px);
}

.footer-sub-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.footer-sub-icon {
    color: #38bdf8;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.footer-sub-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: #ffffff;
}

.footer-sub-desc {
    font-size: 0.82rem;
    color: #94a3b8;
    line-height: 1.55;
    margin-bottom: 1.1rem;
}

.footer-input-pill {
    position: relative;
    background: rgba(2, 38, 64, 0.6);
    border: 1.2px solid rgba(14, 165, 233, 0.3);
    border-radius: 50px;
    padding: 0.25rem 0.35rem 0.25rem 1rem;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.footer-input-pill:focus-within {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.footer-input-field {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
    font-size: 0.84rem;
    width: 100%;
    padding: 0.4rem 0.2rem;
}

.footer-input-field::placeholder {
    color: #64748b;
    font-size: 0.82rem;
}

.footer-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06b6d4 0%, #0284c7 100%);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(6, 182, 212, 0.35);
}

.footer-send-btn:hover {
    transform: scale(1.08);
    background: linear-gradient(135deg, #0891b2 0%, #0369a1 100%);
}

.footer-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    margin-top: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.86rem;
    color: #94a3b8;
}

.footer-bottom-copy {
    color: #94a3b8;
}

.footer-powered-divider {
    margin: 0 0.5rem;
    opacity: 0.4;
}

.footer-powered-brand {
    color: #10b981;
    font-weight: 700;
}

/* ── Utilities ───────────────────────────────────────────── */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bg-primary-gradient {
    background: var(--grad-primary) !important;
    color: #ffffff;
}

/* ── Banner-Style Green Search Modal (Matching Reference UI) ──────── */
.modal-backdrop.show {
    background-color: rgba(15, 23, 42, 0.7) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.banner-modal-content {
    background: transparent !important;
    border: none !important;
    position: relative;
    box-shadow: none !important;
}

.banner-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 10;
    opacity: 0.8;
    filter: invert(1) grayscale(100%) brightness(200%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.banner-modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ── Light Cyan Search Modal Theme ────────────────────────────────── */
.modal-backdrop.show {
    background-color: rgba(15, 23, 42, 0.45) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
}

.banner-modal-content {
    background: transparent !important;
    border: none !important;
    position: relative;
    box-shadow: none !important;
}

.banner-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    z-index: 10;
    opacity: 0.65;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.banner-modal-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.banner-search-container {
    background: linear-gradient(135deg, #ffffff 0%, #ecfeff 50%, #cffafe 100%) !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.16) !important;
    position: relative;
    overflow: hidden;
    border: 1px solid #a5f3fc !important;
}

.banner-search-title {
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    color: #083344 !important;
    font-weight: 700;
}

.banner-search-subtitle {
    font-size: 0.925rem;
    color: #155e75 !important;
}

/* Category Icons Row */
.banner-cat-row {
    scrollbar-width: none;
}

.banner-cat-row::-webkit-scrollbar {
    display: none;
}

.banner-cat-item {
    background: transparent;
    border: 1px solid transparent;
    color: #334155;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.banner-cat-item:hover {
    color: #0891b2;
    background: rgba(207, 250, 254, 0.6);
    transform: translateY(-2px);
}

.banner-cat-item.active {
    color: #0891b2;
    background: #cffafe;
    border-color: #67e8f9;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.15);
}

.banner-cat-icon {
    font-size: 1.65rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0891b2;
}

.banner-cat-item.active .banner-cat-icon {
    color: #0891b2;
    transform: scale(1.1);
}

.banner-cat-label {
    font-size: 0.85rem;
    font-weight: 600;
}

/* White & Light Cyan Search Bar */
.banner-search-input-pill {
    background: #ffffff;
    border-radius: 20px;
    padding: 6px 6px 6px 18px;
    display: flex;
    align-items: center;
    border: 2px solid #a5f3fc;
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.08);
    transition: all 0.25s ease;
}

.banner-search-input-pill:focus-within {
    border-color: #06b6d4;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.18), 0 0 0 4px rgba(103, 232, 249, 0.35);
}

.banner-search-icon {
    color: #0891b2;
    font-size: 1.25rem;
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.banner-search-input {
    background: transparent !important;
    border: none !important;
    padding: 0.65rem 0 !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    color: #083344 !important;
    box-shadow: none !important;
}

.banner-search-input::placeholder {
    color: #64748b;
    font-weight: 400;
}

/* Cyan Search Submit Button */
.banner-search-submit-btn {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 0.65rem 1.5rem !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 14px rgba(6, 182, 212, 0.35) !important;
    transition: all 0.2s ease !important;
    white-space: nowrap;
}

.banner-search-submit-btn:hover {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%) !important;
    color: #ffffff !important;
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(6, 182, 212, 0.45) !important;
}

/* Popular Search Tags & Live Results */
.banner-search-tag {
    background: #ecfeff;
    color: #0e7490;
    border: 1px solid #a5f3fc;
    text-decoration: none;
    font-size: 0.825rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.banner-search-tag:hover {
    background: #0891b2;
    color: #ffffff;
    border-color: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
}

.banner-count-badge {
    background: #cffafe !important;
    color: #0891b2 !important;
    font-size: 0.75rem !important;
    padding: 0.35rem 0.75rem !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
}

.banner-results-scroll::-webkit-scrollbar {
    width: 5px;
}

.banner-results-scroll::-webkit-scrollbar-track {
    background: #ecfeff;
    border-radius: 10px;
}

.banner-results-scroll::-webkit-scrollbar-thumb {
    background: #a5f3fc;
    border-radius: 10px;
}

/* Live Search Result Cards on Light Cyan Theme */
.banner-result-card {
    background: #ffffff;
    border: 1px solid #cffafe;
    border-radius: 14px;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #083344;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.05);
}

.banner-result-card:hover,
.banner-result-card.search-item-selected {
    background: #ecfeff;
    border-color: #06b6d4;
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.2);
    outline: none;
}

/* Dynamic Keyword Suggestion Pills */
.search-suggestion-pill {
    background: #ffffff;
    color: #0891b2;
    border: 1px solid #a5f3fc;
    border-radius: 20px;
    padding: 0.35rem 0.85rem;
    font-size: 0.825rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(6, 182, 212, 0.06);
}

.search-suggestion-pill:hover,
.search-suggestion-pill.search-item-selected {
    background: #0891b2;
    color: #ffffff;
    border-color: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
}

/* Query Highlight in Suggestive Search */
.search-highlight {
    background: #cffafe;
    color: #0e7490;
    font-weight: 700;
    border-radius: 3px;
    padding: 0 3px;
}

.flat-result-thumb {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #a5f3fc;
}

.flat-result-icon-fallback {
    width: 44px;
    height: 44px;
    background: #ecfeff;
    border: 1px solid #a5f3fc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #0891b2;
}

/* ── Modern Auth Page Styles (Login & Register) ────── */
.auth-page-section {
    min-height: calc(100vh - 180px);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.45) 0%, rgba(2, 132, 199, 0.35) 100%),
        url('../images/auth/fish_farming_bg.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 1rem;
    position: relative;
    overflow: hidden;
}

.auth-page-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.auth-page-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.22) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.auth-card-wrapper {
    width: 100%;
    max-width: 1020px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(2, 132, 199, 0.12);
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 1px solid #bae6fd;
}

.auth-banner-side {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.60) 50%, rgba(5, 150, 105, 0.25) 100%),
        url('../images/auth/bangladeshi_fisherman_boat.jpg') center/cover no-repeat !important;
    padding: 3.5rem 2.5rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.auth-banner-side::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23059669' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.auth-banner-brand {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.auth-banner-subbrand {
    color: #fbbf24 !important;
    /* Warm Amber Accent */
}

.auth-banner-badge {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.35) 0%, rgba(2, 132, 199, 0.35) 100%) !important;
    border: 1px solid rgba(52, 211, 153, 0.45) !important;
    color: #ffffff !important;
    backdrop-filter: blur(8px);
}

.auth-banner-heading {
    color: #ffffff;
    text-shadow: 0 3px 12px rgba(15, 23, 42, 0.9);
}

.auth-banner-heading span {
    color: #fbbf24;
    /* Theme Warm Amber Accent */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.auth-banner-desc {
    color: rgba(255, 255, 255, 0.92) !important;
    text-shadow: 0 1px 4px rgba(15, 23, 42, 0.8);
}

.auth-feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.auth-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.auth-feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
    /* Teal to Ocean Blue */
    border: 1px solid #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.auth-form-side {
    padding: 3.5rem 2.75rem;
    background: #ffffff;
}

.auth-tab-pills {
    background: #f1f5f9;
    padding: 5px;
    border-radius: 30px;
    display: flex;
    gap: 5px;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.auth-tab-pill {
    flex: 1;
    text-align: center;
    padding: 0.65rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-tab-pill.active {
    background: linear-gradient(135deg, #0d9488, #0284c7);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}

.auth-input-group {
    position: relative;
}

.auth-input-group .input-group-text {
    background: #f0f9ff;
    border-color: #cbd5e1;
    color: #0284c7;
    font-size: 1.1rem;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.auth-input-group .form-control {
    background: #f8fafc;
    border-color: #cbd5e1;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: #0f172a;
}

.auth-input-group .form-control:focus {
    background: #ffffff;
    border-color: #0284c7;
    box-shadow: 0 0 0 0.25rem rgba(2, 132, 199, 0.15);
}

.btn-auth-submit {
    background: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.2);
}

.btn-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.3);
    color: #ffffff;
}

/* ── FAQ Section Modern Styling ──────────────────────── */
.faq-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f0f9ff 100%);
}

.modern-accordion .faq-card {
    background: #ffffff;
    border-radius: 16px !important;
    box-shadow: 0 4px 16px rgba(2, 132, 199, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(2, 132, 199, 0.08) !important;
    overflow: hidden;
}

.modern-accordion .faq-card:hover {
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.12);
    border-color: rgba(2, 132, 199, 0.2) !important;
    transform: translateY(-2px);
}

.modern-accordion .accordion-button {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    background-color: transparent !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: none;
}

.modern-accordion .accordion-button:not(.collapsed) {
    color: #0284c7;
    background: rgba(240, 249, 255, 0.5) !important;
}

.faq-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0284c7;
    border-radius: 50%;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.modern-accordion .accordion-button:not(.collapsed) .faq-icon-wrap {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.faq-question-text {
    flex-grow: 1;
}

.modern-accordion .accordion-button::after {
    background-size: 1rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-accordion .accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    padding-left: 4.5rem;
    /* align text with question */
    background: rgba(240, 249, 255, 0.5);
}

.faq-answer-text {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── Global UI Utilities (Phase 1) ────────────────────────────── */

.modern-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(2, 132, 199, 0.1);
}

.form-control-modern {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: #334155;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02) inset;
}

.form-control-modern:focus {
    background: #ffffff;
    border-color: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
    outline: none;
}

.form-select-modern {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 2.25rem 0.75rem 1rem;
    font-size: 0.95rem;
    color: #334155;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02) inset;
}

.form-select-modern:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
    outline: none;
}

.btn-modern {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
    color: white;
}

/* ── Premium Sidebar & Page UI ──────────────────────────────── */

.premium-sidebar {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.03);
    position: sticky;
    top: 90px;
}

.premium-sidebar-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.premium-sidebar-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    margin-bottom: 0.5rem;
    border-radius: 12px;
    color: #475569;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: 1px solid transparent;
}

.premium-sidebar-link:hover {
    background: #f8fafc;
    color: #0284c7;
    transform: translateX(4px);
}

.premium-sidebar-link.active {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0369a1;
    border-color: rgba(2, 132, 199, 0.1);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08);
}

.premium-sidebar-link i {
    font-size: 1.1rem;
    margin-right: 0.75rem;
    transition: transform 0.2s ease;
}

.premium-sidebar-link:hover i {
    transform: scale(1.1);
}

.premium-toolbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.04);
}

/ *   = = = = = =   P r o d u c t s   P a g e   R e d e s i g n   = = = = = =   * /     

/* ── Hero Mobile Layout (Matching User Screenshot) ─────────────── */
@media (max-width: 768px) {
    #heroCarousel .carousel-item {
        height: 60vh !important;
        min-height: 420px !important;
        max-height: 540px !important;
        position: relative !important;
    }

    #heroCarousel img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        z-index: 1 !important;
    }

    .hero-overlay {
        background: linear-gradient(180deg, 
            rgba(15, 23, 42, 0.78) 0%, 
            rgba(15, 23, 42, 0.5) 35%, 
            rgba(15, 23, 42, 0.3) 65%, 
            rgba(15, 23, 42, 0.75) 100%
        ) !important;
        display: block !important;
        pointer-events: none !important;
    }

    .hero-content {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        height: 100% !important;
        min-height: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        padding-top: 1rem !important;
        padding-bottom: 2rem !important;
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        z-index: 5 !important;
        width: 100% !important;
    }

    .hero-text {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        width: 100% !important;
    }

    .title-line-1 {
        font-size: clamp(1.45rem, 5.2vw, 1.85rem) !important;
        font-weight: 800 !important;
        color: #ffffff !important;
        line-height: 1.25 !important;
        margin-top: 0.15rem !important;
        margin-bottom: 0.25rem !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 14px rgba(15, 23, 42, 0.9), 0 1px 3px rgba(0, 0, 0, 1) !important;
    }

    .title-line-2 {
        font-size: clamp(1.75rem, 6.5vw, 2.25rem) !important;
        font-weight: 900 !important;
        color: #ffb703 !important;
        line-height: 1.2 !important;
        margin-top: 0 !important;
        margin-bottom: 0.45rem !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 14px rgba(15, 23, 42, 0.9), 0 1px 3px rgba(0, 0, 0, 1) !important;
    }

    .hero-main-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.02rem) !important;
        color: #ffffff !important;
        font-weight: 500 !important;
        line-height: 1.5 !important;
        margin-top: 0.4rem !important;
        margin-bottom: 0.85rem !important;
        max-width: 100% !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 1) !important;
    }

    .hero-btn-group {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 0.6rem !important;
        margin-top: 0.75rem !important;
        width: 100% !important;
    }

    .btn-hero-teal, .btn-hero-blue {
        padding: 0.6rem 1.4rem !important;
        font-size: 0.92rem !important;
        font-weight: 700 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: left !important;
        border-radius: 10px !important;
        margin: 0 !important;
        white-space: nowrap !important;
        width: auto !important;
        max-width: 100% !important;
        flex: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35) !important;
    }

    .btn-hero-teal i, .btn-hero-blue i {
        margin-right: 0.4rem !important;
        font-size: 0.95rem !important;
    }

    .hero-stats-image-row {
        margin-top: 0.85rem !important;
        padding-top: 0.6rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.25) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero-stat-image-item {
        flex: 1 !important;
        text-align: center !important;
        padding: 0 2px !important;
        margin: 0 !important;
        position: relative !important;
    }

    .hero-stat-image-item:not(:last-child)::after {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        right: 0 !important;
        top: 15% !important;
        height: 70% !important;
        width: 1px !important;
        background: rgba(255, 255, 255, 0.25) !important;
    }

    .stat-img-num {
        font-size: clamp(1.05rem, 4vw, 1.32rem) !important;
        font-weight: 800 !important;
        color: #ffb703 !important;
        line-height: 1.15 !important;
        white-space: nowrap !important;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9) !important;
    }

    .stat-img-lbl {
        font-size: clamp(0.72rem, 2.6vw, 0.82rem) !important;
        color: #e2e8f0 !important;
        font-weight: 500 !important;
        margin-top: 0.1rem !important;
        white-space: nowrap !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9) !important;
    }

    #heroCarousel .carousel-indicators {
        position: absolute !important;
        bottom: 4px !important;
        margin-bottom: 0 !important;
        z-index: 10 !important;
    }
}