:root {
    --primary-color: #2c3e50; /* Dark Charcoal from logo */
    --accent-color: #e67e22;  /* Metallic Orange/Gold from logo */
    --secondary-color: #bdc3c7;
    --bg-light: #f8f9fa;
    --text-dark: #1a252f;
    --text-muted: #7f8c8d;
    --white: #ffffff;
    --transition: none !important;
}

body {
    font-family: 'Times New Roman', serif !important;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Times New Roman', serif !important;
    font-weight: 700;
}


.text-accent { color: var(--accent-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
.btn-accent { background-color: var(--accent-color); border-color: var(--accent-color); color: var(--white); }
.btn-accent:hover { background-color: #d35400; border-color: #d35400; color: var(--white); }
.btn-outline-accent { border-color: var(--accent-color); color: var(--accent-color); }
.btn-outline-accent:hover { background-color: var(--accent-color); color: var(--white); }

.py-100 { padding-top: 50px; padding-bottom: 50px; }
.ls-1 { letter-spacing: 1px; }

/* Navbar Styling - Redesigned White Header */
#mainNav {
    background-color: #ffffff !important;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid #f0f0f0;
}

.navbar-brand .brand-text span {
    color: var(--primary-color);
}
.navbar-brand .brand-text small {
    color: var(--text-muted);
}

.logo-img {
    height: 85px;
    width: auto;
}

.nav-link {
    font-family: 'Times New Roman', serif !important;
    font-size: 16px !important;
   padding: 15px 16px !important;
    color: #333 !important;
    font-weight: 600;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-color) !important;
}

/* Tab Styles - Generic */
.nav-pills .nav-link {
    color: var(--primary-color);
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 600;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: var(--accent-color) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
}

.btn-teal {
    background-color: #0096a6;
    color: white !important;
    border-radius: 25px;
    padding: 8px 25px !important;
    box-shadow: 0 4px 10px rgba(0, 150, 166, 0.2);
}

.btn-teal:hover {
    background-color: #007a87;
}

/* Hero Section - Premium Centered Design */
.hero-section {
    height: 450px;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('assets/herobanner-ezremove-ezremove.png') no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 24px;
    max-width: 900px;
    width: 90%;
    text-align: center;
    border-radius: 20px;
    position: relative;
    z-index: 10;
    padding: 30px;
}

.hero-box-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    margin-bottom: 10px;
}

.hero-box h1 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

.hero-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 780px;
    margin: 0 auto;
}

/* Inner Page Banner */
.inner-banner {
    height: 350px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/inner_banner.png') no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 105px;
    padding-top: 140px;
    color: white;
    text-align: center;
}

.breadcrumb-content .breadcrumb-item, 
.breadcrumb-content .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
}

.breadcrumb-content .breadcrumb-item.active {
    color: white;
}

.breadcrumb-content .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

.inner-banner h1 {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Animations Removed */

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

/* Active tab text fix for specialized sections if needed */
#sulphurTabs .nav-link.active, #industryTabs .nav-link.active {
    color: white !important;
}

/* Product Cards */
.product {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.product-img-wrapper {
    overflow: hidden;
    height: 250px;
}

.product-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Industries Section */
.industries-section {
    background: linear-gradient(rgba(44, 62, 80, 0.95), rgba(44, 62, 80, 0.95)), url('global_logistics_world_map_1775197075541.png');
    background-size: cover;
    background-attachment: fixed;
}

.industry-item {
    padding: 30px;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.industry-item:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* Contact Wrapper */
.contact-form-wrapper {
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer Styling */
.footer {
    border-top: 4px solid var(--accent-color);
    background-color: var(--primary-color) !important;
    color: rgba(255, 255, 255, 0.7);
}

.footer h6 {
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.footer .text-muted {
    color: #fff !important;
}

.footer a.text-reset {
    color: #fff !important;
    transition: var(--transition);
    text-decoration: none;
}

.footer a.text-reset:hover {
    color: var(--accent-color) !important;
}

.footer-contact-item {
    display: flex;
    align-items: center;
}

.footer-icon-box {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-icon-box i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer .navbar-brand .brand-text span {
    color: var(--white) !important;
}

.filter-white {
    filter: brightness(0) invert(1);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .navbar { background-color: #ffffff !important; padding: 0.5rem 0; }
    .logo-img { height: 50px; }
    .hero-section { min-height: 500px; height: auto; margin-top: 80px; padding: 40px 0; }
    .inner-banner { margin-top: 80px; }
    .hero-box { padding: 30px 20px; width: 92%; margin: 0 auto; }
    .hero-box h1 { font-size: 22px; margin-bottom: 12px; }
    .hero-box p { font-size: 0.9rem; line-height: 1.5; }
    .hero-box-logo { height: 60px; margin-bottom: 15px; filter: none; }
    
    .display-5 { font-size: 2rem !important; }
    .py-100 { padding-top: 30px; padding-bottom: 30px; }
    .hero-box { padding: 25px 15px; width: 92%; margin: 0 auto; }
    .hero-box-logo { height: 70px; margin-bottom: 15px; filter: none; } /* Removed shadow to fix mobile "shifted" look */
}

@media (min-width: 768px) and (max-width: 991px) {
    /* Tablet 2-column layout for products */
    .row.g-4 > .col-lg-4 {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .display-5 { font-size: 1.8rem !important; }
    .lead { font-size: 1rem !important; }
    .inner-banner { height: 250px; padding-top: 100px; }
    .inner-banner h1 { font-size: 2rem; }
    
    /* Center text on mobile if needed */
    .text-start-md { text-align: center !important; }
}


.leads{
    font-size: 17px !important;
}

/* Applications Section Enhancements */
.application-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08) !important;
}

.application-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    border-color: var(--accent-color) !important;
}

.app-icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 126, 34, 0.08);
    border-radius: 22px;
    transition: all 0.3s ease;
}

.application-card:hover .app-icon-box {
    background: var(--accent-color);
}

.application-card:hover .app-icon-box i {
    color: #fff !important;
}

.why-heading{
    font-size: 28px !important;
}