/* Global Styles */
:root {
    --darshan-blue: #1e3a8a;
    --darshan-light-blue: #3b82f6;
    --darshan-dark: #0f2a6b;
    --darshan-outline: #3b82f6;
    --denovo-orange: #924107;
    --denovo-dark: #ea580c;
    --text-dark: #1f2937;
    --text-light: #4b5563;
    --white: #ffffff;
    --light-gray: #f3f4f6;
    --dark-gray: #374151;
    --black: #212529;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    line-height: 32px;
    color: #212529;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    display: inline-block !important;
    position: relative !important;
}

.section-title::after {
    content: "" !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background: linear-gradient(135deg, var(--denovo-orange), var(--darshan-light-blue)) !important;
    border-radius: 2px !important;
}

p, li, .content, .lead, .text-content, .description, .intro-text, .about-section p, .after-hero__lead, .power-callout .power-item p, .spec-grid p, .feature-card p, .disclaimer-card p, .hero-intro p, .fancy-faq p, .engage-wrap p, .exporter-card p, .advantage-card p, .single-product-card p, .enhanced-text p, .cta-box p, .hero-intro .lead, .fancy-faq p, .engage-wrap p, .exporter-card p, .advantage-card p, .single-product-card p, .spec-card p, .feature-card p, .disclaimer-card p, .hero-intro p, .fancy-faq p, .engage-wrap p, .exporter-card p, .advantage-card p, .single-product-card p {
    font-size: 1.2rem !important;font: color #212529;
}

