:root {
    --primary-color: #004a69;
    --secondary-color: #ef5d1d;
    --light-color: #eff8ff;
    --white-color: #FFFFFF;
    --gray-color: #F5F5F5;
}

/*body, html {
overflow-x: hidden;
}**/


.hero-carousel .carousel-caption {
    background: var(--light-color) !important;
	border-radius: 0px !important;
}
.carousel-caption {
    position: unset !important;
	color: #000 !important;
}
.carousel-indicators {
    margin-bottom: 0.5rem !important;
}
.carousel-indicators [data-bs-target] {
    background-color: var(--secondary-color) !important;
}
      .product-image {
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .product-image:hover {
            transform: scale(1.02);
        }

        .product-image img {
            width: 100%;
            height: auto;
        }

        .product-details {
            padding: 2rem;
            background-color: var(--light-color);
            position: sticky;
            top: 20px;
        }

        .product-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .product-subtitle {
            color: #6c757d;
            margin-bottom: 2rem;
        }

        .product-info dt {
            color: var(--primary-color);
            font-weight: 600;
        }

        .product-info dd {
            color: #6c757d;
            margin-bottom: 1rem;
        }

        .zoom-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 2rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product-image:hover .zoom-icon {
            opacity: 1;
        }

        .product-link {
            display: block;
            position: relative;
        }

        .product-link::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.2);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product-link:hover::after {
            opacity: 1;
        }
		

        .fancybox__nav {
            color: white;
            background: rgba(0,0,0,0.8);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .fancybox__nav--prev {
            left: 20px;
        }

        .fancybox__nav--next {
            right: 20px;
        } 


.fancybox__nav:hover {
    background: rgba(0, 0, 0, 0.9);
}

.fancybox__toolbar {
    background: rgba(0, 0, 0, 0.8);
}

.fancybox__toolbar__items {
    color: #fff;
}

.fancybox__toolbar__items button {
    color: #fff;
}

.fancybox__thumbs {
    background: rgba(0, 0, 0, 0.8);
}

.fancybox__thumb {
    border: 2px solid transparent;
}

.fancybox__thumb.is-selected {
    border-color: var(--secondary-color);
}



* {
    font-family: 'Saira', sans-serif;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 700 !important;
}

.featured-products .card h3 {
color: var(--secondary-color);
}

.page-head {
background: var(--primary-color);
}

.text-primary {
color: var(--primary-color) !important;
}

.text-secondary {
color: var(--secondary-color) !important;
}

.row-bg-primary {
background: var(--primary-color);
}

.row-bg-secondary {
background: var(--secondary-color);
}
.row-bg-light {
background-color: var(--light-color);
}


        .top-bar {
			background: var(--secondary-color);
            padding: 8px 0;
            font-size: 14px;
        }

        .top-bar a {
            color: var(--white-color);
            text-decoration: none;
            margin-left: 20px;
            transition: color 0.3s ease;
        }

        .top-bar a:hover {
            color: var(--white-color);
        }
		
    .top-bar .social-icon {
        margin-left: 10px !important;
    }

.navbar {
    background-color: var(--white-color);
    	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
		
.navbar .nav-link.active {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.hero-carousel .carousel-item {
    background-size: cover;
    background-position: center;
}

.hero-carousel .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
	left: 25% !important;
	right: 25% !important;
}

.h1, .h2, .h3, h1, h2, h3 {
}

.heading-highlight-center-darkbg {
    position: relative;
    display: inline-block;
}

.heading-highlight-center-darkbg::after {
content: "";
position: absolute;
bottom: -20px;
left: 50%;
width: 25%;
height: 3px;
background-color: #ffffff;
transform: translateX(-50%);
}

.heading-highlight-end-darkbg {
position: relative;
display: inline-block;
}

.heading-highlight-end-darkbg::after {
content: "";
position: absolute;
bottom: -20px;
left: auto; 
width: 25%;
height: 3px;
background-color: #ffffff;
right: 0;
transform: none;
}


.list-group-item.active {
background: #e94e0b!important;
border-color: #e94e0b!important;
}
.list-group-item.active a {
color: #fff !important;
}
.btn-theme-primary {
--bs-btn-color: #fff !important;
--bs-btn-bg: #e94e0b!important;
--bs-btn-border-color: #e94e0b!important;
--bs-btn-hover-color: #fff !important;
--bs-btn-hover-bg: #e94e0b!important;
--bs-btn-hover-border-color: #e94e0b!important;
--bs-btn-focus-shadow-rgb: 254,1,0 !important;
--bs-btn-active-color: #fff !important;
--bs-btn-active-bg: #e94e0b!important;
--bs-btn-active-border-color: #e94e0b!important;
--bs-btn-active-shadow: inset 0 3px 5pxrgba(0, 0, 0, 0.125) !important;
--bs-btn-disabled-color: #fff !important;
--bs-btn-disabled-bg: #e94e0b!important;
--bs-btn-disabled-border-color: #e94e0b!important;
}
.btn-theme-secondary {
--bs-btn-color: #fff !important;
--bs-btn-bg: #004a69!important;
--bs-btn-border-color: #004a69!important;
--bs-btn-hover-color: #fff !important;
--bs-btn-hover-bg: #004a69!important;
--bs-btn-hover-border-color: #004a69!important;
--bs-btn-focus-shadow-rgb: 254,1,0 !important;
--bs-btn-active-color: #fff !important;
--bs-btn-active-bg: #004a69!important;
--bs-btn-active-border-color: #004a69!important;
--bs-btn-active-shadow: inset 0 3px 5pxrgba(0, 0, 0, 0.125) !important;
--bs-btn-disabled-color: #fff !important;
--bs-btn-disabled-bg: #004a69!important;
--bs-btn-disabled-border-color: #004a69!important;
}
.dropdown-item:hover {
background: #e94e0b!important;    
color: #fff !important; 
}
.card-title a, .card-title a.hover{
color: #e94e0b!important;
}
.text-theme-primary {
color: #e94e0b;
}
.text-theme-secondary {
color: #221b1d;
}
#topbar {
position: fixed;
z-index: 1030;
top: 0;	
}
#topbar a {
color: #000000;
}
#topbar a:hover {
color: #221b1d;
}
.nav-highlight {
border-top:10px solid #e94e0b;
}
.navbar-brand img {
height: 80px;
}
.navbar-nav .nav-link {	
color: #000000;
font-size: 18px;
}
.navbar-nav .nav-link.active {
color: #e94e0b;
font-weight: 700;
}
.contact-btn {
text-transform: none;
color: #fff;
}
.heading-highlight-start {
position: relative;
display: inline-block;
}
.heading-highlight-start::after {
content: "";
position: absolute;
bottom: -20px;
left: 0%;
width: 25%;
height: 3px;
background-color: #e94e0b;
transform: none;
}
.heading-highlight-center {
position: relative;
display: inline-block;
}
.heading-highlight-center::after {
content: "";
position: absolute;
bottom: -20px;
left: 50%;
width: 25%;
height: 3px;
background-color: #e94e0b;
transform: translateX(-50%);
}
.heading-highlight-end {
position: relative;
display: inline-block;
}
.heading-highlight-end::after {
content: "";
position: absolute;
bottom: -20px;
left: auto; 
width: 25%;
height: 3px;
background-color: #e94e0b;
right: 0;
transform: none;
}
.modal {
--bs-modal-width: 650px !important;
}
.service-content-box {
height: 200px;	
}
.footer-heading-highlight {
position: relative;
display: inline-block;
}
.footer-heading-highlight::after {
content: "";
position: absolute;
bottom: -7px;
left: 0%;
width: 50%;
height: 3px;
background-color: #e94e0b;
transform: none;
}
footer{
font-size: 15px;
}
footer a {
color: #ffffff;
}
footer a:hover {
color: #e94e0b;
}

