/* 
 * Charmil Chemicals Clone Stylesheet
 * Replicates the Rife Free & Elementor premium design of charmil.in
 */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700;800&display=swap');

:root {
    --primary-color: #cf2e2e;
    /* Strong Red */
    --secondary-color: #0e5aa7;
    /* Dark Blue */
    --dark-color: #323232;
    /* Heading color (rgba(50,50,50,1)) */
    --light-bg: #f8f9fa;
    /* Soft Grey section bg */
    --text-color: #555555;
    /* Body text color */
    --footer-bg: #181818;
    /* Deep dark footer bg */
    --border-radius: 8px;
    /* Cards border-radius */
    --font-family: 'Source Sans Pro', sans-serif;
    --transition: all 0.3s ease-in-out;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

body,
p,
span,
a,
li,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
button,
select {
    font-family: var(--font-family) !important;
}

body {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #1f1f1f;
    /* Default link color (rgba(31,31,31,1)) */
    transition: var(--transition);
}

a:hover {
    color: #565656;
    /* Default hover color (rgba(86,86,86,1)) */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 38px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 15px;
}

h6 {
    font-size: 13px;
}

/* Sticky Header */
header#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

header#header.scrolled {
    background-color: #ffffff;
    padding: 5px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.logo-container img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

header#header.scrolled .logo-container img {
    height: 50px;
}

/* Navigation Menu */
.navigation-bar {
    display: flex;
    align-items: center;
}

ul.top-menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

ul.top-menu>li {
    position: relative;
    padding: 15px 12px;
}

ul.top-menu>li>a {
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
}

ul.top-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

ul.top-menu>li:hover>a {
    color: var(--primary-color);
}

ul.top-menu>li:hover>a::after,
ul.top-menu>li.current-menu-item>a::after {
    width: 100%;
}

/* Submenu Dropdowns */
ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 250px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    list-style: none;
    padding: 10px 0;
    border-radius: 4px;
    z-index: 1010;
    max-height: 400px;
    overflow-y: auto;
}

ul.top-menu>li:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

ul.sub-menu li {
    padding: 0;
}

ul.sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

ul.sub-menu li:last-child a {
    border-bottom: none;
}

ul.sub-menu li a:hover {
    background-color: #f7f9fc;
    color: var(--primary-color);
    padding-left: 25px;
}

/* Header Tools & Buttons */
#header-tools {
    display: flex;
    align-items: center;
    gap: 15px;
}

#header-tools button {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
}

#header-tools button:hover {
    color: var(--primary-color);
}

#mobile-menu-opener {
    display: none;
}

/* Slide-out Side Menu Drawer */
#side-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    padding: 40px 30px;
    overflow-y: auto;
}

#side-menu.open {
    right: 0;
}

#side-menu .close-sidebar {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
}

#side-menu img {
    max-width: 100%;
    margin-bottom: 30px;
}

#side-menu .widget {
    margin-bottom: 30px;
}

#side-menu h3.title {
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
    margin-bottom: 15px;
}

#content-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

#content-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Page Layout Spacing */
main {
    margin-top: 80px;
    /* Offset for sticky header */
}

/* Hero Section */
.hero-section {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    transition: background-image 1s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 20px;
}

.hero-content h3 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Typing / Writing Effect */
.written-lines {
    color: #ffffff;
    border-right: 3px solid var(--secondary-color);
    animation: blink-caret 0.75s step-end infinite;
    white-space: nowrap;
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: var(--secondary-color);
    }
}

.btn-custom {
    display: inline-block;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary-custom:hover {
    background-color: var(--dark-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(14, 90, 167, 0.3);
}

.btn-secondary-custom {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-secondary-custom:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Section Common Styles */
.section-padding {
    padding: 60px 0;
}

.section-bg {
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    color: #777;
}

/* About Section */
.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 100%;
    transition: var(--transition);
}

.about-image img:hover {
    transform: translateY(-5px);
}

/* Counter Box */
.counter-section {
    background: #0b1c33;
    color: #ffffff;
    padding: 70px 0;
}

.counter-box {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.counter-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.counter-number {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--primary-color) !important;
    letter-spacing: -0.5px;
}

.counter-title {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

/* Product Cards Grid */
.product-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #eef2f6;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(207, 46, 46, 0.25);
}

.product-card-img-wrap {
    background: linear-gradient(180deg, #fafbfd 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #eef2f6;
}

.product-card-img-wrap img,
.product-card img {
    max-height: 175px;
    max-width: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
    background-color: transparent;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    outline: none;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.06));
}

.product-card:hover .product-card-img-wrap img,
.product-card:hover img {
    transform: scale(1.08);
}

.product-info {
    padding: 25px;
    text-align: left;
}

/* Product Detail Main Image Box */
.product-detail-img-box {
    background: linear-gradient(180deg, #fafbfd 0%, #f1f5f9 100%);
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 35px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    overflow: hidden;
}

.product-detail-img-box img {
    max-height: 320px;
    max-width: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.08));
    transition: transform 0.4s ease;
}