*[style*="font-size"] p, *[style*="font-size"] li, .hero-intro .lead, .enhanced-text p, .cta-box p, .fancy-faq p, .engage-wrap p, .exporter-card p, .advantage-card p, .single-product-card p {
    font-size: 1.2rem !important;font: color #212529;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* 
   HEADER & NAVIGATION STYLES
*/
.main {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

.header2 {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
    z-index: 1030;
    width: 100%;
}

.logo img { max-width: 100%; height: auto; display: block; }

.brand { display: flex; align-items: center; margin-right: auto; }
.brand-link { display: inline-flex; align-items: center; text-decoration: none; }
.brand-mobile { height: 48px; width: auto; display: inline-block; }
.brand-desktop { height: 80px; width: auto; display: none; margin-left: 8px; }

@media (min-width: 1140px) {
    .brand-mobile { display: none; }
    .brand-desktop { display: inline-block; }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
    background: #ffffff;
}

@media (max-width: 767.98px) {
    .site-header { position: fixed !important; top: 0; left: 0; right: 0; z-index: 2000; }
    .hero-banner { padding-top: 80px !important; }
    .page-banner { padding: 80px 0 40px !important; }
    .hero-section { padding-top: 80px !important; }
}

.header-container { 
    display: grid; 
    grid-template-columns: 1fr auto; 
    grid-template-areas:
        'brand toggle'
        'nav nav';
    align-items: center; 
    row-gap: 6px;
    min-height: 70px; 
}
.brand { grid-area: brand; }
.nav-toggle { grid-area: toggle; }
.na-bar { grid-area: nav; width: 100%; }

.site-header .stellarnav a { color: white }
.site-header .stellarnav > ul > li > a:hover { color: #ff6b35 }

.enquire-cta { 
    background: linear-gradient(135deg, var(--denovo-orange), #ff6b35); 
    padding: 0.6rem 1rem; 
    border-radius: 10px; 
    color: #fff !important; 
}

.menu .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 60px;
}

.na-bar { 
    position: relative; 
    display: flex;
    align-items: center;
}

.stellarnav ul { list-style: none; margin: 0; padding: 0; }
.stellarnav > ul { display: flex; align-items: center; gap: 1rem; }
.stellarnav > ul > li { position: relative; }
.stellarnav a { display: block; padding: 0.9rem 1rem; color: #ecf0ff; text-decoration: none; font-weight: 600; }
.stellarnav > ul > li > a:hover { color: var(--denovo-orange); }

/* Active nav state */
.stellarnav a.active {
    color: #ff6b35 !important;
    position: relative;
}
.stellarnav a.active::after{
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 6px;
    height: 2px;
    background: #ff6b35;
    opacity: 0.9;
    border-radius: 2px;
}

@media (min-width: 992px){
    .site-header { background: #ffffff; }
    .site-header .stellarnav a { color: #1e293b; }
    .site-header .stellarnav > ul > li > a:hover { color: #ff6b35; }
    .site-header .brand-desktop { filter: none; }
    .site-header .stellarnav > ul > li > a .chev { background-color: #1e293b !important; opacity: 0.95; width: 18px; height: 18px; }
    .site-header .stellarnav > ul > li:hover > a .chev { background-color: #ff6b35 !important; }
}

/* Desktop: keep long dropdown labels on one line and allow wider menu */
@media (min-width: 992px){
    .stellarnav .drop { width: max-content; min-width: 300px; padding-right: 0.5rem; }
    .stellarnav .drop li a { white-space: nowrap; padding-right: 0.75rem; }
}

/* Ensure right padding cannot be overridden (desktop) */
@media (min-width: 992px){
    .site-header .stellarnav .drop{ padding-right: 0.5rem !important; }
    .site-header .stellarnav .drop li a{ padding-right: 0.75rem !important; }
}


.stellarnav > ul > li > a i.fa-chevron-down {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.stellarnav > ul > li > a .chev {
    width: 16px;
    height: 16px;
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
    opacity: 0.95;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    transform: rotate(0deg);
    background-color: white;
    -webkit-mask-image: url('images/font-down-arrow.svg');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url('images/font-down-arrow.svg');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.stellarnav > ul > li.submenu-open > a .chev {
    transform: rotate(180deg);
    background-color: #ff6b35;
}

@media (max-width: 991.98px){
    .stellarnav > ul > li:hover > a .chev { transform: rotate(0deg); }
    .stellarnav > ul > li.submenu-open > a .chev { transform: rotate(180deg); }
}

.stellarnav > ul > li:hover > a i.fa-chevron-down {
    opacity: 1;
}


.stellarnav > ul > li:hover .drop + a i.fa-chevron-down,
.stellarnav > ul > li:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}

@media (min-width: 992px){
.stellarnav > ul > li:hover > a .chev {
    transform: rotate(180deg);
    opacity: 1;
        background-color: #ff6b35;
    }
}


.stellarnav .drop { display: none; position: absolute; left: 0; top: 100%; min-width: 260px; background: #ffffff; border-radius: 10px; box-shadow: 0 12px 30px rgba(0,0,0,0.15); padding: 0.4rem 0; z-index: 1500; }
.stellarnav .drop li a { color: var(--text-dark); padding: 0.6rem 1rem; font-weight: 500; }
.stellarnav .drop li a:hover { background: var(--light-gray); color: var(--darshan-blue); }
@media (min-width: 992px){
.stellarnav > ul > li:hover > .drop { display: block; }
    /* Desktop: single column, tighter width and padding */
    .stellarnav .drop { max-height: none; overflow: visible; width: max-content; min-width: 300px; padding: 0.4rem 0.5rem; }
    .stellarnav .drop li a { padding: 0.35rem 0.75rem; font-size: 1.2rem; white-space: nowrap; }
}


.nav-toggle { 
    background: transparent; 
    border: 0; 
    width: 42px; 
    height: 34px; 
    display: none; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
    z-index: 1040; 
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-direction: column;
}

.nav-toggle:hover {
    background: rgba(15, 42, 107, 0.1);
    transform: scale(1.05);
}

.nav-toggle:active {
    transform: scale(0.95);
}

.nav-toggle span { 
    display: block; 
    width: 28px; 
    height: 3px; 
    background: #ff6b35; 
    margin: 3px 0; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1){ 
    transform: translateY(9px) rotate(45deg); 
    background: var(--denovo-orange);
}

.nav-toggle.active span:nth-child(2){ 
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active span:nth-child(3){ 
    transform: translateY(-9px) rotate(-45deg); 
    background: var(--denovo-orange);
}

@media (max-width: 991.98px){
    .nav-toggle { 
        display: inline-flex; 
        margin-left: auto;
        order: 2;
    }
    .na-bar {
        order: 1;
        flex: 1;
    }
    .stellarnav { 
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--darshan-blue) 0%, var(--darshan-dark) 100%);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        border-radius: 0 0 15px 15px;
        max-height: 80vh;
        overflow-y: auto;
        padding: 1rem 0;
    }
    .stellarnav.open { display: block; }
    .stellarnav > ul { 
        display: block; 
        padding: 0 1rem;
    }
    .stellarnav > ul > li { 
        border-top: 1px solid rgba(255,255,255,0.1); 
        margin: 0;
    }
    .stellarnav > ul > li:first-child {
        border-top: none;
    }
    .stellarnav > ul > li > a { 
        padding: 1rem 0; 
        color: #ffffff; 
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    .stellarnav > ul > li > a:hover {
        background: rgba(255,255,255,0.1);
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .stellarnav a.active{
        background: rgba(255,255,255,0.12);
        color: #ffffff !important;
        border-radius: 6px;
    }
    .stellarnav li.active-parent > a{
        background: rgba(255,255,255,0.08);
    }
    .stellarnav .drop { 
        position: static; 
        box-shadow: none; 
        background: rgba(255,255,255,0.05); 
        border-radius: 8px; 
        display: none; 
        padding: 0.5rem 0;
        margin: 0.5rem 0;
        border-left: 3px solid var(--denovo-orange);
        overflow: hidden;
    }
    .stellarnav .submenu-open > .drop { 
        display: block; 
        animation: slideDown 0.3s ease-out;
    }
    .stellarnav .drop li { 
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .stellarnav .drop li:last-child {
        border-bottom: none;
    }
    .stellarnav .drop li a { 
        color: #fff1f5; 
        padding: 0.8rem 1rem 0.8rem 2rem; 
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        border-radius: 0;
    }
    .stellarnav .drop li a:hover { 
        background: rgba(255,255,255,0.1); 
        color: #ffffff; 
        padding-left: 2.5rem;
    }
    

    .stellarnav > ul > li > a i.fa-chevron-down {
        transition: transform 0.3s ease;
        font-size: 0.9rem;
        opacity: 0.8;
    }
    .stellarnav > ul > li > a .chev {
        transition: transform 0.3s ease, background-color 0.3s ease;
        width: 18px;
        height: 18px;
        opacity: 0.95;
    }
    .stellarnav .submenu-open > a i.fa-chevron-down,
    .stellarnav .submenu-open > a .chev {
        transform: rotate(180deg);
        opacity: 1;
        background-color: #F8CFB4;
    }
    

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
            max-height: 0;
        }
        to {
            opacity: 1;
            transform: translateY(0);
            max-height: 300px;
        }
    }
}

/* 
   HOME PAGE STYLES
*/

/* Hero Section */
.hero-banner { 
    position: relative; 
    min-height: 100vh; 
    display: flex; 
    align-items: center;
    overflow: hidden;
}

.hero-banner .container-fluid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.hero-banner .carousel,
.hero-banner .carousel-inner,
.hero-banner .carousel-item {
    height: auto;
}

.hero-banner .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain; 
    object-position: center;
    background: none;
    display: block;
}

.hero-banner {
    min-height: auto !important;
    display: block !important;
    align-items: unset !important;
}

.hero-banner .container-fluid {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    padding: 0 !important;
}

.hero-layer { 
    position: relative; 
    z-index: 2; 
    padding-top: 8rem; 
    padding-bottom: 4rem; 
}

.hero-content { max-width: 720px; text-align: left; }
.hero-buttons { justify-content: flex-start; }
.hero-logo { text-align: left; }

.hero-banner__overlay { 
    display: none; 
}

.hero-banner__rail { 
    position: fixed; 
    left: 20px; 
    top: 50%; 
    transform: translateY(-50%); 
    z-index: 1050; 
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 4;
    pointer-events: none;
}

/* Top wave divider */
.custom-shape-divider-top-1756814171 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.custom-shape-divider-top-1756814171 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.custom-shape-divider-top-1756814171 .shape-fill { fill: #FFFFFF; }

.custom-shape-divider-top-1756814393 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.custom-shape-divider-top-1756814393 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 42px;
}

.custom-shape-divider-top-1756814393 .shape-fill { fill: #FFFFFF; }

.rail-btn { 
    writing-mode: initial;
    transform: none;
    background: transparent;
    color: inherit;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: inline-flex; 
    align-items: center; 
    gap: 0; 
    text-decoration: none; 
    font-weight: inherit; 
    letter-spacing: 0; 
    font-size: inherit;
    transition: none;
    border: 0;
}

/* Enquiry submit button styling (scoped to this page) */
.Submit-box{
    background: linear-gradient(135deg, #a64b0f, #e17316);
    color:#fff;
    border:none;
    border-radius:8px;
    padding:10px 22px;
    font-weight:700;
    letter-spacing:.4px;
    box-shadow:0 6px 14px rgba(225, 115, 22, .35);
    transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
    cursor:pointer;
}
.Submit-box:hover,
.Submit-box:focus{
    transform: translateY(-1px);
    box-shadow:0 10px 20px rgba(225, 115, 22, .45);
    filter: saturate(1.1);
    outline:none;
}
.Submit-box:active{ transform: translateY(0); box-shadow:0 6px 12px rgba(225,115,22,.35); }

/* Image-only rail button */
.rail-btn .rail-img{ display:block; height:auto; width:44px; }
@media (max-width: 767.98px){ .rail-btn .rail-img{ width:38px; } }


@media (max-width: 767.98px) {
    .hero-banner__rail {
        left: 10px;
    }
    
    .rail-btn {
        padding: 15px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .hero-banner__rail {
        left: 5px;
    }
    
    .rail-btn {
        padding: 12px 8px;
        font-size: 0.75rem;
    }
}

/* Very small devices (e.g., 375px) – prevent specs text overlap */
@media (max-width: 399.98px){
    .product-page .specs-grid{ grid-template-columns: 1fr !important; gap: 0.75rem !important; }
    .product-page .spec-item{ padding: 0.75rem !important; }
    .product-page .spec-item span{ font-size: 1.05rem !important; line-height: 1.45 !important; word-break: break-word; hyphens: auto; }
}

@media (max-width: 575.98px) {
    .site-header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 2000;
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    .hero-banner,
    .footer-section {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    .hero-banner { padding-top: 80px !important; }
    .page-banner { padding: 80px 0 40px !important; }
    .hero-section { padding-top: 80px !important; }
    .hero-banner .container-fluid { padding-left: 0; padding-right: 0; }
}


.hero-content {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 5;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #e5e7eb;
    font-weight: 500;
    letter-spacing: 1px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn { 
    padding: 0.75rem 2rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    border-radius: 50px; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.explore-btn {
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.35);
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

.explore-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -16px;
    transform: translateX(-50%);
    width: 160px;
    height: 28px;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.45) 0%, rgba(255, 107, 53, 0.0) 70%);
    filter: blur(2px);
    pointer-events: none;
}

/* Safety Valve Section */
.safety-valve-types-section {
    background: var(--white);
    position: relative;
}

.after-hero { background: #ffffff; }
.after-hero .container { padding: 3rem 0; }
.after-hero__image img { width: 100%; max-width: 380px; height: auto; border-radius: 12px;  }
.after-hero__badge { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--denovo-orange), #ff6b35); color: #fff; margin-bottom: 0.75rem; }
.after-hero__badge .icon-shield{
    width: 18px;
    height: 18px;
    display: inline-block;
    background-color: #ffffff;
    -webkit-mask-image: url('images/font-shield.svg');
    -webkit-mask-repeat: no-repeat; -webkit-mask-position: center; -webkit-mask-size: contain;
    mask-image: url('images/font-shield.svg');
    mask-repeat: no-repeat; mask-position: center; mask-size: contain;
}

.power-icon .icon-shield{
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    display: inline-block;
    background-color: var(--denovo-orange);
    
    -webkit-mask-repeat: no-repeat; -webkit-mask-position: center; -webkit-mask-size: contain;
    
    mask-repeat: no-repeat; mask-position: center; mask-size: contain;
}
.after-hero__title { font-size: 2rem; font-weight: 700; color: var(--darshan-blue); letter-spacing: 1px; margin-bottom: 0.75rem; }
.after-hero__lead { font-size:1.1rem; color: var(--black);  margin-bottom: 0.75rem; }
.after-hero__text { font-size:1.1rem; color: var(--black); margin-bottom: 1.25rem; }

/* Home page text justification */
.after-hero__lead,
.after-hero__text,
.power-callout .power-item p,
.benefits-expertise .bx-card p { text-align: justify; }
.learn-more-btn { border-radius: 10px; padding: 0.7rem 1.25rem; }

@media (max-width: 991.98px){
    .after-hero .container { padding: 1rem 1rem; }
    .after-hero__content { margin-bottom: 1rem; }
    .learn-more-btn { margin-bottom: 1rem; }
    .after-hero__title { font-size: 1.8rem; }
}


.power-callout { background: #ffffff; padding: 1rem 0 2rem; }
.power-card { 
    position: relative;
    border-radius: 12px; 
    padding: 1.75rem; 
    color: #fff; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25); 
    overflow: hidden;
    min-height: 220px;
}
.power-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(88, 88, 91), rgba(78, 84, 106));
}
.power-card > * { position: relative; z-index: 1; }
.power-title { font-size: 1.1rem; letter-spacing: .5px; font-weight: 800; margin: 0 0 .75rem; }
.power-desc { font-size: .85rem; line-height: 1.5; max-width: 420px; }
.power-icon { 
    position: relative;
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    width: 50px; 
    height: 50px; 
    min-width: 50px;
    flex-shrink: 0;
    border-radius: 50%; 
    background: linear-gradient(135deg, var(--denovo-orange), #ff6b35);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2), inset 0 0 0 2px rgba(255,255,255,0.25);
    margin-bottom: .6rem; 
    backdrop-filter: blur(4px);
}
.power-icon::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
}
.power-icon i { position: relative; z-index: 1; color: var(--denovo-orange); font-size: 1.05rem; }
/* Masked icons for power-callout */
.power-icon .icon-cogs,
.power-icon .icon-award{
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    display: inline-block;
    background-color: var(--denovo-orange);
    -webkit-mask-repeat: no-repeat; -webkit-mask-position: center; -webkit-mask-size: contain;
    mask-repeat: no-repeat; mask-position: center; mask-size: contain;
}
.power-icon .icon-cogs{ -webkit-mask-image: url('images/font-setting.svg'); mask-image: url('images/font-setting.svg'); }
.power-icon .icon-award{ -webkit-mask-image: url('images/font-award.svg'); mask-image: url('images/font-award.svg'); }
.power-btn { background: #fff; color: var(--text-dark); border-radius: 8px; padding: .6rem 1.1rem; font-weight: 700; border: none; box-shadow: 0 5px 14px rgba(0,0,0,.12); }
.power-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.18); }

.power-column { display: flex; flex-direction: column; gap: 0.75rem; }
.power-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.power-item p { margin: 0; color: whitesmoke;  line-height: 1.6;  }

/* Benefits & Expertise */
.benefits-expertise .bx-card { 
    background: #ffffff; 
    border-radius: 14px; 
    font-size: 1.1rem;
    padding: 1.5rem; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(15, 42, 107, 0.08);
    height: 100%;
    color: var(--black);
}
.benefits-expertise .bx-title { 
    font-weight: 800; 
    color: var(--darshan-blue); 
    margin-bottom: 0.75rem; 
}

@media (max-width: 767.98px){
    .power-card { padding: 1.25rem; }
    .power-title { font-size: 1rem; }
    .power-desc { font-size: .8rem; }
}

.safety-valve-types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 42, 107, 0.05) 0%, rgba(15, 42, 107, 0.02) 100%);
    z-index: 1;
}

.safety-valve-types-section .container {
    position: relative;
    z-index: 2;
}

.valve-types-content {
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(15, 42, 107, 0.1);
}

.valve-types-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--darshan-dark);
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.quote-request-btn {
    background: linear-gradient(135deg, var(--darshan-blue) 0%, var(--darshan-dark) 100%);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(15, 42, 107, 0.3);
    transition: all 0.3s ease;
    min-width: 250px;
}

.quote-request-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(15, 42, 107, 0.4);
    background: linear-gradient(135deg, var(--darshan-dark) 0%, var(--darshan-blue) 100%);
}

.quote-request-btn:active {
    transform: translateY(-1px);
}

.quote-button-wrapper {
    margin-top: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--denovo-orange) 0%, #ff6b35 100%);
    border-color: var(--denovo-orange);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--denovo-dark) 0%, var(--darshan-blue) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(15, 42, 107, 0.6);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--darshan-blue);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.hero-logo {
    text-align: center;
}

.denovo-logo {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--denovo-orange);
    font-style: italic;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.1rem;
    color: #e5e7eb;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Welcome Section */
.welcome-section {
    background: var(--light-gray);
    padding: 3rem 0;
}

.welcome-bg {
    padding: 2rem 0;
}

@media (min-width: 1400px) {
    .welcome-section {
        padding: 2rem 0;
    }
    
    .welcome-bg {
        padding: 1.5rem 0;
    }
    
    .welcome-bg h1 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .welcome-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .welcome-text p {
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1600px) {
    .welcome-section {
        padding: 2.5rem 0;
    }
    
    .welcome-bg {
        padding: 2rem 0;
    }
    
    .welcome-bg h1 {
        font-size: 2.8rem;
        margin-bottom: 3rem;
    }
    
    .welcome-text {
        font-size: 1.15rem;
        line-height: 1.9;
    }
    
    .welcome-text p {
        margin-bottom: 1.8rem;
    }
}

@media (min-width: 1920px) {
    .welcome-section {
        padding: 3rem 0;
    }
    
    .welcome-bg {
        padding: 2.5rem 0;
    }
    
    .welcome-bg h1 {
        font-size: 3rem;
        margin-bottom: 3.5rem;
    }
    
    .welcome-text {
        font-size: 1.2rem;
        line-height: 2;
    }
    
    .welcome-text p {
        margin-bottom: 2rem;
    }
}

.welcome-bg h1 {
    color: var(--darshan-blue);
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.welcome-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.welcome-text p {
    margin-bottom: 1.2rem;
}

.welcome-text a {
    color: var(--darshan-blue);
    font-weight: 600;
    text-decoration: none;
}

.welcome-text a:hover {
    color: var(--denovo-orange);
    text-decoration: underline;
}

.welcome-text strong {
    color: var(--darshan-blue);
}

.welcome-text-continued {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.welcome-text-continued p:first-child {
    margin-top: 0;
}

.welcome-text-continued p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--darshan-blue);
}

@media (min-width: 1400px) {
    .welcome-section .products-img img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }
    
    .welcome-section .products-img .price-bt {
        margin-top: 1.5rem;
    }
}

@media (min-width: 1600px) {
    .welcome-section .products-img img {
        border-radius: 18px;
        box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    }
    
    .welcome-section .products-img .price-bt {
        margin-top: 2rem;
    }
}

@media (min-width: 1920px) {
    .welcome-section .products-img img {
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }
    
    .welcome-section .products-img .price-bt {
        margin-top: 2.5rem;
    }
}

/* Products Section */
.products-section {
    background: var(--white);
    padding: 5rem 0;
}

.products-bg { padding: 2rem 0; }
.products-text h2 { 
    color: var(--darshan-blue); 
    font-weight: 800; 
    font-size: 1.75rem; 
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--darshan-blue) 0%, var(--denovo-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-section { 
    background: #ffffff; 
    border-radius: 14px; 
    box-shadow: 0 8px 24px rgba(0,0,0,0.08); 
    height: 100%; 
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15,42,107,0.08);
    margin-bottom: 1rem;
}

/* Responsive product grid */
@media (max-width: 1199.98px) {
    .product-section {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .product-section {
        margin-bottom: 0.75rem;
    }
    
    .products-img h3 {
        font-size: 1rem;
    }
    
    .products-img p {
        font-size: 0.9rem;
    }
}
.product-section { 
    background: #ffffff; 
    border-radius: 14px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    height: 100%; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--denovo-orange), var(--darshan-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-section:hover::before {
    transform: scaleX(1);
}

.product-section:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 44px rgba(0,0,0,0.16);
}
.products-img { text-align: center; padding: 1.25rem; position: relative; overflow: hidden; }
.products-img img { 
    width: 100%; 
    aspect-ratio: 1 / 1; 
    object-fit: contain; 
    background: #fff; 
    padding: 10px; 
    border-radius: 12px; 
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-section:hover .products-img img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.products-img::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -40%;
    width: 60%;
    height: 200%;
    transform: rotate(25deg);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
    transition: transform 0.6s ease, opacity 0.6s ease;
    pointer-events: none;
    opacity: 0.0;
}
.product-section:hover .products-img::after {
    transform: translateX(220%) rotate(25deg);
    opacity: 1;
}
.products-img h3 { font-size: 1.3rem; margin: 0.75rem 0 .25rem; font-weight: 800; color: var(--darshan-blue); min-height: 2.5rem; display: flex; align-items: center; justify-content: center; text-align: center; }
.products-img p { color: var(--black); min-height: 48px; text-align: justify; word-spacing: 0.1em;  }
.products-img p.price-bt { text-align: center; }
.products-img p.price-bt .get-latest-price-bt { display: inline-block; }
.products-img h3 a { text-decoration: none; color: inherit; }
.price-bt { margin-top: .75rem; }
.get-latest-price-bt { 
    display: inline-block; 
    background: linear-gradient(135deg, var(--denovo-orange) 0%, #ff6b35 100%); 
    color: #fff; 
    padding: .75rem 1.5rem; 
    border-radius: 30px; 
    font-weight: 700; 
    text-decoration: none; 
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.get-latest-price-bt::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.get-latest-price-bt:hover::before {
    left: 100%;
}

.get-latest-price-bt:hover { 
    background: linear-gradient(135deg, var(--denovo-dark) 0%, var(--darshan-blue) 100%); 
    color: #fff; 
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(15, 42, 107, 0.5);
}

.get-latest-price-bt:active {
    transform: translateY(-1px) scale(0.98);
}
.padding-top-cs { margin-top: 1.5rem; }
.mt-30 { margin-top: 1.5rem; }

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--light-gray);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
    background: var(--light-gray);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-content {
    padding: 1.5rem;
    text-align: center;
}

.product-content h5 {
    color: #1e3a8a;
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-content p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.product-content .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    color: #1e3a8a;
    border-color: #1e3a8a;
}

.product-content .btn:hover {
    background-color: #1e3a8a;
    color: white;
    border-color: #1e3a8a;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.product-image img {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--darshan-blue), var(--denovo-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

/*
   FOOTER STYLES
*/
.footer-section {
    background: linear-gradient(135deg, var(--darshan-blue) 0%, var(--darshan-dark) 100%);
    color: var(--white);
    padding: 2rem 0 0rem;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--denovo-orange), var(--darshan-light-blue), var(--denovo-orange));
}

.footer-section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px;
    background-position: 0 0, 0 0;
}

.footermain {
    position: relative;
    z-index: 2;
}

.footermain .package {
    margin-bottom: 1rem;
    padding: 1rem;
    background: transparent;
    border-radius: 0;
    border: 0;
    backdrop-filter: none;
    transition: none;
}

.footermain .package:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
}

.footermain .package h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--denovo-orange);
    padding-bottom: 0.5rem;
    position: relative;
}

.footermain .package h4::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--darshan-light-blue);
    border-radius: 2px;
}
/* Hide the 'More Products' footer heading and its underline (3rd column) */
.footermain .package:nth-child(3) h4,
.footermain .package:nth-child(3) h4::after {
    display: none !important;
}
/* Start the third column list right at the top like a series (no heading gap) */
.footermain .package:nth-child(3){
    padding-top: 0 !important;
}
/* Add offset so first list item aligns with other columns' first items under their headings */
.footermain .package:nth-child(3) ul{
    margin-top: 63px !important;
}
/* On mobile, remove the extra offset to avoid large gap */
@media (max-width: 575.98px){
    .footermain .package:nth-child(3) ul{ margin-top: 0 !important; }
}

