/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Global Styles */
:root {
    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #777;
    --white: #fff;
    --black: #000;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

a:hover {
    color: #ec343c;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #ec343c;
    color: var(--white);
}

.btn-primary:hover {
    background-color: #c0392b;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: #ec343c;
    transform: translateY(-3px);
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*="col-"] {
    padding: 0 15px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    text-align: center;
}

.fire {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.flames {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
}

.flame {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #ec343c, #00abf3);
    border-radius: 50% 50% 20% 20%;
    transform-origin: bottom center;
    animation: flicker 2s ease-in-out infinite alternate;
}

.flame:nth-child(1) {
    left: 0;
    animation-delay: 0.1s;
}

.flame:nth-child(2) {
    left: 20px;
    width: 80%;
    height: 80%;
    animation-delay: 0.2s;
}

.flame:nth-child(3) {
    left: 40px;
    width: 60%;
    height: 60%;
    animation-delay: 0.3s;
}

.flame:nth-child(4) {
    left: 60px;
    width: 40%;
    height: 40%;
    animation-delay: 0.4s;
}

@keyframes flicker {
    0%, 100% {
        transform: scaleY(1) skewX(0);
    }
    25% {
        transform: scaleY(1.1) skewX(-5deg);
    }
    50% {
        transform: scaleY(0.9) skewX(5deg);
    }
    75% {
        transform: scaleY(1.05) skewX(-3deg);
    }
}

.loader p {
    font-weight: 500;
    color: var(--dark-color);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Navigation */
.navbar {
    padding: 20px 0;
    background-color: rgba(44, 62, 80, 0.9);
    transition: var(--transition);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.navbar.scrolled {
    padding: 15px 0;
    background-color: rgba(44, 62, 80, 0.98);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
}

.navbar-brand span {
    margin-left: 10px;
}

.logo-img {
    height: 75px;
}

.navbar-nav {
    margin-left: auto;
}

.nav-item {
    margin: 0 10px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 8px 15px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00abf3;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00abf3;
    transition: var(--transition);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: 5px 10px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: url('https://firesafeguard.in/wp-content/uploads/2022/04/safeguard-banner-foam-equipments.jpg') no-repeat center center;
    background-size: cover;
    color: var(--white);
    text-align: left;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        font-family: serif;
}

.hero-section p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-img-container {
    position: relative;
    text-align: center;
}

.hero-img {
    max-height: 400px;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down a {
    color: var(--white);
    font-size: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2 span {
    color: #ec343c;
}

.title-divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(to right, #ec343c, #00abf3);
    margin: 0 auto 15px;
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    transition: var(--transition);
    width: 100%;
}

.about-img:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ec343c;
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.experience-badge span {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge p {
    font-size: 14px;
    margin: 0;
    text-align: center;
}

.about-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-features {
    margin-top: 30px;
}

.feature-box {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 40px;
    color: #ec343c;
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://static.vecteezy.com/system/resources/thumbnails/030/470/558/small_2x/fire-extinguisher-in-the-fire-department-with-blurred-background-and-bokeh-ai-generated-photo.jpg') no-repeat center center;
    background-size: cover;
    color: var(--white);
    padding: 80px 0;
}

.stat-box {
    text-align: center;
    padding: 30px 15px;
}

.stat-box i {
    font-size: 40px;
    color: #00abf3;
    margin-bottom: 15px;
}

.stat-box h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

/* Products Section */
/* Product Categories */
.product-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(231, 76, 60, 0.2);
}

.category-header i {
    font-size: 28px;
    color: #ec343c;
    margin-right: 15px;
}

.category-header h3 {
    margin: 0;
    font-size: 24px;
    color: var(--secondary-color);
}

.category-header .badge {
    margin-left: 15px;
    background-color: #00abf3;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ec343c;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-content {
    padding: 20px;
}

.product-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.product-type {
    color: #ec343c;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.product-specs {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.product-specs div {
    margin-bottom: 5px;
}

.product-specs i {
    margin-right: 5px;
    color: #ec343c;
    width: 15px;
    text-align: center;
}

.btn-details {
    display: inline-block;
    width: 100%;
    padding: 8px;
    text-align: center;
    background-color: #ec343c;
    color: white;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Modal Styles */
.modal-product-img {
    margin-bottom: 20px;
}

.modal-product-img img {
    width: 100%;
    border-radius: 8px;
}

.technical-specs h6, .applications h6, .certifications h6 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.specs-list, .applications-list {
    padding-left: 20px;
    font-size: 14px;
}

.specs-list li, .applications-list li {
    margin-bottom: 5px;
}

.cert-badges {
    display: flex;
    gap: 10px;
}

.cert-badges span {
    background-color: #f8f9fa;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid #eee;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-header .badge {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .product-img {
        height: 150px;
    }
}

/* Product Modal */
.product-modal .modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.modal-product-img {
    border-radius: 8px;
    overflow: hidden;
}

.modal-product-img img {
    width: 100%;
}

.product-specs-table {
    margin: 20px 0;
}

.product-specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs-table th,
.product-specs-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.product-specs-table th {
    width: 30%;
    color: var(--text-light);
}

/* Services Section */
.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 30px;
    color: #ec343c;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card ul {
    margin-top: 15px;
}

.service-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.service-card ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ec343c;
}

/* Projects Section */
.project-slider {
    position: relative;
}

.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.project-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.9), transparent);
    color: var(--white);
    transition: var(--transition);
}

.project-item:hover .project-overlay {
    bottom: 0;
}

.project-item:hover img {
    transform: scale(1.1);
}

/* Clients Section */
.client-slider {
    position: relative;
}

.client-item {
    padding: 20px;
    text-align: center;
    opacity: 0.6;
    transition: var(--transition);
}

.client-item:hover {
    opacity: 1;
}

.client-item img {
    max-height: 80px;
    width: auto;
    margin: 0 auto;
    filter: grayscale(100%);
    transition: var(--transition);
}

.client-item:hover img {
    filter: grayscale(0);
}

.client-category {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.client-category h4 {
    font-size: 20px;
    color: #ec343c;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.client-category ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.client-category ul li:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ec343c;
}

/* Team Section */
.team-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    transition: var(--transition);
}

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background-color: rgba(231, 76, 60, 0.8);
    padding: 15px;
    display: flex;
    justify-content: center;
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    transition: var(--transition);
}