.product-detail-img-box:hover img {
    transform: scale(1.04);
}

.product-tag {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 8px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-info p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Vision / Work Styles */
.vision-section {
    background: linear-gradient(rgba(27, 46, 75, 0.9), rgba(27, 46, 75, 0.9)), url('../img/Chemical-Products.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.vision-section h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

/* Boxed Accordion Styling */
.accordion-item-custom {
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 8px;
    margin-bottom: 12px;
    padding: 18px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    text-align: left;
}

.accordion-item-custom:hover {
    border-color: #e2e8f0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.accordion-item-custom.active {
    border-left-color: var(--primary-color);
    border-color: #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.accordion-title-custom {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-item-custom.active .accordion-title-custom {
    color: var(--primary-color);
}

.accordion-title-custom i {
    font-size: 14px;
    transition: var(--transition);
    color: #888888;
    background: #f1f5f9;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.accordion-item-custom.active .accordion-title-custom i {
    color: #ffffff;
    background: var(--primary-color);
    transform: rotate(45deg);
}

.accordion-content-custom {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14.5px;
    color: #555555;
    line-height: 1.6;
}

.accordion-item-custom.active .accordion-content-custom {
    max-height: 300px;
    padding-top: 15px;
    margin-top: 5px;
}

/* Advantages Image Styling */
.advantages-img-new {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    object-fit: cover;
    width: 100%;
    max-height: 420px;
}

.advantages-img-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.accordion-item-custom.active .accordion-title-custom i.fa-hand-point-right {
    transform: translateX(5px);
}

/* Testimonial slider */
.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 15px;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark-color);
    text-transform: uppercase;
}

.testimonial-job {
    color: var(--primary-color);
    font-size: 13px;
    text-transform: uppercase;
}

/* Quick Contact Banner */
.cta-banner {
    padding: 65px 0;
    position: relative;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
}

.cta-banner h2 {
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-primary-custom {
    background-color: #ffffff !important;
    color: var(--secondary-color) !important;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid #ffffff;
}

.cta-banner .btn-primary-custom:hover {
    background-color: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff;
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Page Headers */
.page-header {
    background: linear-gradient(rgba(11, 28, 51, 0.9), rgba(11, 28, 51, 0.9)), url('../img/Chemical-Products.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
    margin-bottom: 30px;
}

.page-header p {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.page-header h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Product Details Sidebar Navigation */
.sidebar-nav-title {
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.sidebar-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav-list li {
    margin-bottom: 10px;
    padding-left: 0 !important;
}

.sidebar-nav-list li::before {
    content: none !important;
}

.sidebar-nav-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 12px;
    background-color: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
}

.sidebar-nav-list li a:hover,
.sidebar-nav-list li.active a {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.sidebar-nav-list li a i {
    font-size: 12px;
}

/* Gallery Lightbox Masonry */
.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    background-color: #ffffff;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item-title {
    padding: 15px;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
    color: var(--dark-color);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-caption {
    color: #ffffff;
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 35px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

/* Contact Details Page Cards */
.contact-detail-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    border: 1px solid #f0f0f0;
    margin-bottom: 25px;
    height: 100%;
}

.contact-detail-card i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Forms CSS */
.form-group-custom {
    margin-bottom: 20px;
}

.form-control-custom {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-family);
    transition: var(--transition);
}

.form-control-custom:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 8px rgba(14, 90, 167, 0.15);
}

/* Footer layout */
footer#footer {
    background-color: var(--footer-bg);
    color: #b0b0b0;
    padding: 60px 0 0 0;
}

footer#footer h3.title {
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

footer#footer h3.title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

footer#footer a {
    color: #999;
}

footer#footer a:hover {
    color: #ffffff;
}

footer#footer ul {
    list-style: none;
    padding: 0;
}

footer#footer ul li {
    margin-bottom: 12px;
}

