/* Header start*/
:root {
    --primary-blue: #42b6ff;
    /* The sky blue in image */
    --brand-red: #e61e25;
    /* The red in VB Tech */
}

/* Skewed Blue Background for Logo */
.navbar-brand-container {
    background-color: var(--primary-blue);
    position: relative;
    padding-right: 50px;
    height: 100%;
    min-height: 90px;
}

.search-block {
    width: 33rem;
}

.navbar-brand-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    width: 60px;
    height: 100%;
    background-color: var(--primary-blue);
    transform: skewX(-20deg);
    z-index: 1;
}

.btn-quote {
    border-radius: 25px;
}

.navbar-brand {
    z-index: 2;
}

/* Search Bar Styling */
.search-bar .form-control {
    background: #f1f1f1;
    border: none;
    height: 45px;
    padding-left: 20px;
    z-index: 1;
}

.rounded-pill-start {
    border-radius: 50px 0 0 50px !important;
}

.rounded-pill-end {
    border-radius: 0 50px 50px 0 !important;
}

/* Theme Colors */


.text-danger {
    color: var(--brand-red) !important;
}

/* Active Nav Link Underline */
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-blue);
    border-bottom: 3px solid var(--brand-red);
}

/* Header end*/
.hero-img {
    height: 85vh;
    object-fit: cover;
}

/* Modern Glass Box Overlay */
.hero-content-box {
    background: rgba(0, 0, 0, 0.4);
    /* Darker semi-transparent for readability */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
}

/* Fixed caption alignment - Bootstrap 5 override */
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

/* Category Cards Aesthetic */
.category-card {
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.1) !important;
    border-color: var(--bs-primary);
}

.category-hover-line {
    width: 0;
    height: 3px;
    background: var(--bs-primary);
    transition: width 0.3s ease;
}

.category-card:hover .category-hover-line {
    width: 50px;
}

@media (max-width: 768px) {
    .hero-img {
        height: 60vh;
    }

    .display-3 {
        font-size: 2rem;
    }

    .carousel-caption {
        background: rgba(0, 0, 0, 0.5);
    }
}

/* footer Start */
.footer-corporate {
    background-color: #1a1d20;
    /* Deep Executive Charcoal */
    color: #adb5bd;
    font-family: 'Inter', sans-serif;
}

.footer-heading {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -1px;
}

.link-underlined::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--bs-primary);
}

.footer-nav-link {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-nav-link:hover {
    color: #ffffff;
    padding-left: 8px;
}

.business-hours {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--bs-primary);
    color: white;
    transform: translateY(-3px);
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 12px 20px !important;
}

.newsletter-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

.btn-newsletter {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border-radius: 8px !important;
    padding: 0 15px !important;
}

.copyright-section {
    background-color: #15181b;
}

.text-light-50 {
    color: rgba(255, 255, 255, 0.6);
}

/* footer End */

/* About Page start */
.grayscale-filter div {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
    font-weight: 800;
    letter-spacing: 2px;
}

.grayscale-filter div:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.page-header {
    border-bottom: 8px solid var(--primary);
    /* Uses your primary blue/red */
}

/* Glass Box Effect */
.header-glass-box {
    background: rgba(26, 26, 26, 0.75);
    /* Dark semi-transparent */
    backdrop-filter: blur(15px);
    /* This creates the frosted glass look */
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 650px;
}

/* Page Header Background - Ensure you have a clear image here for the blur to look good */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url('../img/carousel-1.jpg') center center no-repeat;
    background-size: cover;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Blue Button in Image */
.btn-header-blue {
    background-color: #42b6ff;
    color: white;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-header-blue:hover {
    background-color: #3596d4;
    color: white;
    transform: translateY(-2px);
}

/* Outline Button in Image */
.btn-header-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-weight: 600;
    transition: 0.3s;
}

.btn-header-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
}

/* EST Tag Styling */
.bg-danger {
    background-color: #e61e25 !important;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Container adjustments to remove whitespace */
.page-header-new {
    overflow: hidden;
    background-color: #0c0e1a;
    /* Matches the dark navy background in your image */
}

/* Specific background color for the text side */
.bg-dark-blue {
    background-color: #0c0e1a;
    /* Deep Navy/Black background */
}

/* Ensure the image block fills the height on large screens */
@media (min-width: 992px) {
    .header-image-wrapper {
        min-height: 450px;
    }
}

/* Fix for the breadcrumb slash color */
.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Design Polish */
.text-danger {
    color: #e61e25 !important;
    /* VB Tech Red */
}

.display-3 {
    letter-spacing: -1px;
}

/* About Page end */

/* Product Catalogue Start */
/* Product Catalogue Styles */

/* Sidebar Category List */
.category-list li a {
    display: block;
    padding: 10px 15px;
    color: #444;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    margin-bottom: 5px;
    font-weight: 500;
}

.category-list li a:hover, 
.category-list li a.active {
    background-color: var(--vb-blue);
    color: white;
}

/* Product Card Design */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--vb-blue);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.05);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    z-index: 2;
}

.product-img {
    background: #f9f9f9;
    padding: 40px;
    text-align: center;
}

.product-img img {
    max-height: 180px;
    transition: 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.spec-preview {
    background: #f8f9fa;
    padding: 15px 10px;
    border-radius: 8px;
}

.spec-preview span {
    font-size: 14px;
    color: var(--vb-dark);
}

.spec-preview small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Checkbox Color */
.form-check-input:checked {
    background-color: var(--vb-red);
    border-color: var(--vb-red);
}
/* Product Catalogue End */