:root {
    --bs-primary: #fb4848;
    --bs-primary-dark: #e85704;
    --bs-primary-light: #fb48481c;
    --bs-primary-shadow: rgb(0 123 255 / 0.5);
    --bs-secondary: #214462;
    --bs-secondary-dark: #000000;
    --bs-white: #ffffff;
    --bs-dark: #1a1a2e;
    --bs-gray: #6c757d;
    --bs-light: #f4f5f9;
    --bs-body-font-family: 'Source Sans Pro', sans-serif;
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.6;
    --bs-body-color: #555;
    --bs-heading-color: #1a1a2e;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    background: var(--bs-white);
    overflow-x: hidden;
}

a {
    color: var(--bs-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--bs-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1 0 0%;
    padding: 0 15px;
}

.col-3 { flex: 0 0 25%; max-width: 25%; padding: 0 15px; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 15px; }
.col-5 { flex: 0 0 41.666%; max-width: 41.666%; padding: 0 15px; }
.col-6 { flex: 0 0 50%; max-width: 50%; padding: 0 15px; }
.col-7 { flex: 0 0 58.333%; max-width: 58.333%; padding: 0 15px; }
.col-8 { flex: 0 0 66.666%; max-width: 66.666%; padding: 0 15px; }
.col-9 { flex: 0 0 75%; max-width: 75%; padding: 0 15px; }
.col-12 { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }

.my-auto { margin-top: auto; margin-bottom: auto; }
.text-center { text-align: center; }
.text-end { text-align: right; }
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.position-relative { position: relative; }

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--bs-secondary);
    transform-origin: right center;
    transform: scale(0, 1);
    transition: transform 500ms cubic-bezier(0.85, 0, 0.08, 1);
    z-index: -1;
}

.btn:hover:before {
    transform-origin: left center;
    transform: scale(1, 1);
}

.btn-primary {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.btn-primary:hover {
    color: var(--bs-white);
}

.btn-secondary {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--bs-white);
    color: var(--bs-white);
}

.btn-outline:hover {
    color: var(--bs-white);
}

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

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

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-heading-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--bs-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ========= TOP HEADER ========= */
.above-header {
    display: none;
}

.above-header .header-contact span {
    margin-right: 20px;
}

.above-header .header-contact i {
    margin-right: 5px;
    color: var(--bs-primary);
}

.above-header .header-social a {
    color: var(--bs-white);
    margin-left: 15px;
}

.above-header .header-social a:hover {
    color: var(--bs-primary);
}

/* ========= MAIN HEADER ========= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    background: #424144C2;
}

.main-header .container {
    max-width: 1600px;
}

.navigation-wrapper {
    width: 100%;
}

.main-navigation {
    background: transparent;
    padding: 15px 0;
    transition: all 0.3s ease;
}



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

.site-title {
    color: var(--bs-white);
    font-size: 1.5rem;
    font-weight: 700;
}

.site-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

/* Navigation */
.navbar-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-navbar {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    color: var(--bs-white);
    padding: 10px 18px;
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-menu > li > a:hover,
.main-menu > li.current-menu-item > a {
    color: var(--bs-primary);
}

.main-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bs-white);
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.main-menu li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu .dropdown-menu li a {
    color: var(--bs-secondary);
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid #f0f0f0;
}

.main-menu .dropdown-menu li a:hover {
    color: var(--bs-primary);
    background: #f8f9fa;
}