.foot-items {
    border-top: 1px solid #222;
    padding: 25px 0;
    margin-top: 40px;
}

.foot-text {
    font-size: 14px;
}

/* WhatsApp and Scroll to Top buttons */
#okapi-wasb-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    opacity: 0.9;
    transition: var(--transition);
}

#okapi-wasb-button:hover {
    opacity: 1;
    transform: scale(1.05);
}

#okapi-wasb-button img {
    width: 60px;
    height: 60px;
}

#to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: var(--primary-color);
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

#to-top.show {
    opacity: 1;
    visibility: visible;
}

#to-top:hover {
    background-color: var(--dark-color);
}

/* Map frame */
.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    main {
        margin-top: 70px;
    }

    header#header {
        padding: 5px 0;
    }

    .head {
        padding: 10px 15px;
    }

    ul.top-menu {
        display: none;
        /* Hide default menu, shown via sidebar/hamburger on mobile */
    }

    #mobile-menu-opener {
        display: block;
    }

    .hero-content h3 {
        font-size: 32px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .gallery-grid {
        column-count: 1;
    }
}

@media (max-width: 480px) {
    .hero-content h3 {
        font-size: 26px;
    }

    .btn-custom {
        padding: 10px 25px;
        font-size: 13px;
    }
}

/* Work Cards with red borders */
.work-card {
    border: 1px solid var(--primary-color) !important;
    border-radius: 6px;
    padding: 30px 20px;
    background-color: #ffffff;
    transition: var(--transition);
}

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

.work-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Video Thumbnail container */
.video-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.video-container img {
    width: 100%;
    height: auto;
    transition: var(--transition);
    transform: scale(1.02);
}

.video-container:hover img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(14, 90, 167, 0.9);
    /* Theme blue color matching live */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-container:hover .video-play-btn {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Premium Core Value Cards */
.core-value-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 4px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.core-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(207, 46, 46, 0.12);
    border-top-color: var(--primary-color);
}

.core-value-card:hover .value-icon-wrap {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: rotateY(180deg);
}

.core-value-card.active-value-card {
    border-top-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(207, 46, 46, 0.06);
}

.core-value-card.active-value-card .value-icon-wrap {
    background-color: var(--primary-color);
    color: #ffffff;
}

.value-icon-wrap {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(207, 46, 46, 0.07);
    color: var(--primary-color);
    font-size: 30px;
    transition: all 0.5s ease;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.value-text {
    font-size: 14.5px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Premium Industry Cards styling */
.industry-card-new {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 300px;
    cursor: pointer;
}

.industry-card-new .industry-img-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.industry-card-new .industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.industry-card-new .industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    transition: background 0.4s ease;
}

.industry-card-new .industry-content {
    text-align: left;
    width: 100%;
}

.industry-card-new .industry-tag {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 5px;
}

.industry-card-new .industry-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0px;
    transition: transform 0.4s ease;
}

.industry-card-new .industry-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
    opacity: 0;
    max-height: 0;
    transition: opacity 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
}

/* Hover Effects */
.industry-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.industry-card-new:hover .industry-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.15) 100%);
}

.industry-card-new:hover .industry-desc {
    opacity: 1;
    max-height: 60px;
    margin-top: 8px;
}

/* About Page Details */
.about-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 8px;
}

.about-lead {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.5;
    margin-bottom: 20px;
}

.about-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.about-feature-list li {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
    text-align: left;
}

.about-feature-list li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 12px;
}

.about-img-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-img-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.about-img-box:hover img {
    transform: scale(1.03);
}

/* Team Pillar Cards */
.team-pillar-card {
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.015);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    text-align: left;
}

.team-pillar-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border-color: #e2e8f0;
}

.team-pillar-icon {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background-color: rgba(207, 46, 46, 0.07);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.team-pillar-card:hover .team-pillar-icon {
    background-color: var(--primary-color);
    color: #ffffff;
}

.team-pillar-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 6px;
}

.team-pillar-info p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Option Card styling */
.option-card {
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06) !important;
    border-color: var(--secondary-color) !important;
}

/* Testimonials Styling */
.testimonials-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 85px 0;
}

.testimonial-card-new {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid #eef2f6;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.testimonial-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(207, 46, 46, 0.2);
}

.testimonial-quote-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 38px;
    color: rgba(207, 46, 46, 0.08);
    pointer-events: none;
    transition: all 0.3s ease;
}

