  body { font-family: system-ui; }
:root {
    /* Color Palette */
    --orange: #f39c12; --orange-bg: #fff7eb;
    --blue: #3498db; --blue-bg: #ebf5fb;
    --green: #2ecc71; --green-bg: #eafaf1;
    --purple: #9b59b6; --purple-bg: #f4ecf7;
    --yellow: #f1c40f; --yellow-bg: #fef9e7;
    --teal: #1abc9c; --teal-bg: #e8f8f5;
}
        .hero-section {
            background: linear-gradient(135deg, #aa5c5c -22%, #64373961 100%), url(banner1.jpg);
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            color: white;
            display: flex;
            flex-direction: column;
        }
        h2.stat-number.plus:after {
            content: '+';
        }

        .navbar-brand { font-weight: 800; font-size: 1.5rem; }
        .nav-link { color: #015a9f !important; font-weight: 500; margin: 0 10px; }

        .badge-trusted {
            background-color: rgb(9 93 159);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            padding: 8px 20px;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 2rem;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.1;
        }

        .text-teal { color: #095d9f; }

        .hero-description {
            max-width: 800px;
            margin: 1.5rem auto;
            font-size: 1.15rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .btn-teal {
            background-color: #095d9f;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            border: none;
        }

        .btn-outline-white {
            border: 1px solid rgba(255, 255, 255, 0.5);
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
        }
		.stat-card {
    background: rgb(226 226 226);
    backdrop-filter: blur(10px);          /* The "Frosted Glass" effect */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: #095d9f;
    border: 2px solid #095d9f;
}
.stat-card:hover h2,.stat-card:hover .stat-label {
    color:#fff;
}
h4.card-title {
    font-size: 17px;
    font-weight: 500 !important;
}
.stat-number {
    color: #095d9f; /* Matching the teal from the title */
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-label {
    color: rgb(9 93 159);
    font-size: 0.9rem;
    text-transform: capitalize;
    margin-bottom: 0;
}

/* Ensure the hero-section uses flex column to push counters to bottom */
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* Custom Colors */
.text-teal { color: #095d9f !important; }

/* Card Styling */
.product-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Feature List */
.product-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.product-features i {
    color: #095d9f;
    margin-right: 10px;
    font-size: 0.9rem;
    margin-top: 3px;
}

/* Download Buttons */
.btn-download {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #495057;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 15px;
    text-align: left;
    border-radius: 8px;
}

.btn-download:hover {
    background-color: #e2e6ea;
    color: #212529;
}

.ls-1 {
    letter-spacing: 1px;
    font-size: 0.75rem;
}
/* Card Styling */
.industry-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
}

.industry-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #095d9f;
}

/* Icon Box Basics */
.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Specific Icon Colors from Screenshot */
.icon-orange { background: #fff4e6; color: #fd7e14; }
.icon-blue   { background: #e7f5ff; color: #228be6; }
.icon-green  { background: #ebfbee; color: #40c057; }
.icon-purple { background: #f3f0ff; color: #7950f2; }
.icon-yellow { background: #fff9db; color: #fab005; }
.icon-teal   { background: #e6fcf5; color: #0ca678; }

.industry-card h5 {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.cta-banner {
    /* Gradient matches the blue-to-teal transition in the screenshot */
    background: linear-gradient(135deg, #005bc5 0%, #e21e25 100%);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 91, 197, 0.2);
}

/* Optional: Adding a subtle "gloss" or "glow" effect */
.cta-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    z-index: 0;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.btn-light:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
    transition: all 0.2s ease;
}
/* Card Designs */
.info-card, .form-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
}

.hours-card {
    /* Matching the gradient from the previous CTA section */
    background: linear-gradient(135deg, #005bc5 0%, #e21e25 100%);
    border-radius: 16px;
}

/* Icon Style */
.contact-icon {
    width: 40px;
    height: 40px;
    background: #e7f5ff;
    color: #007bff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Form Controls */
.form-control, .form-select {
    border: 1px solid #eef2f6;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    border-color: #095d9f;
    box-shadow: 0 0 0 0.25rem rgba(0, 209, 193, 0.1);
}

.btn-primary {
    background-color: #0056b3;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #004494;
    transform: translateY(-2px);
}
.footer-section {
    background-color: #005aa0; /* Primary deep blue */
        background: linear-gradient(135deg, #000000 0%, #0e0060 100%);
}
.footer-section h5:after {
    text-decoration: underline;
    content: '';
    min-width: 200px;
    height: 5px;
    background: linear-gradient(135deg, #005bc5 0%, #e21e25 100%);
    display: block;
    margin-top: 5px;
}
.footer-section h5 {
    color: #ffffff;
    text-shadow: 1px 1px 2px #ff0014;
}
.footer-section h6 {
    color: #ffffff;
    text-shadow: 1px 1px 2px #ff0014;
}
.footer-section h6:after {
    text-decoration: underline;
    content: '';
    min-width: 200px;
    height: 5px;
    background: linear-gradient(135deg, #005bc5 0%, #e21e25 100%);
    display: block;
    margin-top: 5px;
}
.pe-logo-small {
    background-color: #007bff;
    color: white;
    font-weight: 800;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.italic-quote {
    font-style: italic;
    font-family: serif; /* Adds a touch of elegance to the slogan */
    letter-spacing: 0.5px;
}

/* Ensure icons are slightly muted to match screenshot */
.contact-links i {
    font-size: 0.9rem;
}
.navbar-brand {
    padding: 0;
    line-height: 1;
}

/* The Blue Square behind PE */
.logo-box {
    background-color: #0d6efd; /* Bootstrap primary blue */
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

/* Container for the stacked text */
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* "Polymers" Styling */
.brand-main {
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    line-height: 27px; /* Pulls the sub-text closer */
}

/* "ENTERPRISES" Styling */
.brand-sub {
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
}
ul.sub-menu.dropdown {
    display: none;
	    position: absolute;
    background: #fff;
	padding: 0;
    border-radius: 5px;
    z-index: 9999;
}
li.nav-item:hover ul.sub-menu.dropdown {
    display: block;
}
ul.sub-menu.dropdown .nav-item a {
    color: #015a9f !important;
}
ul.sub-menu.dropdown li.nav-item {
    border-bottom: 1px solid #d4d4d4;
}
img.logo {
    max-width: 225px;
}
nav.navbar.navbar-expand-lg {
    background: #ffffff;
}
.btn-outline-light {
    background: #095d9f;
    --bs-btn-color: #fff;
    --bs-btn-border-color: #c9c9c9;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #f8f9fa;
    --bs-btn-hover-border-color: #f8f9fa;
    --bs-btn-focus-shadow-rgb: 248, 249, 250;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #015a9f;
    --bs-btn-active-border-color: #f8f9fa;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #f8f9fa;
    --bs-btn-disabled-bg: #095d9f;
    --bs-btn-disabled-border-color: #f8f9fa;
    --bs-gradient: none;
}
@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }
    .stat-number {
    font-size: 1.5rem;
}
}
.client-logo {
  max-height: 60px;
  /*filter: grayscale(100%);*/
  /*opacity: 0.6;*/
  transition: 0.3s;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 60% 60%;
}
.carousel-control-next, .carousel-control-prev {
    width: fit-content;}
    
 
.feature-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid transparent;
}

/* Specific Border Accents (Bottom-Heavy Glow) */
.border-orange { border: 3px solid rgba(243, 156, 18, 0.3); }
.border-blue { border: 3px solid rgba(52, 152, 219, 0.3); }
.border-green { border: 3px solid rgba(46, 204, 113, 0.3); }
.border-purple { border: 3px solid rgba(155, 89, 182, 0.3); }
.border-yellow { border: 3px solid rgba(241, 196, 15, 0.3); }
.border-teal { border: 3px solid rgba(26, 188, 156, 0.3); }

.icon-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Dynamic Color Utilities */
.text-orange { color: var(--orange); } .bg-orange-light { background-color: var(--orange-bg); }
.text-blue { color: var(--blue); } .bg-blue-light { background-color: var(--blue-bg); }
.text-green { color: var(--green); } .bg-green-light { background-color: var(--green-bg); }
.text-purple { color: var(--purple); } .bg-purple-light { background-color: var(--purple-bg); }
.text-yellow { color: var(--yellow); } .bg-yellow-light { background-color: var(--yellow-bg); }
.text-teal { color: var(--teal); } .bg-teal-light { background-color: var(--teal-bg); }

/* Hover Effect */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
/* Slider Container */
#heroSlider {
    height: 500px;
    overflow: hidden;
}

.slider-image-wrap {
    position: relative;
    height: 600px;
}

.slider-image-wrap img {
    object-fit: cover;
    height: 100%;
}

/* The Color Filter Overlay */
.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* This creates that warm, semi-transparent pinkish hue */
    background: rgba(165, 78, 88, 0.75); 
    mix-blend-mode: multiply; /* Optional: for a deeper "tinted" effect */
}

/* Centering the content */
.carousel-caption {
    top: 0;
    bottom: 0;
    left: 10%;
    right: 10%;
    text-align: center;
}

/* Badge Styling */
.badge-pill {
    background-color: #0064a2;
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.dot {
    height: 8px;
    width: 8px;
    background-color: #00d1ff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

/* Typography */

.text-blue {
    color: #0064a2; /* The blue from your image */
}

.lead {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}
/* Container Height */
#heroSlider, .slider-image-wrap {
    height: 550px; /* Full screen height, or set to 600px */
    min-height: 500px;
}

.slider-image-wrap img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/* Reddish Overlay - Adjusted to match screenshot tint */
.overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, #095d9f73, rgb(9 93 159 / 9%));
}

/* Centering Content */
.carousel-caption {
    top: 0; bottom: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* The Blue Highlight */
.text-blue {
    color: #005a9c; /* Dark industrial blue */
}

/* Badge Styling */
.badge-pill {
    background-color: #0064a2;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.dot {
    height: 10px; width: 10px;
    background-color: #00d1ff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

/* Customizing Arrows */
.carousel-control-prev, .carousel-control-next {
    width: 5%; /* Thinner hit area */
    z-index: 20;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(0,0,0,0.2); /* Subtle circle background for arrows */
    border-radius: 50%;
    background-size: 50%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lead { font-size: 0.9rem; }
}
/* Product Image Grid */
        .img-grid img { width: 100%; height: 200px; object-fit: cover; }
        
        /* Specification Table Styling */
        .table-spec { border-collapse: separate; border-spacing: 0; width: 100%; margin-top: 20px; }
        .table-spec td { padding: 8px 15px; border: 1px solid #fff; font-size: 0.9rem; }
        /* Sidebar Styles */
        .sidebar-header { border-bottom: 2px solid #ddd; padding-bottom: 10px; margin-bottom: 15px; color: #444; font-weight: bold; }
        .sidebar-item { border-bottom: 1px solid #eee; padding: 15px 0; display: flex; align-items: start; }
        .sidebar-item.active { background-color: #e2e2e2; margin: 0 -15px; padding: 15px; }
        .sidebar-item img { width: 60px; height: 60px; border: 1px solid #ddd; margin-right: 15px; }
        .sidebar-title { font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; color: #000; line-height: 1.2; }
        .btn-view { background-color: #00a8d6; color: white; border: none; padding: 2px 15px; font-size: 0.75rem; border-radius: 2px; }
        .btn-view:hover { background-color: #008eb6; color: white; }

        /* Application List */
        .app-list { list-style: none; padding-left: 0; margin-top: 15px; }
        .app-list li { margin-bottom: 8px; font-size: 0.9rem; display: flex; align-items: center; }
        .app-list li::before { content: "\f105"; font-family: "Font Awesome 5 Free"; font-weight: 900; color: #00a8d6; margin-right: 10px; }
        .hero-banner {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://via.placeholder.com/1920x400');
            background-size: cover;
            color: white;
            padding: 60px 0;
            text-align: center;
            background: linear-gradient(135deg, #000000 0%, #0e0060 100%);
        }

        .section-title { color: var(--primary-navy); font-weight: 700; }
        .accent-italic { color: var(--text-gold); font-style: italic; }
        
        .btn-navy {
            background-color: var(--primary-navy);
            color: white;
            border-radius: 4px;
            padding: 10px 25px;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .feature-icon { color: #0dcaf0; margin-right: 10px; }

        .cta-banner22 {
            background: linear-gradient(rgba(0,51,102,0.8), rgba(0,51,102,0.8)), url('https://via.placeholder.com/1920x500');
            background-size: cover;
            color: white;
            padding: 80px 0;
        }

        .faq-section { background-color: #f8f9fa; padding: 60px 0; }
        .newsletter-bar { background-color: var(--primary-navy); padding: 40px 0; color: white; }

        .list-unstyled li { margin-bottom: 15px; }
        table.table-spec tr:nth-child(even) {
    background-color: #b8d1f3;
}
table.table-spec tr:nth-child(odd) {
    background-color: #e1e1e1;
}
.cbox {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    margin: auto;
    text-align: center;
}
.sidebar {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding: 15px;
}
