/*!
Theme Name: firestad
Theme URI: #
Author: Wordpress
Author URI: #
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: firestad
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

firestad is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

@import url('https://fonts.googleapis.com/css2?family=Karma:wght@300;400;500;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Karma", serif;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

/********** Global Styles **********/

:root {
    --primary-color: #FE563A;
    --secondary-color: #F53551;
    --black-color: #000000;
    --grey-color: #4A4A4A;
    --white-color: #FFFFFF;

}



.bg-reddish {
    background-color: var(--primary-color);
}

.color-reddish {
    color: var(--primary-color) !important;
}

.btn-reddish {
    background: linear-gradient(90deg, #F53551 0%, #FE563A 100%);
    padding: 10px 20px;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.5s ease-in-out;
}

.btn-reddish i {
    background: #fff;
    color: #000;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

/* Hover */
.btn-reddish:hover {
    background: linear-gradient(90deg, #FE563A 0%, #F53551 100%);
    color: #fff;
}

.btn-reddish:hover i {
    background: #000;
    color: #fff;
}

.btn-white {
    background-color: var(--white-color);
    padding: 10px 20px;
    color: var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    transform: translateY(-10px);

}

/********** Navigation bar ************/

header.main-header {
    position: absolute;
    top: 10px;
    z-index: 99;
    width: 100%;
    margin: 0 auto;
}


.navbar-nav .nav-link {
    color: var(--white-color);
    font-weight: 400;
    margin-right: 15px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}


/*****Carousel Slider*****/
#carouselFirestad .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 1.25rem;
    color: var(--white-color);
    z-index: 5;
    width: 100%;
}

#carouselFirestad .carousel-caption h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white-color);
    line-height: 1.2;
}

#carouselFirestad .carousel-caption p {
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: 25px;
}

/* =========================
   Button Style
========================= */

#carouselFirestad .btn-reddish {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 10px 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
    text-decoration: none;
    transition: 0.3s;
}

#carouselFirestad .btn-reddish:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

#carouselFirestad .btn-reddish i {
    background: linear-gradient(180deg, #F53551 0%, #FE563A 100%);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

#carouselFirestad .btn-reddish i::before {
    transform: rotate(270deg);
}



/* =========================
   Carousel Arrows
========================= */

#carouselFirestad .carousel-control-prev,
#carouselFirestad .carousel-control-next {
    opacity: 1;
    width: 5%;
}

#carouselFirestad .custom-carousel-icon {
    background: #fff;
    color: #333;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    font-size: 18px;
}

#carouselFirestad .carousel-control-prev:hover .custom-carousel-icon,
#carouselFirestad .carousel-control-next:hover .custom-carousel-icon {
    background: #8B3A3A;
    color: #fff;
    border-color: #8B3A3A;
    width: 80px;
    border-radius: 40px;
}

/* Our Process */

.our-process {
    padding: 40px 0;
}

.our-process .subtitle {
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 10px;
}

.our-process h2 {
    font-size: 36px;
    color: var(--black-color);
    font-weight: 500;
}

.our-process p {
    font-size: 16px;
    color: var(--grey-color);
    line-height: 1.5;
    margin-bottom: 20px;
}

.our-process .process-steps h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 10px;
}

.our-process .process-steps .step:first-child h4 {
    color: var(--primary-color)
}


/* **About us** */

.about-us {
    padding: 40px 0;
    background-color: #F2F8FF;
}