.testimonial-card-new:hover .testimonial-quote-icon {
    color: rgba(207, 46, 46, 0.18);
    transform: scale(1.1);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 20px;
}

.testimonial-text-new {
    font-size: 15.5px;
    color: #4a5568;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #083c72 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(14, 90, 167, 0.2);
}

.testimonial-info-new h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 3px;
}

.testimonial-info-new span {
    font-size: 12px;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Custom CTA card */
.cta-card-wrapper {
    padding: 60px 0;
    background-color: #ffffff;
}

.cta-card-box {
    background-image: linear-gradient(135deg, rgba(14, 90, 167, 0.95) 0%, rgba(11, 28, 51, 0.98) 100%), url('../img/cta-background.png');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 50px 60px;
    box-shadow: 0 20px 45px rgba(14, 90, 167, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-tagline {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    display: inline-block;
    background: rgba(207, 46, 46, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.cta-card-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.cta-card-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin-bottom: 0;
    max-width: 600px;
}

.cta-btn-group {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.cta-btn-primary:hover {
    background-color: #b22424;
    transform: translateY(-2px);
    color: #ffffff;
}

.cta-btn-outline {
    background-color: transparent;
    color: #ffffff;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.cta-btn-outline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Standard Content Lists Styling for clean bullet formatting */
.section-padding ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.section-padding ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.section-padding ul li::before {
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 6px;
    color: var(--primary-color);
    position: absolute;
    left: 2px;
    top: 9px;
}

/* Disable bullet styling for technical specs list groups */
.list-group li::before {
    content: none !important;
}

.list-group li {
    padding-left: 0 !important;
}

/* Product Details HTML Content Tables */
.product-details-desc table {
    width: 100% !important;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
}

.product-details-desc table td {
    padding: 12px 18px;
    border: 1px solid #eef2f6;
    color: #4a5568;
    background-color: #ffffff !important;
}

/* Style key column with a premium light grey/blue background and override inline yellow */
.product-details-desc table td:first-child {
    background-color: #f8fafc !important;
    font-weight: 600;
    color: var(--secondary-color) !important;
    width: 35%;
}

.product-details-desc table td strong {
    color: var(--secondary-color);
}

.bg-primary-soft {
    background-color: rgba(207, 46, 46, 0.08) !important;
    color: var(--primary-color) !important;
}

.bg-danger-soft {
    background-color: rgba(207, 46, 46, 0.08) !important;
    color: var(--primary-color) !important;
}

/* Silica Gel Showcase Section */
.silica-video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #111;
}

.silica-video-wrapper img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.9;
}

.silica-video-wrapper:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

.silica-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease;
}

.silica-video-wrapper:hover .silica-video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.silica-play-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    padding-left: 4px;
    box-shadow: 0 4px 20px rgba(207, 46, 46, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.silica-play-btn::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    animation: playRipple 2s infinite;
}

@keyframes playRipple {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.silica-video-wrapper:hover .silica-play-btn {
    transform: scale(1.1);
    background-color: #b22020;
}

.silica-stats-strip {
    display: flex;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 16px;
}

.silica-stat-unit {
    text-align: center;
    flex: 1;
}

.silica-stat-unit:not(:last-child) {
    border-right: 1px solid #e2e8f0;
}

.silica-stat-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    line-height: 1.2;
}

.silica-stat-title {
    font-size: 11px;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* ========================================================
   "What is Silica Gel" Science Section
   ======================================================== */
.silica-video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    display: block;
    cursor: pointer;
}

.silica-video-wrapper img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.silica-video-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 330px;
    border: none;
    display: block;
}

.silica-video-wrapper:hover img {
    transform: scale(1.04);
}

.silica-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.silica-video-wrapper:hover .silica-video-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.yt-play-icon-box {
    width: 76px;
    height: 52px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.silica-video-wrapper:hover .yt-play-icon-box {
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}


.silica-stats-strip {
    display: flex;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 16px;
}

.silica-stat-unit {
    text-align: center;
    flex: 1;
}

.silica-stat-unit:not(:last-child) {
    border-right: 1px solid #e2e8f0;
}

.silica-stat-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    line-height: 1.2;
}

.silica-stat-title {
    font-size: 11px;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 2px;
    display: block;
}

.silica-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 22px 0;
}

@media (max-width: 767px) {
    .silica-feature-grid {
        grid-template-columns: 1fr;
    }
}

.silica-feature-item {
    display: flex;
    align-items: flex-start;
    padding: 14px 16px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.silica-feature-item:hover {
    background: #ffffff;
    border-color: rgba(207, 46, 46, 0.25);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.silica-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(207, 46, 46, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.silica-feature-item:hover .silica-feature-icon {
    background: var(--primary-color);
    color: #ffffff;
}

.silica-feature-text h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.silica-feature-text p {
    font-size: 12.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.45;
}

.btn-outline-custom {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
    text-decoration: none;
}

.btn-outline-custom:hover {
    background: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 90, 167, 0.25);
}


/* ========================================================
   Contact Page Detail Cards & Directions Badge
   ======================================================== */
.contact-detail-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 26px 20px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: all 0.3s ease;
}

/* ========================================================
   Clean & Simple Contact Page Styles
   ======================================================== */

/* Page Header */
.page-header {
    background: #181818;
    padding: 55px 0 50px;
    text-align: center;
    color: #ffffff;
}

.page-header h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-header p {
    color: #a0aec0;
    font-size: 13.5px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-padding {
    padding: 60px 0;
}

/* Contact Detail Cards */
.contact-detail-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 26px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-detail-card:hover {
    border-color: #cf2e2e;
    box-shadow: 0 6px 20px rgba(207, 46, 46, 0.1);
    transform: translateY(-3px);
}

.contact-detail-card i.contact-main-icon {
    font-size: 28px;
    color: #cf2e2e;
    margin-bottom: 12px;
    display: inline-block;
}

.contact-detail-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 6px;
}

.contact-detail-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.directions-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #cf2e2e;
    background: #fff1f1;
    padding: 5px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.contact-detail-card:hover .directions-link {
    background: #cf2e2e;
    color: #ffffff;
}

/* Form Styles */
.form-group-custom {
    margin-bottom: 18px;
}

.form-group-custom label {
    font-size: 14px;
    font-weight: 600;
    color: #323232;
    margin-bottom: 6px;
    display: block;
}

.form-control-custom {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 11px 14px;
    font-size: 14px;
    color: #495057;
    transition: all 0.2s ease;
    outline: none;
}

.form-control-custom:focus {
    border-color: #cf2e2e;
    box-shadow: 0 0 0 3px rgba(207, 46, 46, 0.15);
}

.form-control-custom::placeholder {
    color: #94a3b8;
    font-size: 13.5px;
}

textarea.form-control-custom {
    padding: 12px 14px;
    resize: vertical;
    min-height: 115px;
}

.btn-custom,
.btn-primary-custom {
    display: inline-block !important;
    width: auto !important;
    max-width: max-content;
    background-color: #cf2e2e;
    color: #ffffff !important;
    border: none;
    border-radius: 6px;
    padding: 12px 36px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.25s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
    line-height: 1.5;
}

.btn-custom:hover,
.btn-primary-custom:hover {
    background-color: #b91c1c;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(207, 46, 46, 0.3);
}

/* Form Submit button full width */
#contactInquiryForm .btn-primary-custom,
.btn-submit-full {
    width: 100% !important;
    display: block;
}


/* Map Container */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

/* ========================================================
   Testimonials & CTA Sections on Homepage
   ======================================================== */
.testimonials-section {
    padding: 70px 0 60px;
    background: #f8fafc;
}

.testimonial-card-new {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 22px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(207, 46, 46, 0.25);
}

.testimonial-quote-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    color: #f1f5f9;
    pointer-events: none;
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 12px;
    font-size: 13px;
    display: flex;
    gap: 3px;
}

.testimonial-text-new {
    font-size: 14px;
    color: #475569;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author-box {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #cf2e2e 0%, #0e5aa7 100%);
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.testimonial-info-new h5 {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.testimonial-info-new span {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-info-new span i {
    color: #cf2e2e;
}

/* Quick Contact Call to Action Box */
.cta-card-wrapper {
    padding: 20px 0 60px;
    background: #f8fafc;
}

.cta-card-box {
    background: linear-gradient(135deg, #cf2e2e 0%, #0e5aa7 100%);
    border-radius: 12px;
    padding: 40px 35px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(207, 46, 46, 0.25);
}

.cta-tagline {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.cta-card-box h2 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-card-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14.5px;
    margin: 0;
    line-height: 1.5;
}

.cta-btn-primary {
    background: #ffffff;
    color: #cf2e2e !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.cta-btn-primary:hover {
    background: #181818;
    color: #ffffff !important;
    transform: translateY(-2px);
}