:root {
    --primary-color: #16A0BB;
    --primary-dark: #128299;
    --secondary-color: #2D2D2D;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Navbar - White & Clean */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: #ffffff;
    /* White Background */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Soft Shadow */
    padding: 0;
    transition: all 0.3s ease;
}

.navbar {
    padding: 12px 0;
    box-shadow: none;
    background: transparent;
}

.navbar-brand img {
    height: auto;
    max-width: 200px;
    /* REQUESTED 200px */
    max-height: 60px;
    /* Increased height allowance */
    object-fit: contain;
}

/* Menu Styling */
.navbar-nav {
    gap: 15px;
}

.navbar-nav li {
    list-style: none;
}

.navbar-nav li a {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--secondary-color);
    /* Dark Text */
    font-size: 0.95rem;
    padding: 8px 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 50px;
}

/* Active / Hover State - Solid Pill */
.navbar-nav li a:hover,
.navbar-nav li.current-menu-item a,
.navbar-nav li.active a {
    color: #fff;
    background: var(--primary-color);
    /* Full Color Banner Effect */
    box-shadow: 0 4px 10px rgba(22, 160, 187, 0.3);
}

/* Primary Button Override */
.header-actions .btn-outline-light {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.header-actions .btn-outline-light:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Page Banner / Header */
.page-header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 0;
    margin-bottom: 50px;
    background-color: var(--secondary-color);
}

.site-branding {
    .custom-logo-link {
        max-width: 200px;
        display: inline-block;

        img {
            width: 100%;
            height: auto;
        }
    }
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* "Color Full" - Strong Primary Gradient Overlay */
    background: linear-gradient(135deg, rgba(22, 160, 187, 0.95), rgba(45, 45, 45, 0.8));
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: #fff;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.hero-section {
    min-height: 90vh;
    /* Vibrant Tone for Home Banner */
    background: radial-gradient(circle at top right, rgba(22, 160, 187, 0.1) 0%, #ffffff 60%, #f0fdf4 100%);
    display: flex;
    align-items: center;
}

.hero-content h1 {
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Services Cards - Premium Lift */
.service-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.animate-hover:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.service-card .icon-circle {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(22, 160, 187, 0.3);
}

/* Product Cards */
.product-card {
    border: none;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 80px 0 30px;
}

.site-footer h5 {
    color: #fff;
    margin-bottom: 20px;
}

.site-footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}


/* Gallery Styles */
.gallery-item {
    cursor: pointer;
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}