.footermain .package ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0;
}

.footermain .package ul li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--denovo-orange);
    font-weight: bold;
    transition: all 0.3s ease;
}

.footermain .package ul li:hover::before {
    transform: translateX(5px);
    color: var(--darshan-light-blue);
}

.footermain .package ul li a {
    color: #e8eefc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
    border-radius: 8px;
    padding-left: 0.5rem;
    margin-left: -0.5rem;
}

.footermain .package ul li a:hover {
    color: #F8CFB4;
    background: rgba(255, 255, 255, 0.1);
    padding-left: 1rem;
    margin-left: 0;
}

/* Footer Contact Info */
.footer-contact {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-contact h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--denovo-orange);
    padding-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--denovo-orange);
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: #e8eefc;
    font-weight: 500;
}

/* Footer Social Links */
.footer-social {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-social h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--denovo-orange), var(--darshan-light-blue));
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5);
    color: white;
}

.social-link.facebook:hover {
    background: linear-gradient(135deg, #1877f2, #0d6efd);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.5);
}

.social-link.twitter:hover {
    background: linear-gradient(135deg, #1da1f2, #0ea5e9);
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.5);
}

.social-link.linkedin:hover {
    background: linear-gradient(135deg, #0077b5, #0ea5e9);
    box-shadow: 0 10px 25px rgba(0, 119, 181, 0.5);
}

.social-link.youtube:hover {
    background: linear-gradient(135deg, #ff0000, #dc2626);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.5);
}

/* Footer Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.footer-newsletter h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.footer-newsletter p {
    color: #e8eefc;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--denovo-orange);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--denovo-orange), #ff6b35);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, var(--denovo-dark), var(--darshan-blue));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.copyright {
    background: rgba(0,0,0,0.3);
    padding: 1rem 0;
    margin-top: 1.5rem;
    position: relative;
}

.copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.copyright p {
    margin: 0;
    color: #d1d5db;
    font-size: 0.95rem;
    text-align: center;
}

.copyright a {
    color: #F8CFB4;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/*
   RESPONSIVE MEDIA QUERIES
*/
/* Responsive Footer */
@media (max-width: 991.98px) {
    .footer-section {
        padding: 1.5rem 0 0rem;
    }
    
    .footermain .package {
        margin-bottom: 0.8rem;
        padding: 0.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form button {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 767.98px) {
    .footer-section {
        padding: 1rem 0 0rem;
    }
    
    .footermain .package h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .footer-contact,
    .footer-newsletter {
        padding: 1rem;
    }
    
    /* Hero Content Responsive */
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 0.5rem 0;
    }
    
    /* Safety Valve Types Section Mobile */
    .valve-types-content {
        padding: 2rem 1.5rem;
    }
    
    .valve-types-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .quote-request-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        min-width: 220px;
    }
    
    /* Mobile Menu Improvements */
    .stellarnav > ul > li > a {
        padding: 1.2rem 0;
        font-size: 1.2rem;
    }
    
    .stellarnav .drop li a {
        padding: 1rem 1rem 1rem 2.5rem;
        font-size: 1.05rem;
    }
    
    .nav-toggle {
        width: 48px;
        height: 40px;
    }
    
    .nav-toggle span {
        width: 30px;
        height: 3px;
    }
}

@media (max-width: 575.98px) {
    .footer-section {
        padding: 0.8rem 0 0rem;
    }
    
    .footermain .package {
        padding: 0.8rem;
    }
    
    .footermain .package h4 {
        font-size: 1.4rem;
    }
    
    .social-links {
        gap: 0.6rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-contact,
    .footer-newsletter {
        padding: 0.8rem;
    }
    
    /* Safety Valve Types Section Small Mobile */
    .valve-types-content {
        padding: 1.5rem 1rem;
    }
    
    .valve-types-title {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .quote-request-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 200px;
    }
    
    /* Hero Content Responsive */
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}



@media (min-width: 768px) and (max-width: 991.98px){
    .eq-brand-img { width: 300px; height: 80px; }
    .eq-quote-img { max-width: 240px; }
}

@media (min-width: 1200px){
    .eq-brand-img { width: 560px; height: 90px; }
    .eq-quote-img { max-width: 320px; }
    .enquiry-modal .modal-dialog { max-width: 900px; }
}
.content-block {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--darshan-blue);
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.content-block .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--darshan-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    transform: translateX(5px);
}

.industry-item i {
    font-size: 1.25rem;
    color: var(--darshan-blue);
    width: 24px;
    text-align: center;
}

.industry-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 8px;
    border: 1px solid #bae6fd;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.25rem;
    color: var(--darshan-light-blue);
    width: 24px;
    text-align: center;
}

.feature-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Excellence List */
.excellence-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.excellence-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.excellence-list li:last-child {
    border-bottom: none;
}

.excellence-list li:hover {
    padding-left: 0.5rem;
}

.excellence-list li i {
    color: var(--denovo-orange);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Materials Grid */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.material-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 6px;
    border: 1px solid #fbbf24;
    transition: all 0.3s ease;
}

.material-item:hover {
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
    transform: scale(1.05);
}

.material-item i {
    color: var(--denovo-orange);
    font-size: 0.8rem;
}

.material-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Applications Lists */
.applications-list,
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.applications-list li,
.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.applications-list li:hover,
.benefits-list li:hover {
    padding-left: 0.5rem;
}

.applications-list li i {
    color: var(--darshan-blue);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.benefits-list li i {
    color: #10b981;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Technical Specifications Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border-radius: 8px;
    border: 1px solid #c084fc;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: linear-gradient(135deg, #e9d5ff 0%, #c084fc 100%);
    transform: translateY(-2px);
}

.spec-item i {
    color: #9333ea;
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.spec-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Additional Products */
.additional-products {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.product-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 8px;
    border: 1px solid #6ee7b7;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-link:hover {
    background: linear-gradient(135deg, #d1fae5 0%, #6ee7b7 100%);
    transform: translateY(-2px);
    color: var(--text-dark);
    text-decoration: none;
}

.product-link i {
    color: #059669;
    font-size: 1.1rem;
}

/* Call to Action Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .content-block {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .content-block .section-title {
        font-size: 1.8rem;
    }
    
    .industries-grid,
    .features-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .materials-grid,
    .specs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }
    
    .industry-item,
    .feature-item,
    .material-item,
    .spec-item {
        padding: 0.75rem;
    }
    
    .additional-products {
        flex-direction: column;
    }
    
    .product-link {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        min-width: auto;
    }
}

/* Ensure specs text does not overflow at ~768px */
@media (max-width: 768px){
    .product-page .spec-item span{ font-size: 1.15rem !important; line-height: 1.5 !important; word-break: break-word; hyphens: auto; }
}

@media (max-width: 575.98px) {
    .content-block {
        padding: 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .content-block .section-title {
        font-size: 1.4rem;
    }
    
    .industry-item,
    .feature-item,
    .material-item,
    .spec-item {
        padding: 0.625rem;
    }
    
    .industry-item span,
    .feature-item span,
    .material-item span,
    .spec-item span {
        font-size: 0.875rem;
    }
    
    .excellence-list li,
    .applications-list li,
    .benefits-list li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
}

/* Left Side Enquiry Button */
.left-enquiry-btn {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.enquiry-btn-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--darshan-blue), var(--darshan-light-blue));
    color: white;
    text-decoration: none;
    padding: 15px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    min-width: 60px;
    text-align: center;
}

.enquiry-btn-left:hover {
    background: linear-gradient(135deg, var(--darshan-dark), var(--darshan-blue));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    text-decoration: none;
}

.enquiry-btn-left i {
    font-size: 18px;
    margin-bottom: 5px;
}

.enquiry-btn-left span {
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
}

/* Responsive for left enquiry button */
@media (max-width: 768px) {
    .left-enquiry-btn {
        left: 10px;
    }
    
    .enquiry-btn-left {
        padding: 12px 8px;
        min-width: 50px;
        font-size: 12px;
    }
    
    .enquiry-btn-left i {
        font-size: 16px;
        margin-bottom: 3px;
    }
    
    .enquiry-btn-left span {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .left-enquiry-btn {
        left: 5px;
    }
    
    .enquiry-btn-left {
        padding: 10px 6px;
        min-width: 45px;
    }
    
    .enquiry-btn-left i {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .enquiry-btn-left span {
        font-size: 9px;
    }
}

/*
   ABOUT PAGE STYLES
*/
.page-banner {
    background: #124876;
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.crumb a{position:relative;color:inherit;text-decoration:none}
.crumb a::after{content:"";position:absolute;left:0;bottom:-2px;height:2px;background:#fff;opacity:.9;width:0;transition:width .25s ease}
.crumb a:hover::after{width:100%}

.cta-pill, .srv-cta, .pill {
    text-decoration: none !important;
}
.cta-pill:hover, .srv-cta:hover, .pill:hover {
    text-decoration: none !important;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

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

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

.about-section {
    background: var(--white);
}

.about-content h2 {
    color: var(--darshan-blue);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.about-content h3 {
    color: var(--darshan-blue);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-content .lead {
    font-weight: 600;
    color: var(--darshan-blue);
    margin-bottom: 1.5rem;
}

.about-content p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-section p { text-align: justify; color: var(--black);}
.about-section p, .about-section ul, .about-section ol, .about-section li { font-size: 1.3rem !important; }

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-image img {
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.clients-section {
    background: white;
    padding: 40px 0;
    border-radius: 15px;
    margin: 24px 0;
}

.why-choose-us h3 { text-align: center; color: #1e3a8a; margin-bottom: 1.75rem; font-weight: 600; font-size: 1.8rem; }

.about-section .row.mb-5 { margin-bottom: 1.5rem !important; }
.about-section .row.mb-5:last-of-type { margin-bottom: 0 !important; }
.industries-section .row { row-gap: 24px; }

.clients-section h3 {
    color: #1e3a8a;
    font-weight: 600;
    font-size: 1.8rem;
}

.client-logos {
    margin-top: 40px;
}

.client-logo {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.client-logo img {
    max-height: 60px;
    width: auto;
    margin-bottom: 10px;
}

.client-logo span {
    font-weight: 600;
    color: var(--darshan-blue);
    font-size: 14px;
}

.industries-section {
    margin: 40px 0;
}

.industries-section h3 {
    color: #1e3a8a;
    text-align: center;
    font-weight: 600;
    font-size: 1.8rem;
}

.industries-section > p,
.industries-section .section-intro,
.industries-section .intro {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.8;
}
.clients-section > p,
.clients-section .section-intro,
.clients-section .intro {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.8;
}

.industry-card {
    position: relative;
    background: #000;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 260px;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.industry-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.88);
}

.industry-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 15%, rgba(0,0,0,0.25) 35%, rgba(0,0,0,0.05) 65%, rgba(0,0,0,0) 100%);
}

.industry-card h5 {
    position: absolute;
    left: 16px;
    bottom: 14px;
    right: 16px;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0;
    z-index: 1;
    text-align: left;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.why-choose-us {
    background: white;
    padding: 48px 0;
    border-radius: 15px;
    margin: 24px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    background: linear-gradient(135deg, var(--darshan-blue), var(--darshan-light-blue));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-icon .icon-shield,
.feature-icon .icon-clock,
.feature-icon .icon-truck,
.feature-icon .icon-certificate,
.feature-icon .icon-cogs,
.feature-icon .icon-award,
.feature-icon .icon-fireprotection,
.feature-icon .icon-residentialapplications,
.feature-icon .icon-flowcapacity,
.feature-icon .icon-industrialapplications,
.feature-icon .icon-common-types{
    width: 26px;
    height: 26px;
    display: inline-block;
    background-color: #ffffff;
    -webkit-mask-repeat: no-repeat; -webkit-mask-position: center; -webkit-mask-size: contain;
    mask-repeat: no-repeat; mask-position: center; mask-size: contain;
}
.feature-icon .icon-shield{ -webkit-mask-image: url('images/font-shield.svg'); mask-image: url('images/font-shield.svg'); }
.feature-icon .icon-clock{ -webkit-mask-image: url('images/font-clock.svg'); mask-image: url('images/font-clock.svg'); }
.feature-icon .icon-truck{ -webkit-mask-image: url('images/font-truck.svg'); mask-image: url('images/font-truck.svg'); }
.feature-icon .icon-certificate{ -webkit-mask-image: url('images/font-certificate.svg'); mask-image: url('images/font-certificate.svg'); }
/* Fire protection custom icon */
.feature-icon .icon-fireprotection{ -webkit-mask-image: url('images/font-fireprotection.svg'); mask-image: url('images/font-fireprotection.svg'); }
/* Water Safety Relief Valve page custom icons */
.feature-icon .icon-residentialapplications{ -webkit-mask-image: url('images/font-residentialapplications.svg'); mask-image: url('images/font-residentialapplications.svg'); }
.feature-icon .icon-flowcapacity{ -webkit-mask-image: url('images/font-flowcapacity.png'); mask-image: url('images/font-flowcapacity.png'); }
.feature-icon .icon-industrialapplications{ -webkit-mask-image: url('images/font-industrialapplications.svg'); mask-image: url('images/font-industrialapplications.svg'); }
.feature-icon .icon-common-types{ -webkit-mask-image: url('images/font-common-types.svg'); mask-image: url('images/font-common-types.svg'); }
/* Map remaining advantage icons to your font SVG set */
.feature-icon .icon-cogs{ -webkit-mask-image: url('images/font-setting.svg'); mask-image: url('images/font-setting.svg'); }
.feature-icon .icon-award{ -webkit-mask-image: url('images/font-award.svg'); mask-image: url('images/font-award.svg'); }

.feature-content h5 {
    color: var(--darshan-blue);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-content p {
    color: var(--black);
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Responsive for About Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-content h3 {
        font-size: 1.5rem;
    }
    
    .about-content .lead {
        font-size: 1.1rem;
    }
    
    .client-logo {
        height: 100px;
        padding: 15px;
    }
    
    .client-logo img {
        max-height: 40px;
    }
    
    .industry-card {
        height: 220px;
        padding: 0;
    }
    
    .industry-card img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    .feature-card {
        padding: 20px;
        gap: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.rail-btn .icon-plane{
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    background-color: #ffffff;
    -webkit-mask-image: url('images/font-enquiry-plane.svg');
    -webkit-mask-repeat: no-repeat; -webkit-mask-position: center; -webkit-mask-size: contain;
    mask-image: url('images/font-enquiry-plane.svg');
    mask-repeat: no-repeat; mask-position: center; mask-size: contain;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}
.rail-btn:hover .icon-plane{ transform: rotate(90deg) scale(1.2); }

/* Contact Page - Map Alignment Fix */
.contact-page .contact-hero{ position: relative; z-index: 0; border-radius: 12px; overflow: hidden; }
.contact-page .contact-hero .ratio{ height: 100%; width: 100%; }
.contact-page .contact-hero iframe{ display: block; width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: 0; }
.contact-page .contact-map{ min-height: 520px; }
@media (max-width: 991.98px){ .contact-page .contact-map{ min-height: 380px; } }
@media (max-width: 575.98px){ .contact-page .contact-map{ min-height: 320px; } }

/* Contact Page - Eye-catching cards and actions */
.contact-page .content-block{ border-left: 6px solid var(--denovo-orange); background: linear-gradient(180deg, rgba(255,107,53,.04), #fff); }
.contact-page .content-block .section-title{ margin-bottom: .75rem; }
.contact-page .contact-cards{ margin-top: .25rem; }
.contact-page .info-card{ 
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    border: 1px solid #e5e7eb !important;
    border-left: 5px solid var(--darshan-blue) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.contact-page .info-card:hover{ 
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0,0,0,.12);
    border-left-color: var(--denovo-orange) !important;
}
.contact-page .info-card h5{ font-weight: 800; letter-spacing: .3px; }
.contact-page .info-card a{ color: var(--darshan-dark); text-decoration: none; font-weight: 700; }
.contact-page .info-card a:hover{ color: var(--denovo-orange); text-decoration: underline; }

/* Address card emphasis */
.contact-page .address-card{
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    border-left: 6px solid var(--denovo-orange) !important;
}
.contact-page .info-title{
    color: var(--darshan-blue);
    margin: 0 0 .35rem;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.contact-page .info-title::after{ display: none; }
.contact-page address{ color: var(--text-dark); line-height: 1.7; font-size: 1.05rem; margin: 0; }
.contact-page .contact-cards .info-card p{ margin: 0; line-height: 1.7; }

/* Address first line emphasis */
.contact-page .address-text .addr-line{ display:block; }
.contact-page .address-text .addr-line--primary{ font-size: 1.25rem; font-weight: 800; color: inherit; }

.contact-page .contact-actions{ display:flex; flex-wrap:wrap; gap:.5rem; margin-top:.5rem; }
.contact-page .contact-actions .btn{ border-radius:10px; padding:.55rem 1rem; font-weight:700; letter-spacing:.3px; }
.contact-page .contact-actions .btn-outline-primary{ border-color: var(--darshan-blue); color: var(--darshan-blue); }
.contact-page .contact-actions .btn-outline-primary:hover{ background: var(--darshan-blue); color:#fff; }
.contact-page .contact-actions .btn-success{ background: linear-gradient(135deg, #16a34a, #22c55e); border:0; }
.contact-page .contact-actions .btn-success:hover{ filter: brightness(.95); }

.contact-page .page-banner{ 
    background: #124876;
}


.disclaimer-page { background: linear-gradient(180deg, rgba(255,107,53,.05), transparent); }
.disclaimer-card { border-radius: 14px; border: 1px solid #f1f5f9; }
.disclaimer-title { color: var(--denovo-orange); text-align: center; font-weight: 800; letter-spacing: .5px; margin-bottom: .5rem; }
.disclaimer-subtitle { text-align: center; color: #6b7280; margin-bottom: 1.25rem; }
.disclaimer-sep { width: 72px; height: 3px; background: var(--denovo-orange); margin: 0 auto 1.25rem; border-radius: 3px; }
.disclaimer-card .section-title { font-size: 1.125rem; font-weight: 700; margin-top: 1rem; }
.disclaimer-card p { line-height: 1.75; }
.disclaimer-card address { line-height: 1.7; margin-bottom: .75rem; white-space: pre-line; }


.product-page p, .product-page li, .product-page ul, .product-page ol, .product-page .content, .product-page .description, .product-page .text-content, .product-page .intro-text, .product-page .content-block p, .product-page .content-block li {
    font-size: 1.3rem !important;
}

.product-page .exporter-card{
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-page .exporter-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.12);
}
.product-page .exporter-card img{
    transition: transform 0.4s ease;
}
.product-page .exporter-card:hover img{
    transform: scale(1.06);
}
.product-page .exporter-card::after{
    content: '';
    position: absolute;
    top: -20%;
    left: -40%;
    width: 60%;
    height: 200%;
    transform: rotate(25deg);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0) 100%);
    transition: transform 0.6s ease, opacity 0.6s ease;
    pointer-events: none;
    opacity: 0;
}
.product-page .exporter-card:hover::after{
    transform: translateX(220%) rotate(25deg);
    opacity: 1;
}

.product-page .spec-card h5 { font-size: 1.4rem !important; }
.product-page .feature-card h5,
.product-page .feature-content h5 { font-size: 1.35rem !important; }
/* Product pages: mobile sizing for centered section titles */
@media (max-width: 767.98px){
    .product-page .section-title.text-center{ font-size: 1.6rem !important; line-height: 1.25; }
}
@media (max-width: 575.98px){
    .product-page .section-title.text-center{ font-size: 1.5rem !important; line-height: 1.25; }
}

/* Thank You Page Styles */
.thank-you-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.thank-you-img{
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-title {
    color: #1e3a8a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.thank-you-sub-message {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.5;
}

.thank-you-actions {
    margin-top: 2rem;
}

.thank-you-actions .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.thank-you-actions .btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border: none;
}

.thank-you-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.thank-you-actions .btn-outline-primary {
    border: 2px solid #1e3a8a;
    color: #1e3a8a;
}

.thank-you-actions .btn-outline-primary:hover {
    background: #1e3a8a;
    border-color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

/* Responsive Thank You Page */
@media (max-width: 767.98px) {
    .thank-you-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    .thank-you-img{ max-width: 75%; }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .thank-you-message {
        font-size: 1.1rem;
    }
    
    .thank-you-sub-message {
        font-size: 1rem;
    }
    
    .thank-you-actions .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .thank-you-actions .btn:not(:last-child) {
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .thank-you-content {
        padding: 1.5rem 1rem;
    }
    .thank-you-img{ max-width: 85%; }
    
    .thank-you-title {
        font-size: 1.75rem;
    }
    
    .thank-you-message {
        font-size: 1rem;
    }
    
    .thank-you-sub-message {
        font-size: 0.95rem;
    }
    
    .thank-you-actions .btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }
}.modal-lg{width:750px}.modal-dialog{margin:7% auto}.inq-btn-home{position:fixed;top:300px;right:10px;width:45px;height:50px;z-index:11}.modal{z-index:999999!important}.modal-header{padding:10px 15px 0 15px;background-color:#373435}.modal-title{font-size:18px;color:#fff;text-align:left;padding-bottom:9px}.modal-body{padding:0 15px 10px 15px}.capside{float:left;margin-top:25px}.close{position:absolute;right:16px;top:15px;font-size:28px;color:#fff!important}.pop-img{margin-top:10%;margin-bottom:20px;width:300px;height:auto}button.close{-webkit-appearance:none;cursor:pointer;background:0 0;border:0;background-color:#b52414!important;padding:6px 15px;margin-top:-14px!important;position:absolute;opacity:1;color:#fff!important}@media only screen and (max-width:768px){.modal-lg{width:75%;margin:15px auto}.dmo{display:none}.modal-footer{padding:15px 21px;text-align:right;border-top:none;margin-top:-72px;position:relative;z-index:999;width:120px;float:right}.inq-btn-home img{width:30px; height:auto;}.moClose{display:none;}.modal-body{padding: 0 15px 45px 15px;}.modal-dialog{margin:15% auto}}.right-ok{background-repeat:no-repeat;background-position:8px}.wrong-icon{background-repeat:no-repeat;background-position:8px}.example{margin:15px;font-size:14px;color:#656666;content:"Example";background-color:#fff;border-color:#929494;border-width:1px;border-radius:4px;padding:10px 20px 10px;border-style:solid}.form-control-feedback{display:none}.has-feedback label~.form-control-feedback{top:0!important}.error{text-align:left!important;display:table!important}.thnak4{margin-top:50px}.has-feedback .form-control{padding-right:42.5px}.form-group{margin:15px 0!important}.form-group input{font-size:14px !important;line-height: 24px;border-radius: 5px;!important;border-bottom: 2px solid #fe5c15;}.form-group textarea{font-size:14px !important;line-height: 24px;border-radius: 5px;!important;border-bottom: 2px solid #fe5c15;}.form-group select{font-size:14px !important;line-height: 24px;border-radius: 5px;!important;border-bottom: 2px solid #fe5c15;}.Submit-box{background-color:#fe5c15;border:1px solid #fe5c15;padding:10px 15px;color:#fff;border-radius:5px}.Submit-box:hover{background-color:#141414;border:1px solid #141414}.input-group .form-control:last-child, .input-group-addon:last-child {font-size:14px !important;line-height: 24px;width:100% !important}.input-group .form-control:last-child, .input-group-addon:last-child {font-size:14px !important;line-height: 24px;border-radius: 5px;width:100% !important;border-bottom: 2px solid #fe5c15;}.input-group {position: relative;display: table;border-collapse: separate;margin: 20px 0;width: 100% !important;}.Submit-box {background-color:#fe5c15;color: #fff;padding:10px 15px;border:1px solid #fe5c15;font-size:17px;border-radius: 5px;}.Submit-box:hover{background-color:#141414;border:1px solid #141414;}.form-control:focus{box-shadow: none !important;}.input-group>.form-control, .input-group>.form-floating, .input-group>.form-select {position: relative;flex: 1 1 auto;width: 100%;min-width: 0;}