.about-us .fire-card {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-us .fire-card .main-img {
    border-radius: 20px;
    width: 100%;
}


.about-us .fire-card {
    position: relative;
}

.about-us .rating-box img {
    position: absolute;
    top: 20px;
    left: -60px;
    width: 100%;
    max-width: 285px;
    height: 100px !important;
}


.about-us .fire-card .small-circle {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 6px solid #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.about-us .fire-card .small-circle img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.about-us .fire-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
}


.about-us .exp-circle {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 150px;
    height: 150px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    border: 6px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.about-us .exp-circle h2 {
    font-size: 40px;
    margin: 0;
    font-weight: 700;
}

.about-us .exp-circle span {
    font-size: 14px;
    text-align: center;
    line-height: 1.3;
}


.about-us .counter-section h2 {
    font-size: 42px;
    color: #ff4d3b;
    font-weight: 700;
}

.about-us .counter-section p {
    font-size: 16px;
    color: #666;
}

.about-us .counter-item {
    position: relative;
}


.about-us .counter-item:first-child::after {
    content: "";
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: #ddd;
}

/* MOBILE */

@media (max-width:768px) {

    .about-us .counter-item:first-child::after {
        display: none;
    }

    .about-us .small-circle {
        width: 90px;
        height: 90px;
        right: -20px;
        top: -20px;
    }

    .about-us .exp-circle {
        width: 110px;
        height: 110px;
        left: -20px;
        bottom: -20px;
    }

    .about-us .exp-circle h2 {
        font-size: 26px;
    }

}

/* **firestad slider ** */

.firestad-slider {
    overflow: hidden;
    white-space: nowrap;
    background: var(--primary-color);
    padding: 20px 0;
}

.slider-track {
    display: inline-flex;
    gap: 40px;
    animation: slide 20s linear infinite;
}

.firestad-slider span {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 32px;
    text-transform: uppercase;
    color: var(--white-color);
    font-weight: 700;
}

.firestad-slider span i {
    font-size: 14px;
    color: var(--white-color);
    margin-top: -10px;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* --- Our Services Section --- */

.our-services {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.our-services .subtitle {
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 10px;
}

.our-services h2 {
    font-size: 36px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.our-services .des {
    color: var(--grey-color);
    line-height: 1.6;
    font-size: 16px;
}


.our-services .service-card {
    border: none;
    border-radius: 25px;
    background-color: #FFF7F5;
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
}

.our-services .card-img-wrapper {
    position: relative;
}

.our-services .card-img-top {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.our-services .icon-badge {
    position: absolute;
    top: 35%;
    left: 20px;
    width: 80px;
    height: 80px;
    z-index: 2;
}

.our-services .icon-badge i {
    color: #fff;
    font-size: 20px;
}

.our-services .card-body {
    padding: 45px 25px 30px 25px;
}

.our-services .card-body h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 10px;
}

.our-services .card-text {
    font-size: 1rem;
    color: var(--grey-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.our-services .learn-more {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.our-services .learn-more:hover {
    opacity: 0.8;
    color: var(--black-color);
}


/* **Why Choose Us** */

.why-choose-us {
    padding: 40px 0;
    background-color: #192230;
}

.why-choose-us .why-choose-content .subtitle {
    font-size: 16px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.why-choose-us .why-choose-content h2 {
    font-size: 36px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.why-choose-us .why-choose-content p {
    font-size: 16px;
    color: var(--white-color);
    line-height: 1.6;
    margin-bottom: 30px;
}

.why-choose-us .whychoose-card {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 14px 24px rgba(0, 0, 0, 0.15);
    border-radius: 38px;
    border: 1px solid #2d3643;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.why-choose-us .whychoose-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.why-choose-us .whychoose-card h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
    margin-top: 15px;
}

.why-choose-us .whychoose-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* **Our Products   ** */

.product-section {
    padding: 40px 0;
    background-color: #fff;
}

.product-section .subtitle {
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 10px;
}

.product-section h2 {
    font-size: 36px;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 10px;
}

.product-section .des {
    font-size: 16px;
    line-height: 1.6;
    color: var(--grey-color);
    margin: 0 auto 30px;
}


/* =========================
   PRODUCT TABS
========================= */

.product-section .product-tabs .nav-link {
    border: none;
    font-size: 22px;
    font-weight: 600;
    color: var(--black-color);
    padding: 8px 22px;
    margin: 0 6px;
    border-radius: 17px;
    transition: all .3s ease;
}

.product-section .product-tabs .nav-link:hover {
    color: #F53551;
}

.product-section .product-tabs .nav-link.active {
    color: #fff !important;
    background: linear-gradient(180deg, #FE563A 0%, #F53551 100%);
}


/* =========================
   PRODUCT CARD
========================= */

.product-section .card {
    border: 1px solid var(--secondary-color);
    border-radius: 20px;
    transition: transform .5s ease-in-out;
    overflow: hidden;
}

.product-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
}

.product-section .product-card img {
    padding: 6px;
}

.product-section .product-actions {
    z-index: 10;

}

.product-section .action-btn {
    width: 40px;
    height: 40px;
    background: var(--white-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 16px;
    transition: 0.3s;
}

.product-section .action-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.product-section .action-btn:hover i {
    color: #fff !important;
}

/* Rating & Text */
.product-section .product-rating .fa-star {
    color: #FFB400;
}

.product-section .product-rating .rating {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.product-section .product-rating .reviews {
    color: #888;
    font-size: 14px;
}

/* =========================
   PRODUCT ACTION ICONS
========================= */

.product-section .product-actions .btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.product-section .product-actions i {
    font-size: 16px;
    color: var(--secondary-color);
}

.product-section .product-card a {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: background 0.3s;
    text-decoration: none;
    color: var(--secondary-color);
}

/* =========================
   OWL CAROUSEL NAVIGATION
========================= */

.product-section .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #eee !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    font-size: 24px !important;
}

.product-section .owl-nav .owl-prev {
    left: -45px;
}

.product-section .owl-nav .owl-next {
    right: -45px;
}

.product-section .owl-nav button:hover {
    background: #F53551 !important;
    color: var(--white-color) !important;
}

/* *** Testimonials *** */

.testimonials {
    background-color: #121a26;
    color: var(--white-color);
}

.testimonials .subtitle {
    font-size: 16px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.testimonials h2 {
    font-size: 36px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.testimonials .des {
    font-size: 16px;
    color: var(--white-color);
    line-height: 1.6;
    margin-bottom: 30px;

}

.testimonials .testimonial-card {
    background: var(--white-color);
    border-radius: 50px;
    min-height: 280px;
    margin: 10px;
}

.testimonials .card-image {
    width: 100%;
}

.testimonials .card-image img {
    height: 100%;
}

.testimonials .testimonial-card .testimonial-text {
    font-size: 16px;
    color: var(--grey-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonials .testimonial-card h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 5px;
}

.testimonials .testimonial-card small {
    font-size: 14px;
    color: var(--grey-color);
}

.testimonials .testimonial-img-side {
    width: 40%;
    overflow: hidden;
}

.testimonials .testimonial-img-side img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.testimonials .testimonial-content-side {
    width: 60%;
    display: flex;
    flex-direction: column;
    color: #333;
}

.testimonials .testimonial-content-side .stars i {
    color: #FFB400;
}

/* Owl Carousel Customization */
.testimonials .testimonials-carousel .owl-stage-padding {
    padding-left: 0 !important;
}

/* Making it responsive */
@media (max-width: 768px) {
    .testimonials .testimonial-card {
        flex-direction: column;
    }

    .testimonials .testimonial-img-side,
    .testimonial-content-side {
        width: 100%;
    }

    .testimonials .testimonial-img-side {
        height: 200px;
    }
}

/* Container for the navigation buttons */
.testimonials .custom-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.testimonials .custom-nav .owl-prev-btn,
.testimonials .custom-nav .owl-next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonials .custom-nav .owl-prev-btn {
    background-color: #d1d5db;
    color: #000000;
}

.testimonials .custom-nav .owl-next-btn {
    background-color: #d1d5db;
    color: #000000;
}

.testimonials .custom-nav .owl-prev-btn i,
.testimonials .custom-nav .owl-next-btn i {
    font-size: 18px;
    font-weight: 600;
}

.testimonials .custom-nav .owl-prev-btn:hover,
.testimonials .custom-nav .owl-next-btn:hover {
    transform: scale(1.05);
    background-color: var(--secondary-color);
}

.testimonials .custom-nav .owl-prev-btn:active,
.testimonials .custom-nav .owl-next-btn:active {
    transform: scale(0.95);
}

/* ***Blog** */


.blog-section .subtitle {
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 10px;
}

.blog-section h2 {
    font-size: 36px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.blog-section .des {
    font-size: 16px;
    color: var(--grey-color);
    line-height: 1.6;
    margin: 0 auto 30px;
}

/* --- Card & Container Styles --- */

.blog-section .blog-container {
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 25px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: visible;
    margin-bottom: 80px;
    transition: transform 0.3s ease;
}

.blog-section .blog-container:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-section .content-card {
    background: var(--white-color);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    width: 90%;
    position: relative;
    bottom: -150px;
    z-index: 10;
    text-align: left;
}

/* --- Typography inside Cards --- */

.blog-section .blog-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--black-color);
}

.blog-section .blog-title a {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--black-color);
    text-decoration: none;
}

.blog-section .blog-date {
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.blog-section .blog-excerpt {
    font-size: 16px;
    color: var(--grey-color);
    line-height: 1.7;
    margin-bottom: 0;
}

.blog-section .read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
}

.blog-section .read-more:hover {
    text-decoration: underline;
}

/* --- View All Button --- */
.blog-section .btn-view-all {
    display: inline-flex;
    align-items: center;
    margin-top: 40px;
}



/**** Newsletter ****/

.newsletter-banner {
    background-color: #F1F8FF;
    padding: 40px 0;
}

.newsletter-banner .background-wrapper {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0) 60%),
        url('images/newsletter.png') no-repeat center center;
    background-size: cover;
    min-height: 500px;
    border-radius: 40px;
}


.newsletter-banner .content-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 50px;
}

.newsletter-banner .content-box .subtitle {
    font-size: 16px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.newsletter-banner .content-box h2 {
    font-size: 36px;
    color: var(--white-color);
    font-weight: 500;
    margin-bottom: 20px;
}



/* Input Group Styling */
.subscribe-input,
.tnp-field .tnp-email {
    background: rgba(217, 217, 217, 0.2);
    border-radius: 17px;
    padding: 5px;
    background-color: transparent !important;
    border: 1px solid #fff !important;
}

.subscribe-input .form-control {
    background: transparent;
    border: none;
    color: #fff;
    padding-left: 20px;
}

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

.subscribe-input .form-control:focus {
    box-shadow: none;
    background: transparent;
}

.subscribe-btn,
.tnp-submit {
    background: linear-gradient(180deg, #F53551 0%, #FE563A 100%) !important;
    border-radius: 17px !important;
    border: none !important;
    padding: 10px 22px !important;
    color: #fff;
    font-weight: 600;
}


/********Footer *******/

.custom-footer {
    background-color: #192230;
    color: var(--white-color);
}


.custom-footer .footer-description {
    color: var(--white-color);
    font-size: 16px;
    line-height: 1.7;
}

.custom-footer .footer-heading {
    font-size: 20px;
    letter-spacing: 1.2px;
    margin-bottom: 1.5rem;
    color: var(--white-color);
}

.custom-footer .footer-list {
    list-style: none;
    padding: 0;
}

.custom-footer .footer-list li,
.custom-footer .footer-text {
    color: var(--white-color);
    font-size: 16px;
    margin-bottom: 0.75rem;
}

.custom-footer .footer-list i {
    width: 20px;
    text-align: center;
    color: var(--white-color);
    margin-right: 10px;
}

.custom-footer .footer-link {
    color: var(--white-color);
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.custom-footer .footer-link:hover {
    color: var(--white-color);
}


.footer-bottom .social-icon {
    font-size: 1rem;
    color: var(--white-color);
    margin-left: 15px;
    transition: opacity 0.2s;
}

.footer-bottom .social-icon:hover {
    opacity: 0.7;
}

/* ******About Us Page****** */

.inner-banner {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0) 60%),
        url('images/inner-banner.png') no-repeat center center;
    background-size: cover;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-banner h1 {
    font-size: 48px;
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.inner-banner p {
    font-size: 18px;
    color: var(--white-color);
    margin-top: 10px;
    font-weight: 500;
}

.inner-banner .breadcrumb {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.inner-banner .breadcrumb li {
    color: var(--white-color);
    font-size: 16px;
}

.inner-banner .breadcrumb li a {
    color: var(--white-color);
    text-decoration: none;
}

.inner-banner .breadcrumb li a:hover {
    text-decoration: underline;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: var(--white-color);
    margin: 0 8px;
}

.inner-banner .breadcrumb li active {
    color: var(--white-color);
    font-weight: 600;
}


/* ****Who We Are Section**** */

.who-we-are {
    padding: 60px 0;
}

.who-we-are .img-stack {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.who-we-are .img-main {
    width: 80%;
    border-radius: 40px;
    object-fit: cover;
    height: 450px;
}

.who-we-are .img-overlay {
    position: absolute;
    width: 55%;
    bottom: 0;
    right: 0;
    border-radius: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.who-we-are .img-overlay img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    border-radius: 40px;
}

.who-we-are .content-text .subtitle {
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 10px;
}

.who-we-are .content-text h2 {
    font-size: 36px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.who-we-are .content-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--grey-color);
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .main-title {
        font-size: 2.5rem;
    }

    .img-stack {
        min-height: 400px;
        margin-bottom: 3rem;
    }

    .about-us .about-content {
        margin-bottom: 30px;
    }


    .why-choose-us .why-choose-content h2 br,
    .blog-section .des br,
    .custom-footer .footer-list li br {
        display: none;
    }

    .why-choose-us .image-container img {
        width: 100%;
    }

    .testimonials .testimonial-card {
        flex-wrap: wrap;
    }

    .testimonials .testimonial-card .card-image {
        width: 100%;
    }

    .testimonials .testimonial-card .card-image img {
        border-radius: 40px;
    }

    .blog-section .blog-container {
        margin-bottom: 100px;
        height: 350px;
    }

    .blog-section .content-card {
        bottom: -100px;
        padding: 20px;
        width: 95%;
    }

    .blog-section .content-card {
        text-align: center;
    }

    #carouselFirestad .carousel-caption h2 {
        font-size: 32px;
    }

    #carouselFirestad .carousel-caption p {
        margin-bottom: 10px;
    }


}

/* ****Our Mission**** */

.our-mission {
    padding: 40px 0;
    text-align: center;
}

.our-mission .subtitle {
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 10px;
}

.our-mission h2 {
    font-size: 36px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.our-mission p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--grey-color);
    margin-bottom: 1.5rem;
}

.our-mission img {
    width: 100%;
    object-fit: cover;
    border-radius: 40px;
}

/* **Our Vision** */

.vision-section {
    background-color: #192230;
    color: var(--white-color);
    padding: 40px 0;
    overflow: hidden;
}

/* Typography scoped to parent */
.vision-section .sub-title {
    color: var(--white-color);
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}

.vision-section h2 {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.vision-section p {
    color: var(--white-color);
    font-size: 16px;
    line-height: 1.6;
}

.vision-section .feature-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.vision-section .feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    color: #989898;
    font-size: 1rem;
}

.vision-section .feature-list li i {
    color: #4ade80;
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 4px;
}


.vision-section .arrow-circle {
    background: #ffffff;
    color: #1a222d;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

.vision-section .vision-img-container {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.vision-section .img-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    border-radius: 40px;
    z-index: 1;
    object-fit: cover;
}

.vision-section .img-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    border-radius: 40px;

    z-index: 2;
    object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .vision-section {
        padding: 60px 0;
    }

    .vision-section .vision-img-container {
        height: 550px;
        margin-top: 40px;
        justify-content: center;
    }

    .vision-section .img-top {
        width: 72%;
    }

    .vision-section .img-bottom {
        width: 62%;
    }
}

@media (max-width: 420px) {
    .vision-section .img-bottom {
        width: 82%;
    }
}

/* **** About Our CEO *****/

.ceo-section {
    padding: 40px 0;
}

.ceo-section .subtitle {
    font-size: 16px;
    color: var(--black-color);
    margin-bottom: 10px;
}

.ceo-section h2 {
    font-size: 36px;
    color: var(--black-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.ceo-section .bio-text {
    color: var(--grey-color);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.ceo-section .image-container {
    position: relative;
    /*background-color: #fce4ec;*/
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.ceo-section .ceo-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius:40px;
    box-shadow: 0 15px 30px rgb(0 0 0 / 48%)
   
}

section.related.products {
    clear: both;
}

.woocommerce div.product div.images .flex-control-thumbs {
    margin: 30px 10px !important;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    margin: 0 5px !important;
    border: 2px solid #55454585;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    width: 23%;
}

/* ****Responsive css */

@media screen and (max-width: 1699px) and (min-width: 1400px) {
    #carouselFirestad .carousel-caption {
        bottom: 4rem;
        /* left: 10%; */
    }

}

@media screen and (max-width: 1399px) and (min-width: 1200px) {
    .navbar-nav .nav-link {
        color: var(--white-color);
        font-weight: 500;
        margin-right: 0;
        font-size: 16px;
    }

    .product-section .des br {
        display: none;
    }

    .our-services .icon-badge {
        position: absolute;
        top: 30%;
    }



    #carouselFirestad .carousel-caption {
        bottom: 2rem;

    }
}

.wpcf7 .form-section {
    max-width: 75%;
    padding: 50px 0;
}

.wpcf7 form {
    background-color: #f0f0f059;
}

.wpcf7 form textarea {
    max-height: 150px;
}

.request-quote-form form {
    background-color: transparent;
}

.request-quote-form form textarea {
    height: 100px;
}

.request-quote-form .form-section {
    width: 100%;
    max-width: 100%;
    padding: 20px 30px;
}

.wpcf7 label span {
    color: #eb4040;
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .navbar-nav .nav-link {
        margin-right: 0px;
    }

    .our-services .icon-badge {
        top: 28%;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {}

@media screen and (max-width: 991px) {
    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        background-color: #120f10;
        padding: 20px;
    }

    .navbar-toggler {
        background-color: #fff;
    }
}

@media screen and (max-width: 767px) {
    video {
        max-width: 100%;
    }
}


@media (max-width: 991px) {
    #carouselFirestad .carousel-caption h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    #carouselFirestad .carousel-caption {
        padding: 0 10%;
    }

    #carouselFirestad .carousel-item img {
        height: 500px;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    #carouselFirestad .carousel-caption h2 {
        font-size: 28px;
        line-height: 1.1;
    }

    #carouselFirestad .carousel-caption p {
        font-size: 14px;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    #carouselFirestad .carousel-control-prev,
    #carouselFirestad .carousel-control-next {
        display: none;
    }

    #carouselFirestad .carousel-item img {
        height: 450px;
    }
}

@media (max-width: 575px) {
    #carouselFirestad .carousel-caption h2 {
        font-size: 24px;
    }

    #carouselFirestad .carousel-caption {
        width: 90%;
        padding: 10px;
    }

    #carouselFirestad .carousel-item img {
        height: 400px;
    }

    #carouselFirestad .btn-reddish {
        font-size: 14px;
        padding: 8px 8px 8px 15px;
    }

    #carouselFirestad .btn-reddish i {
        height: 32px;
        width: 32px;
        margin-left: 5px;
    }

    #carouselFirestad .carousel-indicators {
        margin-bottom: 1rem;
    }

    .about-us .fire-card .small-circle {
        position: absolute;
        top: 0;
        right: 0;
    }

    .about-us .exp-circle {
        left: 0;
        bottom: 0;
    }
}



/* =========================
   SHOP Page
========================= */
.woocommerce,
.woocommerce-page {
    color: #000;
}

.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product a {
    color: #000;
}

.woocommerce ul.products li.product a:hover {
    color: #000;
    text-decoration: none;
}

.woocommerce ul.products li.product .button.product_type_simple {
    background: linear-gradient(90deg, #F53551 0%, #FE563A 100%);
    padding: 15px 20px;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.5s ease-in-out;
    border: none;
}

.woocommerce ul.products li.product .button.product_type_simple:hover {
    background: linear-gradient(90deg, #FE563A 0%, #F53551 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(245, 53, 81, 0.3);
}

.woocommerce ul.products li.product .button.product_type_simple:active {
    transform: scale(0.95);
    box-shadow: none;
}

.woocommerce ul.products li.product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.woocommerce ul.products li.product .button {
    margin-top: auto;
}

.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
    float: left;
    color: #4a4a4a;
}

.woocommerce ul.products li.product h2 {
    min-height: 75px;
}

.woocommerce ul.products li.product h2 {
    min-height: 75px;
}

.woocommerce .woocommerce-ordering {
    margin-bottom: 20px;
}

.woocommerce .woocommerce-ordering select.orderby {
    color: #4A4A4A;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 8px;
    background-color: #fff;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.woocommerce .woocommerce-ordering select.orderby:hover {
    border-color: #4A4A4A;
}

.woocommerce .woocommerce-ordering select.orderby:focus {
    border-color: #4A4A4A;
    box-shadow: 0 0 0 2px rgba(74, 74, 74, 0.2);
}

.woocommerce .woocommerce-ordering select.orderby option {
    color: #4A4A4A;
}