/* Menu Right */
.main-menu-right {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.menu-right-list {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-right-list li button {
    background: none;
    border: none;
    color: var(--bs-white);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 5px;
}

.menu-right-list li button:hover {
    color: var(--bs-primary);
}

/* Search Popup */
.header-search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.header-search-popup.active {
    opacity: 1;
    visibility: visible;
}

.header-search-flex {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.header-search-flex .search-form {
    display: flex;
}

.header-search-field {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 1.1rem;
    outline: none;
}

.search-submit {
    background: var(--bs-primary);
    border: none;
    color: var(--bs-white);
    padding: 15px 25px;
    cursor: pointer;
    font-size: 1.1rem;
}

.search-submit:hover {
    background: var(--bs-primary-dark);
}

.header-search-close {
    position: absolute;
    top: -60px;
    right: 0;
    color: var(--bs-white);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

.close-style::before {
    content: '\00D7';
}

/* Mobile Nav */
.main-mobile-nav {
    background: var(--bs-secondary);
    display: none;
    padding: 10px 0;
}

.main-mobile-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hamburger-menu button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-menu button div {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--bs-white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.main-mobile-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: var(--bs-secondary);
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
}

.main-mobile-wrapper.active {
    right: 0;
}

.main-mobile-build {
    padding: 60px 30px 30px;
}

.main-mobile-build .main-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.main-mobile-build .main-menu li {
    width: 100%;
}

.main-mobile-build .main-menu li a {
    color: var(--bs-white);
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 500;
}

.main-mobile-build .main-menu li a:hover {
    color: var(--bs-primary);
}

.header-close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--bs-white);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========= HERO / SLIDER ========= */
.home-slider {
    position: relative;
    min-height: 750px;
    overflow: hidden;
}

.home-slider .slide-item {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-slider .slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.home-slider .slide-content {
    position: relative;
    z-index: 2;
    color: var(--bs-white);
    max-width: 700px;
    padding: 80px 0;
}

.home-slider .slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.home-slider .slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.home-slider .slide-content .btn {
    margin-right: 15px;
}

.main-content {
    margin-top: 2rem;
    margin-bottom: 6rem;
}

/* ========= INFO SECTION ========= */
.info-section {
    margin-top: -80px;
    position: relative;
    z-index: 3;
}

.widget-contact {
    padding: 50px 40px;
    background-color: var(--bs-secondary);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.widget-contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bs-primary) 100%, transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.widget-contact:hover::before {
    opacity: 0.7;
}

.feature-box-inner {
    position: relative;
    z-index: 1;
}

.feature-box-icon {
    margin-bottom: 1.4rem;
}

.feature-box-title {
    color: var(--bs-white);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.feature-box-title a {
    color: var(--bs-white);
    text-decoration: none;
}

.fbox-content {
    color: var(--bs-white);
    margin-bottom: 1.2rem;
}

.fbox-number {
    color: var(--bs-white);
    font-size: 2rem;
    font-weight: 700;
}

.read-more {
    color: var(--bs-white);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more i {
    rotate: -40deg;
    background: var(--bs-primary);
    border-radius: 100%;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    transition: all 200ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.widget-contact:hover .read-more i {
    background: var(--bs-white);
    color: var(--bs-primary);
    rotate: 0deg;
}

.side-border-lines {
    border: 2px dashed var(--bs-white);
    border-radius: 10px;
    opacity: 0.4;
    padding: 30px;
}

/* ========= ABOUT SECTION ========= */
.about-section {
    padding: 80px 0;
}

.about-content h5 {
    color: var(--bs-primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bs-heading-color);
}

.about-content ul {
    margin: 20px 0;
}

.about-content ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.about-content ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--bs-primary);
    font-weight: 700;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}

.page-content .about-image img {
    width: 300px;
    height: 300px;
    object-fit: contain;
}

/* ========= SERVICE SECTION ========= */
.service-section {
    padding: 80px 0;
    background: var(--bs-light);
}

.service-inner {
    position: relative;
    background-color: #f4f5f9;
    overflow: visible;
    border: none;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.service-inner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 5px;
    background: var(--bs-secondary);
    transition: 0.3s all ease-in-out;
}

.service-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bs-secondary);
    opacity: 0;
    z-index: 0;
    transition: 0.3s all ease-in-out;
}

.service-inner:hover::before {
    background: var(--bs-primary);
    height: 100%;
}

.service-inner:hover::after {
    opacity: 0.7;
}

.service-content {
    padding: 30px 25px 30px 30px;
    text-align: left;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-inner:hover .service-content {
    color: var(--bs-white);
}

.service-img img {
    opacity: 0;
    transition: 0.3s all ease-in-out;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.service-inner:hover .service-img img {
    opacity: 1;
}

.service_page_item_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-title {
    margin-bottom: 0;
    text-align: left;
    font-size: 1.675rem;
}

.service-title a {
    color: var(--bs-heading-color);
    transition: all 0.3s ease;
}

.service-inner:hover .service-title a {
    color: var(--bs-white);
}

.fbox-number {
    font-size: 45px;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: transparent;
    -webkit-text-stroke: 2px #7A7A7A;
    opacity: 0.3;
    justify-content: flex-end;
    transition: 0.3s all ease-in-out;
}

.fbox-number span {
    height: 5px;
    width: 40px;
    display: block;
    background: var(--bs-primary);
    margin-right: 15px;
}

.service-inner:hover .fbox-number {
    opacity: 1;
    color: var(--bs-white);
    -webkit-text-stroke: var(--bs-white);
}

.service-excerpt {
    margin: 20px 0;
}

.service_page_item_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-icon-img-wrap {
    margin: 0;
}

/* ========= GALLERY GRID ========= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    display: block;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--bs-white);
    padding: 40px 20px 20px;
    font-weight: 600;
    font-size: 1rem;
}

/* ========= ICON BOX SECTION ========= */
.icon-box-section {
    padding: 60px 0;
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.icon-box {
    text-align: center;
    padding: 30px 20px;
}

.icon-box .icon {
    margin-bottom: 20px;
}

.icon-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--bs-white);
}

.icon-box p {
    opacity: 0.8;
}

/* ========= EQUIPMENT SECTION ========= */
.equipment-section {
    padding: 80px 0;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

a.equipment-item {
    display: block;
    color: inherit;
    text-decoration: none;
}

.equipment-item {
    background: var(--bs-white);
    border: 1px solid #e5e5e5;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.equipment-item img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.equipment-item h4 {
    font-size: 1rem;
    color: var(--bs-heading-color);
    margin-bottom: 10px;
}

/* ========= VALUE SECTION ========= */
.value-section {
    padding: 80px 0;
    background: var(--bs-light);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-item {
    background: var(--bs-white);
    padding: 30px;
    border-left: 4px solid var(--bs-primary);
    transition: all 0.3s ease;
}

.value-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--bs-heading-color);
}

.value-item p {
    color: var(--bs-gray);
    font-size: 0.95rem;
}

/* ========= CONTACT SECTION ========= */
.contact-section {
    padding: 80px 0;
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.contact-section h2 {
    color: var(--bs-white);
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info-item i {
    color: var(--bs-primary);
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: var(--bs-white);
    margin-bottom: 15px;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--bs-primary);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* ========= FOOTER ========= */
.footer-main {
    padding: 80px 0 40px;
    background: #1a1a2e;
    color: rgba(255,255,255,0.7);
}

.footer-main h4 {
    color: var(--bs-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-main .widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-main .widget ul li a {
    color: rgba(255,255,255,0.7);
}

.footer-main .widget ul li a:hover {
    color: var(--bs-primary);
}

.footer-main .widget-contact .contact-icon {
    background: var(--bs-white);
    border-radius: 100px;
    height: 50px;
    width: 50px;
    font-size: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    margin-bottom: 15px;
}

.footer-copyright {
    background: #111122;
    padding: 20px 0;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-copyright a {
    color: var(--bs-primary);
}

/* ========= SCROLL TO TOP ========= */
.scrolling-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--bs-primary);
    border: none;
    color: var(--bs-white);
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.scrolling-btn.show {
    opacity: 1;
    visibility: visible;
}

.scrolling-btn:hover {
    background: var(--bs-secondary);
}

/* ========= BREADCRUMB ========= */
.breadcrumb-section {
    background: #000;
    padding: 140px 0 80px;
    text-align: center;
    color: var(--bs-white);
}

.breadcrumb-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.breadcrumb-section .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-section .breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb-section .breadcrumb a:hover {
    color: var(--bs-primary);
}

.breadcrumb-section .breadcrumb .current {
    color: var(--bs-primary);
}

/* ========= PAGE CONTENT ========= */
.page-content {
    padding: 80px 0;
}

.page-content h2 {
    color: var(--bs-heading-color);
    margin-bottom: 20px;
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ========= WOOCOMMERCE PRODUCT GRID ========= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--bs-white);
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card .product-info {
    padding: 20px;
}

.product-card .product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-card .product-info h3 a {
    color: var(--bs-heading-color);
}

.product-card .product-info .price {
    color: var(--bs-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-card .product-info .btn {
    width: 100%;
}