.team-social a:hover {
    background-color: var(--white);
    color: #ec343c;
}

.team-content {
    padding: 20px;
    text-align: center;
}

.team-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-content p {
    color: #ec343c;
    font-weight: 500;
    margin-bottom: 5px;
}

.team-content span {
    font-size: 14px;
    color: var(--text-light);
}

/* Contact Section */
.contact-info-box {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: #ec343c;
}

.contact-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: #ec343c;
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

textarea.form-control {
    min-height: 150px;
    resize: none;
}

/* Map Section */
.map-section {
    width: 100%;
    height: 450px;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: #ec343c;
    transform: translateY(-5px);
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #ec343c;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: block;
}

.footer-widget ul li a:hover {
    color: #00abf3;
    padding-left: 5px;
}

.footer-contact li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #ec343c;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-menu {
    text-align: right;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 15px;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: #ec343c;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ec343c;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #00abf3;
    color: var(--white);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .hero-section h1 {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero-section {
        min-height: 600px;
    }

    .hero-section h1 {
        font-size: 42px;
    }

    .navbar-nav {
        padding: 15px 0;
    }

    .nav-item {
        margin: 5px 0;
    }

    .about-content {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-section {
        min-height: 500px;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .hero-section p {
        font-size: 18px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
    }

    .experience-badge span {
        font-size: 30px;
    }

    .stats-section {
        padding: 60px 0;
    }

    .stat-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .footer-menu {
        text-align: left;
        margin-top: 15px;
    }

    .footer-menu a {
        margin: 0 10px 0 0;
    }
}

/* Animation Classes */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* Owl Carousel Custom Styles */
.owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
}

.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ec343c !important;
    font-size: 20px !important;
    transition: var(--transition);
}

.owl-carousel .owl-nav button:hover {
    background-color: #ec343c !important;
    color: var(--white) !important;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 15px;
}

.owl-carousel .owl-nav button.owl-next {
    right: 15px;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-carousel .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
    margin: 0 5px;
    transition: var(--transition);
}

.owl-carousel .owl-dots button.owl-dot.active {
    background-color: #ec343c !important;
    transform: scale(1.2);
}

/* client new */
   .section-header {
      background: linear-gradient(to right, #b31217, #e52d27);
      color: white;
      padding: 60px 20px;
      text-align: center;
      border-radius: 12px;
      margin-bottom: 60px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    .icon-box {
      background: white;
      border-radius: 16px;
      padding: 35px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }
    .icon-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    .icon-box i {
      font-size: 2.5rem;
      color: #e52d27;
      margin-bottom: 15px;
    }
    .icon-box ul {
      list-style: none;
      padding-left: 0;
    }
    .icon-box ul li {
      padding-left: 1.5em;
      position: relative;
      margin-bottom: 8px;
    }
    .icon-box ul li::before {
      content: "\f058";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: #e52d27;
      position: absolute;
      left: 0;
      top: 0.1em;
    }

    .design-credit {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: #555;
    text-align: center;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.design-credit i {
    font-size: 16px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}