.copyright a {
	color: var(--secondary-color);
}

.btn {
--bs-btn-padding-x: 2rem !important;
--bs-btn-padding-y: 1rem !important;
--bs-btn-letter-spacing: -0.025em !important;
--bs-btn-text-transform: capitalize !important;
--bs-btn-font-weight: 600 !important;
--bs-btn-border-radius: 5px !important;
--bs-btn-outline: 0 !important;
--bs-btn-line-height: 1 !important;
--bs-btn-text-align: center !important;
--bs-btn-white-space: nowrap !important;
}
.btn-dark {
color: #fff;
border-color: #323334;
background-color: #323334;
}
.ml-10 {
margin-left: 10px;
}
.bg-primary {
background: #8dc63f !important;
color: #fff !important;
}
.bg-dark {
color: #fff;
background-color: #014866 !important;
}
@media screen and (max-width:767px){
.act-btn {
margin-top: 1rem !important;
}
.row-full{
width: 100vw;
}
}
@media screen and (min-width:768px){
.navbar-brand {margin-right: 75px;}
.row-full{
width: calc(100vw - 8.1px);
}
}
.row-full{
position: relative;
margin-left: -50vw;
margin-top: 100px;
left: 50%;
padding-bottom: 50px;
}
.row-bg {
background-color: #eff8ff;	
}
.row-bg-dark {
background-color: #ededed;	
}
/**@media (min-width: 1200px) {
.container, .container-lg, .container-md, .container-sm, .container-xl {
max-width: 1170px !important;
}
}**/
.justfiy {
text-align: justify;
}
p {
line-height: 1.8em
}
a {
text-decoration: none;
}
.list-group a{
text-decoration: none;
color: #221b1d;
}
.list-group a:hover {
color: #e94e0b;
}
a:hover {
color: #e94e0b;
}
.navbar {
box-shadow: none;
}
.dropdown:hover>.dropdown-menu {
display: block;
}
.center-logo{
padding-left: 35px;
padding-right: 15px;
}
.navbar-toggler {
border: none;
}
.navbar-toggler:focus,
.navbar-toggler-icon:focus {
outline: none;
box-shadow: none;
}
.whatsapp-button {
position: fixed;
bottom: 50px;
right: 20px;
color: #FFF;
z-index: 100;
padding-top: 0px;
width: 60px;
}
@media (max-width: 767px) {
.navbar-brand img {
height: 60px;
}
.hero-carousel .carousel-caption {
padding: 10px !important;
bottom: 0.5rem !important;
}
.hero-carousel h3 {
font-size: 14px !important;
}

    
        .top-bar .row {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
        }
        .top-bar .col-12 {
            width: auto !important;
        }
		.top-bar {
            font-size: 13px;
        }
		
		.hero-carousel .carousel-caption {
    left: 15% !important;
    right: 15% !important;

    }
	
.carousel-indicators [data-bs-target] {
border-bottom: 0px solid transparent !important;
}  

.form-control:focus::placeholder{color: #6c757d !important;}
@media (min-width: 992px) {
.navbar-expand-lg .navbar-nav .nav-link {
padding-right: 0.3rem !important;
padding-left: 0.3rem !important;
}
}
