/* Color Palette */
:root {
    --dark-blue: #0B132B;
    --light-dark: #1C2541;
    --cyan: #00E5FF;
    --cyan-hover: #00B3CC;
    --bs-secondary-color: white;
}

body {
    background-color: var(--light-dark);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Utilities */
.text-cyan { color: var(--cyan) !important; }
.bg-dark-blue { background-color: var(--dark-blue) !important; }
.bg-light-dark { background-color: var(--light-dark) !important; }
.border-cyan { border-color: var(--cyan) !important; }

/* Buttons */
.btn-cyan {
    background-color: var(--cyan);
    color: var(--dark-blue);
    font-weight: bold;
    border: none;
    transition: 0.3s ease;
}
.btn-cyan:hover {
    background-color: var(--cyan-hover);
    color: #fff;
}
.btn-outline-cyan {
    border: 1px solid var(--cyan);
    color: var(--cyan);
    transition: 0.3s ease;
}
.btn-outline-cyan:hover {
    background-color: var(--cyan);
    color: var(--dark-blue);
}

/* Header & Mega Menu */
.industrial-header {
    background-color: rgba(11, 19, 43, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--cyan);
}
.mega-menu {
    border-top: 2px solid var(--cyan);
}
.mega-menu .dropdown-item:hover {
    background-color: transparent;
    color: var(--cyan) !important;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    height: 70vh;
    background: linear-gradient(rgba(11, 19, 43, 0.8), rgba(11, 19, 43, 0.9)), url('https://images.unsplash.com/photo-1565514158740-064f34bd6cfd?q=80&w=2070&auto=format&fit=crop') center/cover;
    border-bottom: 3px solid var(--cyan);
}

/* Product Cards */
.product-card {
    border: 1px solid #2A365C;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyan);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

/* Color Palette Variables */
:root {
    --dark-blue: #0B132B;
    --cyan: #00E5FF;
}

/* Header Base Styling */
.industrial-header {
    background-color: rgba(11, 19, 43, 0.95); /* Dark blue with slight transparency */
    backdrop-filter: blur(10px); /* Modern blur effect */
    border-bottom: 2px solid var(--cyan);
}

/* Mega Menu Container */
.mega-menu {
    border-top: 2px solid var(--cyan);
    border-radius: 0 0 8px 8px; /* Sharp top, rounded bottom */
}

/* Mega Menu Links Hover Effect */
.mega-menu .dropdown-item {
    transition: all 0.3s ease;
    padding-left: 0.5rem;
}

.mega-menu .dropdown-item:hover {
    background-color: transparent;
    color: var(--cyan) !important;
    padding-left: 1.2rem; /* Slide right on hover */
}

/* Utility classes used in HTML */
.text-cyan { color: var(--cyan) !important; }
.bg-dark-blue { background-color: var(--dark-blue) !important; }
.border-cyan { border-color: var(--cyan) !important; }

/* Header Quote Button */
.btn-outline-cyan {
    border: 1px solid var(--cyan);
    color: var(--cyan);
    transition: 0.3s ease;
    font-weight: 500;
}
.btn-outline-cyan:hover {
    background-color: var(--cyan);
    color: var(--dark-blue);
}

/* Footer Styles */
.footer-section {
    background-color: var(--dark-blue);
    font-size: 0.95rem;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--cyan) !important;
    padding-left: 5px;
}

.contact-info a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--cyan) !important;
}

/* Social Media Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--cyan);
    border-radius: 50%;
    margin-right: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--cyan);
    color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 229, 255, 0.3);
}

/* Legal Links */
.legal-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--cyan);
}

.legal-links .list-inline-item {
    color: #4a5568;
}

/* Product Image Gallery Styles */
.product-gallery-main {
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-img {
    max-height: 350px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-img:hover {
    transform: scale(1.03);
}

.thumb-box {
    cursor: pointer;
    transition: all 0.2s ease;
}

.thumb-box:hover, .thumb-box.active {
    border-color: var(--cyan) !important;
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.thumb-box img {
    height: 70px;
    width: 100%;
    object-fit: cover;
}

/* Industrial Tabs Styling */
.industrial-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.industrial-tabs .nav-link:hover {
    color: var(--cyan) !important;
    border-bottom: 2px solid rgba(0, 229, 255, 0.5);
}

.industrial-tabs .nav-link.active {
    background-color: transparent !important;
    color: var(--cyan) !important;
    border-bottom: 2px solid var(--cyan) !important;
}

/* Breadcrumb override */
.breadcrumb-item + .breadcrumb-item::before {
    color: #6c757d;
}