    /* Table of Contents
----------------------------------

   
/*------------------------------ (00)-Global CSS ------------------------------*/
/*  
0- Global CSS
1- Heading CSS
2- Button CSS
3- Logo Area CSS
4- Page Title CSS
5- Header Area CSS
6- Footer Area CSS
7- Scroll-Top Area CSS
8- Form CSS
9- Dark Form CSS
10- Light Form CSS
11- Swiper Pagination
12- Swiper Navigation
13- CheckBox CSS
14- Sidebar Heading CSS
15- Sidebar CSS
*/


/*------------------------------ (01)-Home ------------------------------*/
/*
1- Home Slider
2- Features
3- Tracking
4- Service Slider
5- Counter
6- Process
7- Request Quote
8- Banner
9- Testimonials
10- Clients Slider
*/


/*------------------------------ (02)-About ------------------------------*/
/*
1- About Us
2- Company History
3- Why Choose Us
4- Team
5- Team Single
6- Testimonials
7- Faqs
8- Certifications
*/


/*------------------------------ (03)-Service ------------------------------*/
/*
1- Services
2- Service Single
*/


/*------------------------------ (04)-Tracking ------------------------------*/


/*------------------------------ (05)-Location ------------------------------*/


/*------------------------------ (06)-Contact ------------------------------*/







/*------------------------------ (00)- Global CSS (Start) ------------------------------*/

/*----- 0- Global CSS -----*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --main-color: #c91112;
    --secondary-color: #750707; 
    --black: #0E121D;
    --white: #ffffff;
    --grey: #403b3b;
    --custom-border: 0.5rem solid var(--main-color);
    --border-radius-1: 0.5rem;
    --border-radius-2: 1rem;
    --border-radius-3: 50%;
    --box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    --text-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.1);
    --font-heading: "Oswald", sans-serif;
}

*{
    font-family: "Roboto", sans-serif;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-transform: capitalize;
    border: none;
    outline: none;
}

*:not(.project-item){
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

*::-moz-selection{
    color: var(--white);
    background-color: var(--main-color);
}

*::selection{
    color: var(--white);
    background-color: var(--main-color);
}

body{
    background: #fafafb;
    overflow-x: hidden;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

section{
    padding: 3rem 5%;
}

::-webkit-scrollbar{
    width: 0.8rem;
}

::-webkit-scrollbar-track{
    background: var(--black);
}

::-webkit-scrollbar-thumb{
    border-radius: var(--border-radius-1);
    background: var(--main-color);
}

img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

p{
    color: var(--grey); 
    font-size: 1.6rem;
    line-height: 1.6;
}

/*----- 1- Heading CSS -----*/
.heading{ 
    padding-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.heading span{
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1;
    color: var(--main-color);
    margin-bottom: 0.5rem;
    /* font-family: var(--font-heading); */
}
  
.heading h2{ 
    font-size: 4.3rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.2;
    /* font-family: var(--font-heading); */
    text-shadow: var(--text-shadow);
    padding-bottom: 0.7rem;
}

.heading img{
    height: 1.5rem;
    width: auto;
}

.sideheading{
    text-align: left;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
}

.heading.linear-bg h2{
    color: var(--white);
}

/*----- 2- Button CSS -----*/
.btn{
	position: relative;
	display: inline-block;
	pointer-events: auto;
	cursor: pointer; 
	padding: 1.5rem 2rem; 
    border-radius: 0.5rem;
	font-size: 1.6rem;
	font-weight: 400;
    line-height: 1;
    border: 0.2rem solid transparent;
    color: var(--white);
	background: var(--main-color);
	z-index: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.btn:after{
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
	background: var(--secondary-color);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.btn:hover:after{
	left: 0;
	width: 100%;
}

.btn:hover {
    border-color: var(--secondary-color);
}

.btn i {
    display: inline-block;
}

/*----- 3- Logo Area CSS -----*/   
.logo{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.logo img{
    height: 9rem;
    width: auto;
}

/* .logo h3{
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.3;
    letter-spacing: 0.07rem;
    font-family: var(--font-heading);
}

.logo h3 span{
    color: var(--main-color);
    font-family: var(--font-heading);
}

.logo p{
    font-size: 1.7rem;
    color: var(--main-color);
    line-height: 1;
    font-weight: 600;
    font-family: var(--font-heading);
} */

/*----- 4- Page Title CSS -----*/
.page-title{
    position: relative;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)), url("../../assets/images/Background/PageTitle.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)), url("../../assets/images/Background/PageTitle.jpg");
    min-height: 25rem;
    background-repeat: no-repeat;  
    background-size: cover;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0rem 5%;
}

.page-title .container{
    text-align: center;
}

.page-title .title h2{
    color: var(--white);
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.08rem;
    /* font-family: var(--font-heading); */
    text-transform: uppercase;
}

.page-title .link{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    font-size: 1.5rem;
}

.page-title .link a{
    font-weight: 500;
    font-size: 2rem;
    color: var(--white);
    /* font-family: var(--font-heading); */
}

.page-title .link a:hover{
    color: var(--main-color);
}

.page-title .link i{
    color: var(--white);
}

.page-title .link span{
    font-weight: 500;
    font-size: 2rem;
    color: var(--white);
    /* font-family: var(--font-heading); */
}

/*----- 5- Header Area CSS -----*/
.header{
    position:relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.header .header-2{
    height: 11rem;
    background-color: var(--white);
    padding: 0rem 5%;
    gap: 1rem;
    border-bottom: 0.2rem solid #ccc;
}

.header.active .header-2{
    border-bottom: 0.2rem solid var(--main-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.header .container{
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2.5rem;
}

.header #menu-btn{
    cursor: pointer;
    display: none;
}

.header .navbar{
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 3rem;
}

.mobile-menu{
    display: none;
}

.header .dropdown-menu{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header .navbar .nav-btn{
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.04rem;
    color: var(--black);
    padding: 1rem 0;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: none;
    gap: 0.5rem;
    border-bottom: 0.3rem solid transparent;
}

.header .navbar .current-page,
.header .navbar .nav-btn:hover{
    color: var(--main-color);
    border-color: var(--main-color);
}

.header .dropdown-content{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    width: 20rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: none;
    -webkit-transition:  all 0.5s;
    -o-transition:  all 0.5s;
    transition:  all 0.5s;
    z-index: 1000;
}

.header .dropdown-menu:hover .nav-btn{
    color: var(--main-color);
}

.header .dropdown-menu:hover .dropdown-content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: var(--custom-border);
}

.header .dropdown-content a{
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 1rem 1.5rem;
    cursor: pointer;
    background-color: transparent;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.header .dropdown-content a:hover{
    color: var(--white);
    background: var(--main-color);
}

.header .icon-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center; 
    align-items: center;
    gap: 1rem;
}

.header .icon-container .icon{
    font-size: 1.8rem;
    color: var(--secondary-color);
    cursor: pointer;
}

.header .icon-container .icon:hover{ 
    color: var(--main-color);
}

.header .mobile-search{
    display: none;
}

.header .search-container{
    position: absolute;
    top: 100%;
    right: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 2rem;
    background: var(--white);
    width: 40rem;
    padding: 1.5rem 2rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    opacity: 0;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    -webkit-transition: -webkit-transform 0.3s ease;
    -o-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    border-radius: 50rem;
    -webkit-transform: translateX(300%);
        -ms-transform: translateX(300%);
            transform: translateX(300%);
}

.header .search-container.active{
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
        transform: translateX(0);
}

.header .search-container input{
    width: 100%;
    height: 100%;
    background: transparent;
    color: var(--black);
    font-size: 1.8rem;
    text-transform: none;
}

.header .search-container button{
    color: var(--secondary-color);
    background-color: transparent;
    font-size: 2rem;
    padding-right: 0.5rem;
    padding-left: 1rem;
}

.header .search-container button:hover{
    color: var(--main-color);
    cursor: pointer;
}

/*-- Search Container --*/
.search-container{
    position: absolute;
    top: 100%;
    right: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 2rem;
    background: var(--white);
    width: 50rem;
    padding: 1rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
    transform-origin: right;
    -webkit-transition: -webkit-transform 0.5s linear;
            transition: -webkit-transform 0.5s linear;
            transition: transform 0.5s linear;
            transition: transform 0.5s linear, -webkit-transform 0.5s linear;
}

.search-container.active{
    -webkit-transform: translateX(0);
            transform: translateX(0);
}

.search-container input{
    width: 100%;
    height: 100%;
    background: transparent;
    color: var(--black);
    font-size: 1.8rem;
    text-transform: none;
}

.search-container .fas{
    color: var(--secondary-color);
    font-size: 2rem;
    padding-right: 0.5rem;
    padding-left: 1rem;
}

.search-container .fas:hover{
    color: var(--main-color);
    cursor: pointer;
}

/*----- 6- Footer Area CSS -----*/
.footer{
    background: var(--main-color);
}

.footer .box-container{
    /* display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr)); */
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 5%;
}

/* Footer Logo */
.footer-item .logo img{
    height: 7rem;
    width: auto;
}

.footer-item .links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 2rem;
}

.footer-item .links a,
.footer-item .links span{ 
    font-size: 1.6rem;
    color: var(--white);
}

.footer-item .links span {
    display: inline-block;
    padding: 0.5rem 2rem;
}

.footer-item .links p:hover a{
    color: var(--black);
}

.footer .content{
    text-align: center;
}

.footer .content p{
    font-size: 1.6rem;
    color: var(--white);
}

.footer .social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer .social a{
    height: 3.5rem;
    width: 3.5rem;
    font-size: 1.8rem;
    color: var(--main-color);
    background-color: var(--white);
    border: 0.15rem solid var(--white);
    border-radius: var(--border-radius-3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .social a:hover {
    color: var(--white);
    background-color: transparent;
}

/*----- 7- Scroll-Top Area CSS -----*/
.scroll-top{
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    height: 5rem;
    width: 5rem;
    font-size: 2rem;
    color: var(--white);
    background: var(--main-color);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s; 
    transition: all 0.2s;
    z-index: 900;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-3);
    border: 0.2rem solid var(--main-color);
    background-color: var(--main-color);
}

.scroll-top:hover{
    border-color: var(--white);
    cursor: pointer;
}

/*----- 8- Form CSS -----*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    color: var(--secondary-color) !important;
    -webkit-transition: background-color 5000s ease-in-out 0s;
        -o-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;
}

.form .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form .box{
    width: 100%;
    background-color: transparent;
    font-size: 1.6rem;
    color: var(--secondary-color);
    padding: 1rem 1.5rem; 
    border: 0.15rem solid rgba(0, 0, 0, 0.1);
    text-transform: none;
}

.form .box::-webkit-input-placeholder{
    text-transform: capitalize;
}
.form .box::-moz-placeholder{
    text-transform: capitalize;
}
.form .box:-ms-input-placeholder{
    text-transform: capitalize;
}
.form .box::placeholder{
    text-transform: capitalize;
}

.form .box:focus{
    border-color: var(--main-color);
}

.form textarea{
    resize: none;
    height: 20rem;
}

.form .btn{
    width: 100%;
    overflow: hidden;
    margin-top: 1rem;
}



/*----- 9- Dark Form CSS -----*/
/* .dark-form input:-webkit-autofill,
.dark-form input:-webkit-autofill:hover,
.dark-form input:-webkit-autofill:focus,
.dark-form input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--white);
    -webkit-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;
}

.dark-form .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dark-form .input-field{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem; 
    border: 0.15rem solid var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-1);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

.dark-form .input-field:hover{
    border-color: var(--main-color);
}

.dark-form .input-field label {
    color: var(--main-color);
    font-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.dark-form .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--white);
    background-color: transparent;
    text-transform: none;
}

.dark-form .box::-webkit-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form .box::-moz-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form .box:-ms-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form .box::placeholder{
    text-transform: capitalize;
    color: var(--white);
} */

.dark-form textarea{
    height: 15rem;
    resize: none;
}

.dark-form .text-area {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.dark-form .checkbox-label {
    color: var(--white);
    position: relative;
    padding-left: 2.5rem;
    cursor: pointer;
    font-size: 1.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.dark-form .checkbox-label input{
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.dark-form .checkbox-indicator{
    position: absolute;
    top: 0.2rem;
    left: 0;
    height: 1.6rem;
    width: 1.6rem;
    background: transparent;
    outline: 0.15rem solid var(--white);
    border-radius: 0.2rem;
}

.dark-form .checkbox-label input:checked ~ 
.checkbox-indicator {
    background: var(--main-color);
    outline-color: var(--main-color);
}

.dark-form .checkbox-indicator:after {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0.2rem;
    width: 0.3rem;
    height: 0.8rem;
    border: solid var(--light-grey);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    display: none;
}

.dark-form .checkbox-label input:checked ~ 
.checkbox-indicator:after {
    display: initial;
}

.dark-form .extra-services{
    padding-top: 1rem;
    padding-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
}

.dark-form .select option{
    color: var(--grey);
}

.dark-form .select{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem;
    border: 0.15rem solid var(--white);
    border-radius: var(--border-radius-1);
    width: 100%;
}

.dark-form .select-container{
    height: 100%;
    min-width: 100%;
    position: relative;
}

.dark-form .select-box{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    color: var(--white);
    background-color: transparent;
    padding: 1.5rem;
    font-size: 1.6rem;
    padding-left: 4.5rem;
}

.dark-form .select-container label{
    position: absolute;
    height: 100%;
    top: 0;
    left: 1.5rem;
    color: var(--main-color);
    font-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.dark-form .select-container .icon-container{
    width: 4rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

}

.dark-form .select-container .icon-container i{
    font-size: 1.6rem;
    color: var(--white);
}

.dark-form ::-webkit-calendar-picker-indicator {
    -webkit-filter: invert(1);
            filter: invert(1);
}

/*----- 10- Light Form CSSq -----*/
.light-form input:-webkit-autofill,
.light-form input:-webkit-autofill:hover,
.light-form input:-webkit-autofill:focus,
.light-form input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--secondary-color);
    -webkit-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;
}

.light-form .input-field{
    border-color: rgba(0, 0, 0, 0.2);
}

.light-form .box{
    color: var(--secondary-color);
}

.light-form .box::-webkit-input-placeholder{
    color: var(--grey);
}

.light-form .box::-moz-placeholder{
    color: var(--grey);
}

.light-form .box:-ms-input-placeholder{
    color: var(--grey);
}

.light-form .box::placeholder{
    color: var(--grey);
}

/*----- 11- Swiper Pagination CSS -----*/
.swiper-pagination-bullet{ 
    height: 1rem;
    width: 1rem;
    background: var(--white);
    opacity: 0.7;
    border-radius: 5rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.swiper-pagination-bullet-active{
    width: 3rem;
    background: var(--main-color) !important;
    opacity: 0.9;
}

/*----- 12- Swiper Navigation CSS -----*/
.swiper-button-next,
.swiper-button-prev{
    border: 0.2rem solid var(--white);
    color: var(--white);
    padding: 1.5rem;
    height: 6rem;
    width: 6rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--main-color);
}

/*----- 13- CheckBox CSS -----*/
.checkbox-label {
    color: var(--white);
    position: relative;
    padding-left: 2.5rem;
    cursor: pointer;
    font-size: 1.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.checkbox-label label{
    cursor: pointer;
}

.checkbox-label input{
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.checkbox-indicator{
    position: absolute;
    top: 0.2rem;
    left: 0;
    height: 1.6rem;
    width: 1.6rem;
    background: transparent;
    outline: 0.15rem solid var(--white);
    border-radius: 0.2rem;
}

.checkbox-label input:checked ~ 
.checkbox-indicator {
    background: var(--main-color);
    outline-color: var(--main-color);
}

.checkbox-indicator:after {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0.2rem;
    width: 0.3rem;
    height: 0.8rem;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    display: none;
}

.checkbox-label input:checked ~ 
.checkbox-indicator:after {
    display: initial;
}

/*----- 14- Sidebar Heading CSS -----*/
.sidebar-heading h2{
    word-spacing: 1px;  
    letter-spacing: 0.12rem;
    font-size: 2.5rem; 
    font-weight: 500;
    /* font-family: var(--font-heading); */
    color: var(--white);
    background-color: var(--main-color);
    padding: 1rem 1.5rem;
    text-transform: uppercase;
} 

/*----- 15- Sidebar CSS -----*/
/*
1- Search
2- Category
3- Recent Items
4- Tags
*/

.sidebar{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 28rem; 
        flex: 1 1 28rem;  
}

.sidebar .sidebar-item{
    margin-bottom: 1.5rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    background-color: var(--secondary-color);
    overflow: hidden;
    border-bottom: var(--custom-border);
}

.sidebar .box-container{
    padding: 1.5rem;
}

/*-- 1- Search --*/
.sidebar .search .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

.sidebar .search .input-box input{
    width: 100%;
    padding: 1.5rem;
    overflow: hidden;
}

.sidebar .search .input-box input:focus{
    border-color: var(--main-color);
}

.sidebar .search .input-box label{
    color: var(--white);
    background-color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 2rem;
    font-size: 1.8rem;
    cursor: pointer;
}

/*-- 2- Category --*/
.sidebar .category a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    padding: 1rem;
}

.sidebar .category a:last-child{
    margin-bottom: 0;
}

.sidebar .category a span{
    font-size: 1.7rem;
    color: var(--white);
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    /* font-family: var(--font-heading); */
}

.sidebar .category a span i{
    font-size: 1.8rem;
    color: var(--main-color);
}

.sidebar .category a p{
    color: var(--white);
}

.sidebar .category a:hover{
    background-color: var(--main-color);
}

.sidebar .category a:hover i{
    color: var(--white);
}

/*-- 3- Recent Post --*/
.sidebar .post-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.sidebar .post-item:last-child{
    margin-bottom: 0;
}

.sidebar .post-item img{
    height: 8rem;
    width: 10rem;
    border-radius: var(--border-radius-1);
}

.sidebar .post-item a{
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    /* font-family: var(--font-heading); */
    padding-bottom: 0.3rem;
}

.sidebar .post-item a:hover{
    color: var(--main-color);
}

.sidebar .post-item .price p{
    padding-top: 0.5rem;
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--main-color);
    /* font-family: var(--font-heading); */
}

.sidebar .post-item .price span{
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    text-decoration: line-through;
    padding-left: 0.2rem;
    /* font-family: var(--font-heading); */
}

.sidebar .post-item h3{
    padding-top: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
}

.sidebar .post-item h3 i{
    color: var(--main-color);
}

.sidebar .post-item h3 span{
    font-weight: 400;
    color: var(--white);
}

/*-- 4- Tags --*/
.sidebar .tags .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.7rem;
}

.sidebar .tag-item{
    color: var(--white);
    border: 0.15rem solid rgba(255, 255, 255, 0.2);
    font-size: 1.7rem;
    padding: 1rem 1.6rem;
}

.sidebar .tag-item:hover{
    background-color: var(--main-color);
    border-color: var(--main-color);
    cursor: pointer;
}

/*------------------------------ (00)- Global CSS (End) ------------------------------*/



/*------------------------------ (01)- Home (Start) ------------------------------*/

/*----- 1- Home-Slider -----*/
.home{ 
    padding: 0;
    position: relative;
} 
  
.home-slider{ 
    position: relative; 
    overflow: hidden;
}
  
.home-slider .swiper-button-next,
.home-slider .swiper-button-prev{
    opacity: 0;
}

.home-slider:hover .swiper-button-next,
.home-slider:hover .swiper-button-prev{
    opacity: 1;
}

.home-item{
    height: 60rem;
}
  
.home-item .content{ 
    padding: 10rem 5%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    background:         linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}
  
.home-item .content .text{
    width: 60rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-item .content h4 {
    font-size: 2rem;
    color:var(--main-color);
}

.home-item .content h4 i {
    color: transparent;
    -webkit-text-stroke: 0.12rem var(--main-color);
    margin-right: 1rem;
}

.home-item .content h3{
    font-size: 6rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    padding-bottom: 2rem;
}
  
.home-item .content p{
    font-size: 1.7rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 0.4rem solid var(--main-color);
}

.home-item .btn-container {
    display: flex;
    gap: 1rem;
}

/* .home-item .btn-container .number {
    font-size: 1.6rem;
    color: var(--white);
    background: rgba(255, 59, 59, 0.18);
    border: 1px solid rgba(255, 80, 80, 0.35);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-1);
} */

.home-item .btn-container .number {
    font-size: 1.6rem;
    color: var(--white);

    background: rgba(255, 255, 255, 0.18);
    /* border: 1px solid rgba(255, 80, 80, 0.35); */
    backdrop-filter: blur(10px);

    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-1);
}

.home-item .btn-container .number i {
    color: var(--white);
}

.home-item .btn-container .number span {
    font-weight: 600;
}

/*----- 2- Features -----*/
.features .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 0.5rem;
}

.feature-item{
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: var(--main-color);
    border-radius: var(--border-radius-1);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.feature-item i{
    color: transparent;
    -webkit-text-stroke: 0.15rem var(--white);
    font-size: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;  
    margin: 0 auto;
}

.feature-item h3{
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-top: 1.2rem;
    margin-bottom: 1rem;
    /* font-family: var(--font-heading); */
}

.feature-item p{
    font-size: 1.5rem;
    color: var(--white);
}

/*----- 3- Tracking -----*/

/*----- 3- Service Slider -----*/
.service-slider{
    overflow: hidden;
    padding: 0.5rem;
}

/*----- 4- Counter -----*/
.counting{
    padding: 4rem 5%;
    margin: 1rem 0;
    min-height: 15rem;  
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4rem;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../../assets/images/Background/Counter.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../../assets/images/Background/Counter.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.counting .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
    text-align: center;
}

.counting .box i{
    height: 8rem;
    width: 8rem;
    color: transparent;
    -webkit-text-stroke: 0.15rem var(--white);
    background-color: var(--main-color);
    border-radius: var(--border-radius-3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;  
    font-size: 4rem;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.counting .box .count{
    font-size: 4rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1;
}

.counting .box h3{
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 500;
    /* font-family: var(--font-heading); */
}

/*----- 6- Process -----*/

/*----- 7- Request Quote -----*/

/*----- 8- Banner -----*/
.banner {
    padding: 6rem 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)),
        url("../../assets/images/Background/Banner.jpg");
    background-position: center;
    background-size: cover;
}

.banner .content {
    width: 70rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner .heading {
    /* align-items: flex-start; */
}

.banner h2 {
    font-size: 5rem;
    line-height: 1.4;
}

/*----- 6- Testimonials -----*/
.home-testimonial .swiper-pagination-bullet{
    background: var(--black);
    opacity: 1;
}

/*----- 8- Clients Slider -----*/
.home-clients{
    background-color: rgba(0, 0, 0, 0.05);
}

.clients .client-slider{
    overflow: hidden;
}

/*------------------------------ (01)-Home (End) ------------------------------*/



/*------------------------------ (02)-About (Start) ------------------------------*/
.about-us{
    padding: 0;
}

/*----- 1- About Us -----*/
.about .box-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about .image {
    flex: 1 1 45rem;
    height: 52rem;
    /* border-radius: var(--border-radius-1); */
    overflow: hidden;
    position: relative;
    padding-left: 1.5rem;
    padding-bottom: 1.5rem;
}

.about .image:before {
    content: '';
    position: absolute;
    bottom:0;
    left: 0;
    width: 95%;
    height: 95%;
    background-color: var(--main-color);
    border-radius: var(--border-radius-1);
    /* clip-path: polygon(0 0, 0% 100%, 100% 100%); */
    z-index: -1;
}

.about .image img {
    border-radius: var(--border-radius-1);
}

.about .image .experience{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 15rem;
    height: 12rem;
    padding: 3rem 4rem;
    background-color: var(--main-color);
    border-radius: var(--border-radius-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about .image .experience span {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
}

.about .image .experience p {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
}

.about .content {
    flex: 1 1 45rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about .about-points {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.about .about-points .box{
    flex: 1 1 24rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--border-radius-1);
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.02);
}

.about .about-points .box i {
    font-size: 1.8rem;
    color: var(--main-color);
}

.about .about-points .box h3 {
    font-size: 1.6rem;
}

.about .btn {
    margin-top: 1.5rem;
}

/*----- 2- Company History -----*/
.company-history{
    padding: 0;
}

.timeline .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.timeline-item{
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33rem;
        flex: 1 1 33rem;
    padding: 0 3rem 2rem 3rem;
    border-left: 0.2rem solid var(--main-color);
    margin-left: 2rem;
}

.timeline-item i{
    position: absolute;
    top: 0; 
    left: -2.5rem;
    height:5rem;
    width: 5rem;
    border-radius: var(--border-radius-3);
    line-height: 5rem;
    text-align: center;
    font-size: 2rem;
    color: var(--white);
    background:var(--main-color);
}

.timeline-item img{
    height: 20rem;
    margin-bottom: 2rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.timeline-item span{
    background: var(--main-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 500;
    border-radius: 50rem;
}

.timeline-item h3{
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 500;
    color: var(--secondary-color);
    /* font-family: var(--font-heading); */
    margin-top: 1.4rem;
    margin-bottom: 0.6rem;
}

/*----- 3- Why Choose Us -----*/
.why-us .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4rem;
}

.why-us .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 45rem;
        flex: 1 1 45rem;
}

.why-us .content p{
    padding-bottom: 2rem;
}

.why-us .features{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.why-us .features .item{
    flex: 1 1 24rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    font-size: 1.6rem;
}

.why-us .features i{
    font-size: 3.5rem;
    height: 7rem;
    width: 7rem;
    border-radius: var(--border-radius-3);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    color: transparent;
    -webkit-text-stroke: 0.15rem var(--white);
}

.why-us .features div {
    flex: 1 1 14rem;
}

.why-us .features h3 {
    padding-bottom: 0.5rem;
}

.why-us .features span{
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--grey);
}

.why-us .image {
    flex: 1 1 40rem;
    height: 52rem;
    overflow: hidden;
    position: relative;
    padding: 4rem;
    padding-left: 0;
}

.why-us .image:before {
    content: '';
    position: absolute;
    bottom:0;
    right: 0;
    width: 25rem;
    height: 100%;
    background-color: var(--main-color);
    border-radius: var(--border-radius-1);
    z-index: -1;
}

.why-us .image img{
    height: 45rem;
    border-radius: var(--border-radius-2);
}

/*----- 4- Team -----*/
.team .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
}

.team-item{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
    height: 40rem;
}

.team-item .image{
    height: 100%;
}

.team-item .icon-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -ms-grid-row-align: flex-end;
    align-items: flex-end; 
    gap: 0.7rem;
    position: absolute;
    top: 2rem;
    right: -100%;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    z-index: 2;
}

.team-item:hover .icon-container{
    right: 2rem;
}

.team-item .icon-container a{
    height: 4rem;
    width: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;  
    font-size: 1.5rem;
    color: var(--white);
    background-color: var(--main-color);
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.team-item .icon-container a:hover{
    background-color: var(--secondary-color);
}

.team-item .content{
    padding: 2rem 1.5rem;
    text-align: center;
    position: absolute;
    left: 0rem;
    bottom: 0rem;
    right: 0rem;
    background-color: var(--white);
}

.team-item .content h2{
    font-size: 2.4rem;
    font-weight: 600;
    /* font-family: var(--font-heading); */
    padding-bottom: 0.5rem;
    color: var(--secondary-color);
}

.team-item .content h2:hover{
    color: var(--main-color);
}

.team-item .content h3{
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
}

/*----- 5- Team Single -----*/
.team-single .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 3rem;
}

.team-single .intro{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem; 
        flex: 1 1 15rem;
}

.team-single .image{  
    width: 40rem;
    height: 45rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.team-single .icon-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem; 
    gap: 0.7rem;
}

.team-single .icon-container a{
    height: 4rem;
    width: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;  
    font-size: 1.5rem;
    color: var(--white);
    background-color: var(--main-color);
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.team-single .icon-container a:hover{
    background-color: var(--secondary-color);
}

.team-single .information{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50rem;
        flex: 1 1 50rem;
}

.team-single .information h3{
    color: var(--secondary-color);
    font-size: 3rem;
    font-weight: 600;
    /* font-family: var(--font-heading); */
}

.team-single .information p{
    color: var(--main-color);
    font-size: 2.2rem;
    font-weight: 600;
    padding-bottom: 1.5rem;
}

.team-single .information .team-about{
    padding-top: 1.5rem;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.team-single h4{
    color: var(--secondary-color);
    font-size: 3rem;
    font-weight: 500;
    /* font-family: var(--font-heading); */
    padding-bottom: 0.5rem;
}

.team-single .team-about .text{
    font-size: 1.6rem;
    color: var(--grey);
    line-height: 1.7;
}

.team-single .skills{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.team-single .skill-item{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem; 
}

.team-single .skill-item .box{
    padding: 1rem 0;
}

.team-single .skill-item .box h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.7rem 0;
    font-size: 1.7rem;
    color: var(--secondary-color);
    font-weight: 400;
}

.team-single .skill-item .box .progress-bar{
    width: 100%;
    background: var(--secondary-color);
    overflow: hidden;
    height: 1.2rem;
    border-radius: 50rem;
}

.team-single .skill-item .box .progress-bar span{
    display: block;
    height: 100%;
    background: var(--main-color);
}

/*----- 6- Testimonials -----*/
.testimonial-slider{
    position: relative;
    padding-bottom: 6rem;
    overflow: hidden;
}

/* .testimonial .swiper-pagination-bullet{
    background: #16a34a;
} */

.testimonial .swiper-pagination-bullet{ 
    background: var(--main-color);
    opacity: 0.9;
}
    
.testi-item{
    position: relative;
    padding: 3rem 0;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-1);
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.testi-item .image{
    position: relative;
    height: 8rem;
    width: 8rem;
}

.testi-item img{
    overflow: hidden;
    border-radius: var(--border-radius-3);
    /* border: 0.5rem solid var(--main-color); */
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.testi-item .image i{
    position: absolute;
    bottom: 0;
    right: 0;
    height: 3rem;
    width: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white);
    background-color: var(--main-color);
    border-radius: var(--border-radius-3);
    /* -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); */
}

.testi-item p{
    padding: 0 3rem;
    padding-bottom: 2rem;
}

.testi-item .bottom {
    border-left: 0.5rem solid var(--main-color);
    padding-left: 3rem;
}

.testi-item .text h3{
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--black);
    padding: 0.5rem 0;
    /* font-family: var(--font-heading); */
}

.testi-item .text h4{
    color: var(--main-color);
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* .testi-item .fa-quote-right{
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    font-size: 8rem;
    color: var(--main-color);
} */

/*----- 7- Faqs -----*/
.faq{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
}

.faq .accordion-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
        flex: 1 1 42rem;
}

.faq .accordion{
    margin-bottom: 1.5rem;
    background: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-left: 0.5rem solid var(--main-color);
    overflow: hidden;
} 
 
.faq .accordion:last-child{
    margin-bottom: 0rem;
}  

.faq .accordion .accordion-heading{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
    color: var(--white);
    background-color: var(--secondary-color);
    cursor: pointer;
    overflow: hidden;
}

.faq .accordion .accordion-heading h3{
    font-size: 2.2rem;
    font-weight: 500;
    /* font-family: var(--font-heading); */
    padding: 2rem;
}

.faq .accordion .accordion-heading i{
    min-height: 5rem;
    width: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white); 
    background-color: var(--main-color);
    font-size: 1.8rem;
}

.faq .accordion.active .accordion-content{
    display: block;
}

.faq .accordion-content{
    padding: 2rem;
    font-size: 1.5rem;
    line-height: 2;
    color: var(--grey);
    display: none;
}

.faq .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40rem;
        flex: 1 1 40rem;
    height: 50rem;
}

/*----- 8- Certifications -----*/
.awards .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
}

.award-item{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 32rem;
        flex: 1 1 32rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}


/*------------------------------ (02)-About (End) ------------------------------*/



/*------------------------------ (03)-Pages (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Tab Information -----*/
.tab-buttons{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style-type: none;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-buttons .button{
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1.5rem 3rem;
    color: var(--white);
    background-color: var(--secondary-color);
    text-transform: uppercase;
    text-align: center;
}

.tab-buttons .button:hover,
.tab-buttons .button.active{
    background-color: var(--main-color);        
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    cursor: pointer;
}

/*----- 02- Page Single -----*/
.page-single{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    gap: 1.5rem;
}

.page-info{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem;
        flex: 1 1 75rem;
}

.page-info .image{
    height: 40rem; 
    position: relative;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.page-info .content{
    padding-top: 2rem;
}

.page-info .main-heading{
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-shadow: 1px 1px 8px rgba(0,0,0, 0.2);
    padding-bottom: 1rem;
}

.page-info .important{
    color: var(--black) !important;
    font-weight: 600;
}

.page-info p{
    padding-bottom: 1rem;
}

.page-info .page-gallery{ 
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
    padding: 2rem 0;
}
  
.page-info .page-gallery img{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.page-info .sub-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
    /* font-family: var(--font-heading); */
}

.page-info .sub-section{
    padding-top: 2rem;
}

.page-info .sub-section p{
    margin-bottom: -1rem;
}

.page-info .sub-section ul{
    list-style: none;
}

.page-info .sub-section ul li{
    padding-top: 1rem;
    font-size: 1.5rem;
    color: var(--grey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    line-height: 1.6;
} 

.page-info .sub-section ul i{ 
    color: var(--main-color);
    font-size: 1.4rem;
    height: 1.8rem;
    width: 1rem;
    height: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*----- 03- Page Sidebar -----*/
.page-details{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem; 
        flex: 1 1 25rem;  
    padding: 4rem;
    background-color: var(--secondary-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.page-details .sub-heading{
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 2.5rem;
    line-height: 1;
}

.page-details .detail-item{
    padding-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
}

.page-details .detail-item i{
    height: 2rem;
    width: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    font-size: 1.4rem;
    color: var(--white);
}

.page-details .detail-item .detail-content{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 15rem;
            flex: 1 1 15rem;
    border-left: 0.15rem solid var(--white);
    padding-left: 1rem;
}

.page-details .detail-item h3{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
    padding-bottom: 0.2rem;
}

.page-details .detail-item p{
    font-size: 1.5rem;
    color: #f7f7f7;
    line-height: 1.3;
}

.page-details .detail-item p.website{
    text-transform: none;
}

/*----- 04- Policy -----*/
.policy{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
}

.policy .policy-tab-buttons{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 15rem;
            flex: 1 1 15rem;
    overflow: hidden;
}

.policy .category{
    display: block;
    padding: 2rem 2.5rem;
    font-size: 1.8rem;
    color: var(--white);
    background: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    /* font-family: var(--font-heading); */
}

.policy .category:hover{
    background: var(--main-color);
}

.policy .policy-tabs{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 70rem;
            flex: 1 1 70rem;
}

.policy-item{
    background: var(--white);
    margin-bottom: 1.5rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 2rem;
}

.policy-item:last-child{
    margin-bottom: 0rem;
}

.policy-item h3{
    padding-bottom: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--secondary-color);
    /* font-family: var(--font-heading); */
}

.policy-item p{
    line-height: 2;
}

.policy-item ul{
    padding-left: 1rem;
}

.policy-item ul li{
    padding-top: 1rem;
    font-size: 1.5rem;
    color: var(--grey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

.policy-item ul i{ 
    color: var(--main-color);
    font-size: 1.2rem;
    height: 1.8rem;
    width: 1rem;
    padding-top: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*----- 05- Custom Form -----*/
.custom-form {
    padding: 0;
}

.custom-form .alert{
    display: block;
    font-size: 2rem;
    color: var(--main-color);
    padding-top: 1rem;
}

.custom-form .box-container{
    background: url(../../assets/images/Background/Tracking.jpg);
    background-position: center;
    background-size: cover;
}

.custom-form .content{
    /* border-top: 2rem solid var(--main-color);
    border-bottom: 2rem solid var(--main-color); */
    padding: 4rem 5%;
    padding-left: 15rem;
    max-width: 65%;
    margin-left: auto;
    background: rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    flex-direction: column;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
}

.custom-form .text-area {
    margin-bottom: 0rem;
}

.custom-form .btn{
    /* margin-top: 1.5rem; */
}

.custom-form form{
    /* width: 100%; */
    /* padding: 2rem 0; */
    /* text-align: center; */
}

/*--------------- PAGES ---------------*/

/*----- 1- Gallery -----*/
.gallery .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    -ms-grid-rows: auto;
        grid-template-rows: auto;
    gap: 1rem;
    grid-template-areas:
    'gallery-1 gallery-4 gallery-6'
    'gallery-1 gallery-4 gallery-6'
    'gallery-2 gallery-4 gallery-7'
    'gallery-2 gallery-5 gallery-7'
    'gallery-3 gallery-5 gallery-8'
    'gallery-3 gallery-5 gallery-8';
}

.gallery-item{
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    position: relative;
    cursor: pointer;
    height: 30rem;
}

/* Assign grid areas to Each Category Box */
.gallery-1 {
    grid-area: gallery-1;
}

.gallery-2 {
    grid-area: gallery-2;
}

.gallery-3 {
    grid-area: gallery-3;
}

.gallery-4 {
    grid-area: gallery-4;
    height: auto;
}

.gallery-5 {
    grid-area: gallery-5;
    height: auto;
}

.gallery-6 {
    grid-area: gallery-6;
}

.gallery-7 {
    grid-area: gallery-7;
}

.gallery-8 {
    grid-area: gallery-8;
}

.gallery-item .content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center; 
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    position: absolute;
    left: 10%;
    top: 10%;
    width: 80%;
    height: 80%;
    z-index: 1;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    background: var(--main-color);
    opacity: 0;
}

.gallery-item:hover .content{
    opacity: 0.9;
}

.gallery-item a i{
    scale: 0;
    font-size: 5rem;
    color: var(--white);
}

.gallery-item:hover a i{
    scale: 1;
}

/*----- 2- Pricing -----*/
.pricing .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}

.price-item{ 
    background-color: var(--white);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    text-align: left;
    padding: 3rem;
}

.price-item.active{ 
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
  
.price-item h3{
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
    line-height: 1.2;
    /* font-family: var(--font-heading); */
}

.price-item.active h3{
    color: var(--white);
}

.price-item.active p{
    color: var(--white);
}
  
.price-item .price{
    color: var(--secondary-color);
    font-size: 6rem;
    font-weight: 400;
    padding-top: 1rem;
}

.price-item.active .price{
    color: var(--white);
}
    
.price-item .price span{
    font-size: 2rem;
    font-weight: normal;
    color: var(--grey);
}

.price-item.active .price span{
    color: var(--white);
}
    
.price-item ul{ 
    list-style: none;
    margin: 2rem 0;
    padding: 1.5rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}

.price-item.active ul{ 
    border-color: rgba(255, 255, 255, 0.2);
}
    
.price-item ul li{
    padding: 0.5rem 0;
    font-size: 1.6rem;
    color: var(--grey);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    gap: 0.7rem;
}

.price-item.active ul li{
    color: #f7f7f7;
}
  
.price-item ul li i{
    color: var(--main-color);
    font-size: 1rem;
}

/*----- 3- Careers -----*/
.career{
    padding: 0;
}

.career .career-intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4rem;
    padding: 3rem 5%;
}

.career .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
        flex: 1 1 42rem;
}

.career .content p{
    padding-bottom: 1rem;
}

.career .career-features{
    padding-top: 0.5rem;
}

.career .career-features li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    font-size: 1.6rem;
}

.career .career-features i{
    color: var(--main-color);
}

.career .career-features span{
    color: var(--grey);
}

.career .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 42rem;
        flex: 1 1 42rem;
    height: 45rem;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.career-benefits{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url("../../assets/images/Background/Career.jpg");
    background:         linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url("../../assets/images/Background/Career.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 6rem 5%;
}

.career-benefits .benefit-item{
    text-align: center;
    padding: 1rem 2rem;
}

.career-benefits .benefit-item i{
    height: 7rem;
    width: 7rem;
    font-size: 2.5rem;
    margin: 0rem auto;
    margin-bottom: 1.5rem;
    color: transparent;
    -webkit-text-stroke: 0.15rem var(--white);
    background: var(--main-color);
    border-radius: var(--border-radius-3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.career-benefits .benefit-item h3{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    padding-bottom: 0.5rem;
    /* font-family: var(--font-heading); */
}

.career-benefits .benefit-item p{
    color: var(--white);
}

.career-positions{
    padding: 3rem 5%;
}

.position-item{
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-bottom: var(--custom-border);
    padding: 2.5rem 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 1rem;
}

.position-item .content{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 35rem;
            flex: 1 1 35rem;
}

.position-item h3{
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--secondary-color);
    /* font-family: var(--font-heading); */
}

.position-item h3:hover{
    color: var(--main-color);
}

.position-item .details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
}

.position-item h4{
    border: 0.15rem solid var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 5rem;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--secondary-color);
}

.position-item p{
    padding-top: 1.5rem;
    padding-bottom: 2rem;
}

/*----- 4- Career Single -----*/

/*----- 5- Process -----*/


/*----- 6- Features -----*/

/*----- 7- Clients -----*/
.clients .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
}

.client-item {
    width: 20rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

/*----- 8- Request Quote -----*/
.custom-quote .box-container{
    background-image: url("../../assets/images/Background/Quote.jpg");
}

/*----- 9- Error 404 -----*/
.error-404 .content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.error-404 .box-container{
    width: 60rem;
    text-align: center;
    margin: 10rem 0;
}

.error-404 h2{
    font-size: 20rem;
    background: var(--main-color); 
    -webkit-background-clip: text; 
    background-clip: text; 
    -webkit-text-fill-color: transparent; 
    line-height: 1;
    padding-bottom: 1rem;
    font-weight: 700;
    /* font-family: var(--font-heading); */
}

.error-404 h3{
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 1.2;
    padding-bottom: 1.5rem;
    text-transform: uppercase;
    /* font-family: var(--font-heading); */
}

.error-404 h5 span{
    color: var(--main-color);
    text-transform: uppercase;
    /* font-family: var(--font-heading); */
}

.error-404 p{
    padding-bottom: 2rem;
}

/*------------------------------ (03)-Pages (End) ------------------------------*/



/*------------------------------ (04)-Service (Start) ------------------------------*/

/*----- 01- Services -----*/
.services .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

.service-item{
    overflow: hidden;
    border-radius: var(--border-radius-1);
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.12);
}

.service-item .image {
    position: relative;
    height: 20rem;
}

.service-item .icon{
    height: 8rem;
    width: 8rem;
    font-size: 3rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transition: all 0.4s ease-in-out 0s;
    transform: translate(-50%, 50%);
    color: transparent;
    -webkit-text-stroke: 0.15rem var(--white);
    background-color: var(--main-color);
    border-radius: var(--border-radius-3);
    border: 0.5rem solid var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.service-item:hover .icon {
    border: none;
}

.service-item .content{
    padding: 2.5rem 2.5rem;
    padding-top: 5rem;
    text-align: center;
}

.service-item h3{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black);
    /* font-family: var(--font-heading); */
}

.service-item h3:hover{
    color: var(--main-color);
}

.service-item p {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.service-item .btn {
    font-weight: 600;
    color: var(--main-color);
    background: var(--white);
    border-color: var(--main-color);
}

.service-item .btn:after{
    background: var(--main-color);
}

.service-item:hover .btn {
    color: var(--white);
}

.service-item:hover .btn:after{
	left: 0;
	width: 100%;
}

/*----- 02- Service Single -----*/
.service-info .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
    gap: 2rem;
}

.service-info .work-item{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem; 
    text-align: center;
    padding-top: 2rem;
}

.service-info .work-item i{
    height: 8rem;
    width: 12rem;
    font-size: 3.5rem;
    color: transparent;
    -webkit-text-stroke: 0.15rem var(--white);
    background-color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    margin-bottom: 1rem;
}

.service-info .work-item h4{    
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 0.5rem;
}

.service-faqs{
    display: block;
    padding-top: 2rem;
}

.service-faqs .accordion-container{
    margin-top: 1rem;
}

/*------------------------------ (04)-Service (End) ------------------------------*/



/*------------------------------ (05)-Project (Start) ------------------------------*/

/*----- 1- Projects -----*/
.projects .tab-buttons{
    -webkit-box-pack: center; 
    -ms-flex-pack: center;
    justify-content: center;
}

.project-item{
    width: 33.3%;
    padding: 0.6rem;
}

.project-content{
    height: 30rem;
    position: relative;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.project-item .content{
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 3rem;
    padding: 2rem;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: var(--border-radius-1);
}

.project-item .content h3{
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--main-color);
}

.project-item .content h4{
    font-size: 3rem;
    font-weight: 500;
    /* font-family: var(--font-heading); */
    color: var(--secondary-color);
}

.project-item .content h4:hover{
    color: var(--main-color);
}

.project-item .view{
    height: 4.5rem;
    width: 4.5rem;
    font-size: 1.7rem;
    color: var(--white);
    background-color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
    border-radius: var(--border-radius-2);
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
}

.project-item .view:hover{
    background-color: var(--secondary-color);
}

/*----- 2- Project-Single -----*/
.project-single{
    -webkit-box-align: end;
    -ms-flex-align: end;
            -ms-grid-row-align: flex-end;
        align-items: flex-end;
}



/*------------------------------ (05)-Project (Start) ------------------------------*/


/*------------------------------ (06)-Shop (Start) ------------------------------*/
.shop{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
}

/*--------------- COMPONENTS ---------------*/

/*----- 01- Filter -----*/
.filter .box-container{
    padding-top: 4rem;
}

.filter .slider{
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

.filter .slider .progress{
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: var(--main-color);
    -webkit-transition: none;
            transition: none;
}

.range-input{
    position: relative;
    -webkit-transition: none;
            transition: none;
}

.range-input input{
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="range"]::-webkit-slider-thumb{
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: var(--main-color);
    pointer-events: auto;
    -webkit-appearance: none;
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.05);
            box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

input[type="range"]::-moz-range-thumb{
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: var(--main-color);
    pointer-events: auto;
    -moz-appearance: none;
    -webkit-box-shadow: 0 0 6px rgba(0,0,0,0.05);
            box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

.price-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 400;
    margin-bottom: 0px;
    margin-top: 3rem;
}

.filter .price-input{
    width: 15rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0.1rem solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
}

.filter .price-input .field{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.2rem;
    width: 100%;
    height: 3rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.filter .field input{
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 1.5rem;
    text-align: center;
    -moz-appearance: textfield;
    appearance: textfield;
    color: var(--white);
    background-color: transparent;
}

.filter input[type="number"]::-webkit-outer-spin-button,
.filter input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.filter .price-input .separator{
    width: 10rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.8rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/*----- 02- Shop Header -----*/
.shop .intro{
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify; 
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center; 
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
    gap: 1rem;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 1rem 1.5rem;
}

.shop .intro .showing{
    font-size: 1.6rem;
    color: var(--grey);
}

.shop .intro .styles{
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
}

.shop .intro .styles a{
    height: 4rem;
    width: 4rem;
    font-size: 2rem;
    color: var(--white);
    background-color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.shop .intro .styles a:hover{
    cursor: pointer;
    background-color: var(--secondary-color);
}

.shop .intro .sorting-type select{
    font-size: 1.4rem;
    color: var(--grey);
    background-color: transparent;
    border: var(--border);
    border-radius: var(--border-radius-1);
    padding: 1rem;
}

.shop .intro .sorting-type select option{
    padding: 1rem;
}

/*----- 03- Quantity Box -----*/
.quantity.buttons_added {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #ccc;
    height: 4rem;
    width: 11rem;
    margin: 0 auto;
}

.quantity.buttons_added .minus,
.quantity.buttons_added .plus {
    width: 3rem;
    color: var(--black);
    cursor:pointer;
    background-color: #ffffff;
}

.quantity.buttons_added .minus:hover,
.quantity.buttons_added .plus:hover {
    background: var(--main-color); 
    color: var(--white);
}

.quantity .input-text.qty {
    padding: 0 1rem;
    text-align: center;
    background-color: transparent;  
    border-right: 1px solid #ccc; 
    border-left: 1px solid #ccc; 
} 
  

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
    
.quantity.buttons_added .minus:focus,
.quantity.buttons_added .plus:focus {
    outline: none; 
}

/*----- 04- product-item -----*/
.product-item{
    overflow: hidden;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
} 

.product-item .options{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; 
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    gap: 1rem;
    opacity: 0;
}

.product-item:hover .options{
    opacity: 1;
}

.product-item .options a{
    height: 5rem;
    width: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; 
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    background: var(--main-color);
    color: var(--white);
    cursor: pointer;
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.product-item .options a i{ 
    font-size: 1.6rem;
}

.product-item .options a:hover{
    color: var(--main-color);
    background-color: var(--white);
}

.product-item .image{
    overflow: hidden;
    position: relative;
}

.product-item .image img{
    height: 25rem;
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.product-item .content{
    padding: 1.5rem;
    text-align: center;
}

.product-item h3{
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-bottom: 0.2rem;
    /* font-family: var(--font-heading); */
    text-transform: uppercase;
}

.product-item h3:hover{
    color: var(--main-color);
}

.product-item .price p{
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--main-color);
}

.product-item .price span{ 
    font-size: 1.4rem;
    font-weight: 400;
    text-decoration: line-through;
    color: var(--grey);
    padding-left: 0.2rem;
}

.product-item .rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.7rem;
}

.product-item .rating .icon {
    font-size: 1.6rem;
    color: var(--main-color);
}

.product-item .rating h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/*----- 05- Shop-Title -----*/
.shoplist-title{
    background-color: var(--secondary-color);
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.shoplist-title h3{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 10rem;
        flex: 1 1 10rem;
    font-size: 1.8rem;
    text-align: center;
}

.shoplist-title h3.product-heading{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem;
    text-align: left;
}

/*----- 06- Cart-Summary -----*/
.cart-summary{
    background-color: var(--white);
} 

.summary-item{
    display: -webkit-box;
    display: -ms-flexbox; 
    display: flex; 
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 1.5rem;
} 

.summary-item .summary-box{
    font-size: 2rem;
    color: var(--black);
}

.summary-item .name{
    font-weight: 600;
}

.summary-item .value{
    font-weight: 400;
    color: var(--grey);
}

/*----- 07- Address -----*/
.address-details .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
}

.address-details .address{
    -webkit-box-flex: 1;
    -ms-flex:1 1 25rem;
        flex:1 1 25rem;
}

.address .title{
    background-color: var(--main-color);
    color: var(--white);
    padding: 1rem 0.5rem;
    margin-bottom: 1rem;
}

.address .title h3{
    /* font-family: var(--font-heading); */
    font-size: 1.8rem;
}

.address .address-info p{ 
    padding-bottom: 0.5rem;
}

.address .address-info p span{
    font-weight: bold;
    color: var(--secondary-color);
    /* font-family: var(--font-heading); */
    padding-right: 1rem;
}

/*----- 08- Account-Form -----*/
.account-form input:-webkit-autofill,
.account-form input:-webkit-autofill:hover,
.account-form input:-webkit-autofill:focus,
.account-form input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--white);
    -webkit-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;
}

.account-form{
    max-width: 45rem;
    padding: 5rem;
    background: var(--secondary-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    margin: 1rem auto;
    text-align: center;
    position: relative;
    margin-top: 4rem;
}

.account-form .icon{
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    height: 9rem;
    width: 9rem;
    border-radius: 50%;
    font-size: 3.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white);
    background-color: var(--main-color);
}
  
.account-form h3{ 
    font-size: 4rem;
    padding: 1rem 0;
    font-weight: 600;
    color: var(--main-color);
    text-transform: uppercase;
}

.account-form .input-field{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    margin: 0.7rem 0;
    border: 0.15rem solid rgba(255, 255, 255, 0.5);
}

.account-form .input-field:hover{
    border-color: var(--main-color);
}

.account-form .input-field label{
    color: var(--white);
    background-color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 6rem;
    font-size: 1.8rem;
    cursor: pointer;
}
  
.account-form .box{
    width: 100%;
    background-color: transparent;
    font-size: 1.6rem;
    color: var(--white);
    padding: 1rem 0;
    text-transform: none;
}

.account-form .box::placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.account-form p{
    padding-top: 2rem;
    color: var(--white);
    text-align: center;
    padding-bottom: 1rem;
}

.account-form .btn{
    width: 100%;
    overflow: hidden;
    margin: 1rem 0;
}

.account-form .link{
    font-size: 1.5rem;
    color: var(--main-color);
}

.account-form .link:hover{
    text-decoration: underline;
}

/*----- 09- Radio Button -----*/
.payment input:checked + label, 
.payment label:hover{ 
    color: var(--main-color);
}
  
.payment input[type="radio"] {
    position: absolute;
    opacity: 0;
}
  
.payment input[type="radio"] + 
.radio-label:before {
    content: '';
    background: #f4f4f4;
    border-radius: 100%;
    border: 0.1rem solid var(--grey);
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    position: relative;
    top: 0;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    -webkit-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
}
  
.payment input[type="radio"]:checked + 
.radio-label:before {
    background-color: var(--main-color);
    -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
            box-shadow: inset 0 0 0 4px #f4f4f4;
    outline: none;
    border-color: var(--main-color);
}

/*--------------- PAGES ---------------*/
.shop .shop-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem;
        flex: 1 1 75rem;
}

/*----- 1- Shop Grid -----*/
.shop .product-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}

.shop .product-container.grid{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1rem;
}

/*----- 2- Shop Standard -----*/
.shop .product-container.list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
}

.shop .product-container.list .product-item{
    width: 100%;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.shop .product-container.list .product-item .image{
    min-height: 25rem; 
    min-width: 25rem;
}

.shop .product-container.list .product-item .image img{
    height: 100%;
    width: 25rem;
    object-fit: cover;
}

.shop .product-container.list .product-item .content{
    text-align: left;
    padding: 2rem 1.5rem;
}

.shop .product-container.list .product-item .content > p{
    padding-top: 0.5rem;
    padding-bottom: 1rem;
}

.shop .product-container.list .product-item .rating {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

/*----- 3- Product Single -----*/

/*-- Product Descriptions --*/
.product-single .product-des{
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 3.5rem;
}

.product-single .product-des .box-container{
    display: -webkit-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center; 
    -ms-flex-pack: center;
    justify-content: center; 
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    -ms-flex-wrap: wrap; 
        flex-wrap: wrap;
    gap: 3rem;
}

.product-single .product-des .box-container .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
        flex: 1 1 35rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-single .product-des .box-container .image-container{
    max-width: 50rem;
}

.product-single .product-des .box-container .image-container .main{
    width: 100%;
    height: 40rem;
    border-radius: var(--border-radius-1);
    overflow: hidden;
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.product-single .product-des .box-container .image .change-btns{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(8rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
    gap: 1rem;
    margin-top: 1rem;

}

.product-single .product-des .box-container .image .change-btns img{
    border-radius: var(--border-radius-2);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    cursor: pointer;    
}

.product-single .product-des .image .change-btns img:hover,
.product-single .product-des .image .change-btns img.active{
    border: 0.4rem solid var(--main-color);
}

.product-single .product-des .box-container .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 45rem;
        flex: 1 1 45rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 2rem;
}

.product-single .product-des .box-container .content .product-intro{
    border-bottom: 0.2rem solid rgba(0, 0, 0, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 1rem;
}

.product-single .product-des .box-container .content .introduction{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 1rem;
}

.product-single .product-des .box-container .content h3{
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    /* font-family: var(--font-heading); */
}

.product-single .product-des .box-container .content .intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-single .product-des .box-container .content .intro .rating{
    color: var(--main-color);
    font-size: 2rem;
}

.product-single .product-des .box-container .content .intro span{
    font-size: 2rem;
    padding-left: 1rem;
}

.product-single .product-des .box-container .content .price{
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-color);
}

.product-single .product-des .box-container .content .price span{
    color: var(--grey);
    font-weight: lighter;
    text-decoration: line-through;
}

.product-single .product-des .box-container .content p{
    padding-bottom: 1.5rem;
}

.product-single .product-des .box-container .box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
    border-top: 0.2rem solid rgba(0, 0, 0, 0.1);
}

.product-single .product-des .box-container .qty{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.product-single .product-des .box-container .qty .text{
    width: 10rem;
}

.product-single .product-des .box-container .content .btn{
    margin: 2rem 0;
}

.product-single .wishlist-btn{
    cursor: pointer;
}

.product-single .wishlist-btn i {
    height: 5rem;
    width: 5rem;
    font-size: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white);
    background: var(--secondary-color);
    border-radius: var(--border-radius-1);
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
            transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-single .wishlist-btn i:hover {
    background: var(--main-color);
}

.product-single .availablity,
.product-single .categories,
.product-single .tags,
.product-single .sku{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0.5rem 0;
}

.product-single .availablity h4,
.product-single .categories h4,
.product-single .tags h4,
.product-single .sku h4{
    font-size: 1.8rem;
    color: var(--secondary-color);
    /* font-family: var(--font-heading); */
    font-weight: 600;
}

.product-single .availablity span,
.product-single .categories a,
.product-single .tags a,
.product-single .sku span{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--main-color);
    padding: 0 0.5rem;
}

.product-single .categories a:hover,
.product-single .tags a:hover{
    color: var(--secondary-color);
}

.product-single .availablity .in-stock{
    color: green;
}

.product-single .availablity .out-stock{
    color: red;
}


/*-- Product Addtional Information --*/
.product-info{
    margin-top: 4rem;
}

.product-info-gallery{
    display: none;
}

.product-info-gallery.active{
    display: block;
    margin-top: 2rem;
}

.product-info .additional-info .item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    padding-bottom: 1rem;
}

.product-info .additional-info h3{
    width: 25rem;
    font-size: 1.8rem;
    color: var(--black);
}

.product-info .additional-info h3 i{
    font-size: 1.5rem;
    color: var(--main-color);
    padding-right: 0.7rem;
}

.product-info .additional-info span{
    font-size: 1.6rem;
    color: var(--grey);
}

.product-info .reviews h2{
    font-size: 3rem; 
    color: var(--black); 
    padding-bottom: 1rem;
}

.product-info .reviews{
    margin-bottom: 2rem;
} 

/*-- 3- Leave A Reply --*/
.product-info .leave-reply{
    width: 60rem;
} 

/*-- Related Products --*/
.related-items .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(20rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

/*----- 4- Wishlist  ------*/
.wishlist-container{
    overflow-x: auto;
    overflow-y: hidden;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.wishlist-container::-webkit-scrollbar{
    height: 0.8rem;
}

.wishlist .container{
    min-width: 90rem;
}

.wishlist .box-container{
    padding: 0rem 1rem;
}

.wishlist-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 0rem;
    gap: 3rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.wishlist-item:last-child{
    border: none;
}

.wishlist-item .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20rem;
        flex: 1 1 20rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
}

.wishlist-item .product{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem; 
        flex: 1 1 30rem;  
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
}

.wishlist-item img{
    height: 8rem;
    width: 8rem;
    background-color:#f7f7f7;
    border-radius: var(--border-radius-1);
}

.wishlist-item .name{
    color: var(--secondary-color);
    /* font-family: var(--font-heading); */
    font-weight: 600;
}

.wishlist-item .name:hover{
    color: var(--main-color);
}

.wishlist-item .price{
    color: var(--grey);
    font-weight: 500;
}

.wishlist-item .status.in{
    color: green;
}

.wishlist-item .status.out{
    color: red;
}

.wishlist-item .action{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.wishlist-item a{
    font-size: 2rem;
    cursor: pointer;
}

.wishlist-item a:hover{
    color: var(--main-color);
}

.wishlist-item .delete{
    color: red;
}

.wishlist-item .cart{
    color: var(--secondary-color);
}

/*----- 5- Carts  ------*/
.cart .shop-btn{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-bottom: 2rem;
}

.shopping-cart{
    margin-bottom: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.cart .container{
    min-width: 90rem;
}

.shopping-cart::-webkit-scrollbar{
    height: 0.8rem;
}

.cart .box-container{
    padding: 0rem 1rem;
}

.cart-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 0rem;
    gap: 3rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.cart-item:last-child{
    border: none;
}

.cart-item .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem;
        flex: 1 1 15rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
}

.cart-item .product{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem; 
        flex: 1 1 25rem;  
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
}

.cart-item img{
    height: 8rem;
    width: 8rem;
    background-color:#f7f7f7;
    border-radius: var(--border-radius-1);
}

.cart-item .name{
    color: var(--secondary-color);
    /* font-family: var(--font-heading); */
    font-weight: 600;
}

.cart-item .name:hover{
    color: var(--main-color);
}

.cart-item .price,
.cart-item .total{
    color: var(--grey);
}

.cart-item .icon{
    font-size: 2rem;
    cursor: pointer;
    color: red;
}

.cart-item .icon:hover{
    color: var(--main-color);
}

.cart .cart-bottom{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5rem;
}

.cart .coupon-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50rem;
        flex: 1 1 50rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.cart .coupon-container .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    background-color: transparent;
    font-size: 1.6rem;
    color: var(--grey);
    padding: 1.2rem 1.5rem; 
    border: 0.15rem solid rgba(0, 0, 0, 0.1);
    text-transform: none;
}

.cart .coupon-container .box::-webkit-input-placeholder{
    text-transform: capitalize;
}

.cart .coupon-container .box::-moz-placeholder{
    text-transform: capitalize;
}

.cart .coupon-container .box:-ms-input-placeholder{
    text-transform: capitalize;
}

.cart .coupon-container .box::placeholder{
    text-transform: capitalize;
}

.cart .coupon-container .box:focus{
    border-color: var(--main-color);
}

.cart .coupon-container .btn{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem;
        flex: 1 1 15rem;
    margin-top: 0;
}

/*-- 2- Cart Total --*/
.cart .cart-summary{
    width: 40rem;
    padding: 1.5rem;
    margin-left: auto;
    border-top: 0.3rem solid var(--main-color);
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.cart .cart-summary .btn{
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/*----- 6- Checkout -----*/
/*
1- Payment Method
2- Cart Total
*/

.checkout{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap; 
        flex-wrap: wrap;
    gap: 1.5rem;
}

.checkout h2{
    font-size: 3.5rem;
}

.checkout .box-1{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 55rem;
        flex: 1 1 55rem;  
}

.checkout .box-2{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
        flex: 1 1 35rem;
}

.checkout-item{
    margin-bottom: 1.5rem;
    padding: 2rem;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.checkout .box-1 .checkout-item:last-child{
    margin-bottom: 0;   
}

.checkout .checkbox-label {
    color: var(--secondary-color) !important;
    margin-bottom: 2rem;
    cursor: pointer;
    line-height: 1.2;
}

.checkout .checkbox-indicator{
    outline: 0.15rem solid var(--grey) !important;
}

.checkout .checkbox-label input:checked ~ 
.checkout .checkbox-indicator {
    outline-color: var(--main-color) !important;
}

/*-- Payment Method --*/
.payment-methods .payment{
    margin-bottom: 1.5rem;
}

.payment-methods .payment label{
    cursor: pointer;
    font-size: 2rem;
    font-weight: 500;
    color: var(--secondary-color);
    /* font-family: var(--font-heading); */
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

.payment-body{ 
    display: none;
}

.payment-body.active{
    display: block;
}

.payment-methods .payment .payment-body p{
    font-size: 1.4rem;
    padding-top: 1rem;
}

.checkout .btn-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.checkout .btn{
    width: 100%;
    text-align: center;
}


/*----- 7- Order Confirmation -----*/
/*
1- Order Summary
2- Address Details
3- Order Items
*/

.order-details .order-details-item{
    width: 100%;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 1rem;
}

.order-details .order-message{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    background-color: var(--secondary-color);
}

.order-details .order-message i{
    height: 3rem;
    width: 3rem;
    font-size: 2.8rem;
    color: var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.order-details .order-message span{
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
}

.order-details .order-intro-container{
    display: -webkit-box; 
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center; 
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; 
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.order-details .address-details{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50rem;
        flex: 1 1 50rem;
}

/*-- 1- Address Details --*/

/*-- 2-Order Items --*/
.order-container{
    overflow-x: auto;
    overflow-y: hidden; 
}

.order-container::-webkit-scrollbar{
    height: 0.8rem;
}    

.order-items .container{
    min-width: 90rem;
}

.order-items .box-container{
    padding: 0rem 1rem;
}

.order-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 0rem;
    gap: 3rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.order-item:last-child{
    border: none;
}

.order-item .box{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15rem;
        flex: 1 1 15rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
}

.order-item .product{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem; 
        flex: 1 1 25rem;  
    display: -webkit-box;
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
}

.order-item img{
    height: 8rem;
    width: 8rem;
    background-color:#f7f7f7;
    border-radius: var(--border-radius-1);
}

.order-item span{
    color: var(--secondary-color);
    /* font-family: var(--font-heading); */
    font-weight: 600;
}

.order-item .price,
.order-item .total{
    color: var(--grey);
}

/*-- 3- Order Summary --*/
.order-details .cart-total{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
}

.order-details .order-intro{
    border-bottom: 0.2rem solid var(--grey);
    margin-bottom: 2rem;
}

.order-details .order-intro .order-id{
    font-size: 2rem;
    font-weight: bold;
    color: var(--main-color);
    padding-bottom: 1rem;
}

.order-details .order-intro .delivery{
    color: var(--grey);
    font-size: 1.8rem;
    padding-bottom: 1rem;
}

.order-details .cart-total{ 
    width: 45rem;
    padding: 1.5rem;
    margin-left: auto;
}

/*----- 8- Login -----*/
.login form .info{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 1.5rem 0;
}

.login form .checkbox-label{
    color: var(--white);
}

/*----- 9- Register -----*/
.register form .checkbox-label{
    color: var(--white);
    margin: 1.5rem 0;
}
  
.register form .checkbox-label label span{
    color: var(--main-color);
}



/*------------------------------ (06)-Shop (End) ------------------------------*/



/*------------------------------ (07)-Blog (Start) ------------------------------*/

/*--------------- COMPONENTS ---------------*/

/*----- 01- Blog-Item -----*/
.blog-item{
    position: relative;
    background-color: var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
}

.blog-item .image{
    height: 25rem;
    position: relative;
}

.blog-item .content{
    padding: 2rem;
}

.blog-item .date{
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    height: 9rem;
    width: 11rem;
    font-size: 1.9rem;
    font-weight: 600;
    padding: 3rem;
    line-height: 1.2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    background-color: var(--main-color);
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.blog-item .category{
    display: inline-block;
    font-size: 1.6rem;
    color: var(--white);
    background-color: var(--main-color);
    padding: 0.9rem 1.4rem;
}

.blog-item .content .main-heading{
    display: block;
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 1.3;
    padding: 1rem 0;
    /* font-family: var(--font-heading); */
}

.blog-item .content .main-heading:hover{
    color: var(--main-color);
}

.blog-item h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    border-top: 0.15rem solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
}

.blog-item h3 i{
    font-size: 2.2rem;
    color: var(--main-color);
}

.blog-item h3 span{
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--grey);
}

/*----- 02- Comment -----*/
.comment-item{
    padding-bottom: 2rem;
}

.comment{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 1.5rem;
}

.comment .image{
    height: 10rem;
    width: 10rem;
    border-radius: var(--border-radius-3);
    border: 0.5rem solid var(--white);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    overflow: hidden;
}

.comment .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 35rem;
        flex: 1 1 35rem;
}

.comment .content .details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
}

.comment .content .intro{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.7rem;
}

.comment .intro h3{
    font-size: 1.8rem;
    font-weight: 500;
    /* font-family: var(--font-heading); */
    color: var(--secondary-color);
    line-height: 1.4;
}

.comment .intro h4{
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    background-color: var(--main-color);
    padding: 0.5rem 0.8rem;
}

.comment .icon-item{
    display: inline-block;
    color: var(--grey);
    cursor: pointer;
}

.comment .icon-item:hover span{
    color: var(--main-color);
}

.comment .icon-item i{
    color: var(--main-color);
    font-size: 1.5rem;
    padding-right: 0.5rem
}

.comment .icon-item span{
    color: var(--grey);
    font-size: 1.6rem;
}

.comment .text{
    font-size: 1.5rem;
    color: var(--grey);
    line-height: 1.5;
    padding-bottom: 1rem;
}

.comment.reply{
    margin-left: 12rem;
}

.comment.reply .content{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 25rem;
        flex: 1 1 25rem;
}

/*----- 03- Pages-No -----*/
.pages-no{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 2rem 0;
}

.pages-no .container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.pages-no .item{
    color: var(--white);
    background-color: var(--secondary-color);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    height: 5rem;
    width: 5rem;
    margin: 0rem 0.5rem;
    font-size: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.pages-no .item.active,
.pages-no .item:hover{
    cursor: pointer;
    background-color: var(--main-color);
}

.pages-no .numbers{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/*--------------- PAGES ---------------*/
.blog-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 75rem;
        flex: 1 1 75rem;
}

/*----- 1- Blog Grid -----*/
.blog.grid{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
}

.blog-container.grid .blog-items{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(33rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(33rem, 1fr));
    gap: 1rem;
}

/*----- 2- Blog List -----*/
.blog.list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
}

.blog-container.list .blog-item{
    width: 100%;
    margin-bottom: 1rem;
}

/*----- 3- Blog Single -----*/
.blog-single{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.blog-info .date{
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    height: 9rem;
    width: 9rem;
    font-size: 1.9rem;
    padding: 3rem;
    line-height: 1.2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    background-color: var(--main-color);
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
  
.blog-info .content{
    padding-top: 2rem;
}
  
.blog-info .details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.blog-info .details .category{
    display: inline-block;
    font-size: 1.6rem;
    color: var(--white);
    background-color: var(--main-color);
    padding: 0.7rem 1.2rem;
}

.blog-info .details h3{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.7rem;
}

.blog-info .details h3 i{
    font-size: 2.5rem;
    color: var(--main-color);
}

.blog-info .details h3 span{
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--grey);
}
  
.blog-info .important{
    padding: 3rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white) !important;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    background-color: var(--secondary-color);
    border-left: 0.5rem solid var(--main-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
}

.blog-info .important i{
    font-size: 4rem;
    color: var(--white);
}

.blog-info .end-details{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
}
  
.blog-info .tags, 
.blog-info .share{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.7rem;
}
  
.blog-info .share h3{
    color: var(--black);
    font-size: 1.6rem;
    padding-right: 1rem;
}
  
.blog-info .tags span{
    color: var(--grey);
    font-size: 1.4rem;
    padding: 0.7rem 1.2rem;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.blog-info .tags span:hover{
    color: var(--white);
    background-color: var(--main-color);
}
  
.blog-info .share i{
    height: 2rem;
    width: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center; 
    -ms-flex-align: center;
    align-items: center;
    color: var(--grey);
    font-size: 1.6rem;
}
  
.blog-info .share i:hover{
    color: var(--main-color);
    cursor: pointer;
}
   
/*-- 2- Comments --*/
.blog-single .comments{
    margin: 3rem 0;
} 

.blog-single .comments > h4,
.blog-single .leave-reply h3{  
    font-size: 2.8rem; 
    font-weight: 500;
    color: var(--secondary-color); 
    /* font-family: var(--font-heading); */
    padding-bottom: 2rem;
} 



/*-- 3- Leave A Reply --*/
.leave-reply{
    width: 100%;
} 

.leave-reply .form h3{
    font-size: 2.8rem; 
    color: var(--secondary-color); 
    /* font-family: var(--font-heading); */
    padding-bottom: 2rem;
}

/*------------------------------ (07)-Blog (End) ------------------------------*/



/*------------------------------ (08)-Contact (Start) ------------------------------*/
/* Contact Features */
/* Contact Form */
/* Contact Information */
/* Contact Faqs */

/*-- Contact Features --*/
.contact-features .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-features .content{  
    -webkit-box-flex: 1;
    -ms-flex: 1 1 55rem;
        flex: 1 1 55rem;
}

.contact-features .content h2 {
    font-size: 5rem;
}

.contact-features .content h2:nth-child(1){
    color: var(--black);
}

.contact-features .content h2:nth-child(2){
    color: var(--main-color);
}

.contact-features .content p{
    font-size: 1.8rem;
    padding: 1rem 0;
}

.contact-features .feature-points{
    padding-top: 1rem;
    padding-top: 3rem;
    padding-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-features .feature-points li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start; */
    gap: 1rem;
    flex: 1 1 18rem;
}

.contact-features .feature-points li i{
    /* flex: 1 1 10rem; */
    height: 5rem;
    width: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 2.5rem;
    color: transparent;
    -webkit-text-stroke: 0.15rem var(--white);
    background-color: var(--main-color);
    border-radius: 5rem;
}

.contact-features .feature-points li .text {
    flex: 1 1 12rem;
}

.contact-features .feature-points li h3{
    /* -webkit-box-flex: 1;
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem; */
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1 ;
    /* padding-bottom: 0.5rem; */
}

.contact-features .feature-points li p {
    font-size: 1.3rem;
}

.contact-features .image{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30rem;
        flex: 1 1 30rem;
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -ms-grid-row-align: flex-end;
    align-items: flex-end;
    margin-bottom: 5rem;
    position: relative; */
    /* height: 45rem; */
}

/*-- Contact Form --*/
    /* main card container */
    .form-container {
      background-color: var(--white);
      border-radius: var(--border-radius-2);
      box-shadow: var(--box-shadow);
      overflow: hidden;
      transition: all 0.2s ease;
      padding: 3rem;
    }

    /* header section with subtle green energy accent */
    .form-header {
      padding-bottom: 4rem;
      color: black;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .form-header i {
      font-size: 4rem;
      color: transparent;
      -webkit-text-stroke: 0.15rem var(--main-color);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }

    .form-header h1 {
      font-size: 2rem;
      font-weight: 700;
      letter-spacing: -0.3px;
      margin-bottom: 0.5rem;
    }

    .form-header p {
      font-size: 1.4rem;
    }

    .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .form-group {
      flex: 1;
      min-width: 20rem;
      display: flex;
      flex-direction: column;
      gap: 6px;
      /* margin-top: 2rem; */
    }

    label {
      font-weight: 600;
      font-size: 1.5rem;
      letter-spacing: 0.5px;
      color: var(--black);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
    }

    .required-star {
      color: #e05a5a;
      font-size: 1.1rem;
      line-height: 1;
    }

    .contact input, select, textarea {
      padding: 1.4rem 1.6rem;
      border: 1.5px solid #e2e8f0;
      border-radius: var(--border-radius-1);
      font-size: 1.3rem;
      transition: all 0.2s;
      background: #fefefe;
      outline: none;
      color: #1e2f3e;
      text-transform: none;
    }

    .contact input:focus, select:focus, textarea:focus {
      border-color: red;
      box-shadow: 0 0 0 3px rgba(59, 158, 122, 0.2);
    }



.select-field{
position: relative;
}

.select-box{
    -webkit-appearance: none;
        -moz-appearance: none;
            appearance: none;
    width: 100%;
}

.select-field .icon-container{
    width: 4rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            pointer-events: none;
}

.select-container .icon-container i{
    font-size: 1.6rem;
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
}

textarea {
    resize: vertical;
    min-height: 110px;
}

.char-counter {
    font-size: 1.2rem;
    text-align: right;
    color: var(--grey);
    margin-top: 0.5rem;
}

/* dynamic conditional fields container */
.conditional-fields {
    flex: 1 1 35rem;

}

#conditionalContent {
    transition: all 0.25s ease;
}

.additional-info{
    flex: 1 1 50rem;
}

.additional-info.form-group{
    margin-top: 0 !important;
}

.default-msg{
    padding: 2rem 5rem;
    border: 1.5px dashed #e2e8f0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    height: 15rem;
    border-radius: var(--border-radius-1);
}

.default-msg i{
    font-size: 5rem;
    color: transparent;
    -webkit-text-stroke: 0.15rem red;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.default-msg p{
    font-size: 1.4rem;
}


.conditional-title {
    font-weight: 600;
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: red;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.conditional-title span{
    width: 20rem;
    height: 0.1rem;
    background-color: red;
}

.info-hint {
    background: #eef3ef;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
    color: #235b48;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid #cde3da;
}

.info-hint span:first-child {
    font-size: 1.5rem;
}

.additional-container{
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.form-body .btn {
    display: block;
    margin: 0 auto;
    width: 30rem;
    transition: all 0.2s;
}

button:hover {
    background: black;
    transform: scale(0.98);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

.privacy-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--grey);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* toast / alert style */
.toast-msg {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--main-color);
    color: #eef5ea;
    padding: 1.2rem 2.5rem;
    border-radius: 5rem;
    font-size: 1.2rem;
    font-weight: 500;
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    transition: opacity 0.2s;
    pointer-events: none;
}

.error-border {
    border-color: var(--main-color) !important;
    background-color: #fff7f7;
}

small.error-text {
    color: var(--main-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact .alert{
    display: inline-block;
    font-size: 1.8rem;
    color: var(--main-color);
    margin-left: 1rem;
}

/*-- Contact Information --*/
.contact-info{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    margin: 2rem 0;
    padding: 3rem;
    padding-right: 1rem;
    padding-bottom: 0rem;
    border-radius: var(--border-radius-2);
}

.contact-info .info-heading {
    flex: 1 1 15rem;
}

.contact-info .info-heading h2 {
    font-size: 2.2rem;
    line-height: 1.4;
    padding-bottom: 1rem;
    color: var(--black);
}

.contact .contact-info .info-content {
    flex: 1 1 70rem;
    display: flex;
    flex-wrap: wrap;
}

.contact .contact-info .info-item{
    flex: 1 1 22rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    padding: 0rem 1rem;
    margin-bottom: 2rem;
    border-right: 0.1rem solid rgba(0, 0, 0, 0.1);
}

.contact .contact-info .info-item:last-child{
    border: none;
}

.contact .contact-info .info-item .icon {
    height: 5rem;
    width: 5rem;
    font-size: 4.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: transparent;
    -webkit-text-stroke: 0.25rem var(--main-color);
}

.contact .contact-info .info-item .content {
    flex: 1 1 12rem;
}

.contact .contact-info .info-item .content>div {
    display: flex;
    /* align-items: center; */
    gap: 0.5rem;
    padding-bottom: 0.5rem;
}

.contact .contact-info .info-item h3{
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
    padding-bottom: 1rem;
}

.contact .contact-info .info-item i {
    font-size: 1.4rem;
    padding-top: 0.5rem;
    color: transparent;
    -webkit-text-stroke: 0.15rem var(--main-color);
}

.contact .contact-info .info-item p{
    font-size: 1.4rem;
    padding-bottom: 0.5rem;
    color: var(--grey);
}

.contact .contact-info .info-item p.gmail{
    text-transform: none;
}

/* Contact Faqs */
.faqs-heading {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 2.8rem;
    padding-bottom: 2rem;
    color: var(--black);
    border-bottom: 0.25rem solid #e0dddd;
}

.faqs-heading::before {
    content: "";
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    height: 0.25rem;
    width: 9rem;
    background-color: var(--main-color);
}

.faqs-heading h2 {
    font-size: 2.8rem;
}

.contact-faqs .points{
    padding-top: 1rem;
    padding-top: 3rem;
    padding-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-faqs .points li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start; */
    gap: 1.5rem;
    flex: 1 1 18rem;
}

.contact-faqs .points li .icon{
    /* flex: 1 1 10rem; */
    height: 5.5rem;
    width: 5.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 2.5rem;
    color: transparent;
    -webkit-text-stroke: 0.2rem var(--main-color);
    background-color: transparent;
    border: 0.15rem solid var(--main-color);
    border-radius: 100%;
}

.contact-faqs .points li .text {
    flex: 1 1 12rem;
}

.contact-faqs .points li h3{
    /* -webkit-box-flex: 1; 
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem; */
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--black);
    /* padding-bottom: 0.5rem; */
}

.contact-faqs .points li p {
    font-size: 1.4rem;
    padding: 1rem 0;
}

.contact-faqs a {
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
}

.contact-faqs a i {
    padding-left: 1rem;
    color: var(--main-color);
}

.contact-faqs a:hover {
    color: var(--main-color);
}

.contact-faqs a:hover i {
    padding-left: 0;
}
/*------------------------------ (08)-Contact (End) ------------------------------*/



















































.global-location p{
    width: 70rem;
    text-align: center;
    margin: 0 auto;
}

.global-location .box-container{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
    padding-top: 2rem;
}

.location-item{
    border-radius: var(--border-radius-1);
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    border-bottom: var(--custom-border);
    background-color: var(--white);
    padding: 2rem;
}

.location-item h3{
    font-size: 2.4rem;
    color: var(--secondary-color);
}

.location-item .location-details{
    list-style-type: none;
    padding-top: 2rem;
}

.location-item li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    font-size: 1.6rem;
    color: var(--grey);
}

.location-item li:last-child{
    padding-bottom: 0;
}

.location-item li i{
    font-size: 1.6rem;
    color: var(--main-color);
}

.location-item .gmail{
    text-transform: none;
}

.global-map { 
    padding-top: 5rem;
    position: relative;
    width: 100%;
    max-width: 110rem;
}

.global-map img {
    object-fit: contain;
}

.svg-icon { 
    width: 2.5rem; 
    height: 3.5rem;
}

.svg-icon path, 
.svg-icon polygon, 
.svg-icon rect { 
    fill: var(--main-color); 
    stroke: var(--main-color);
}

.map-location { 
    position: absolute; 
}

.map-location .map-location-bubble{ 
    position: absolute; 
    top: -4.5rem; 
    left: 50%; 
    -webkit-transform: translateX(-50%); 
            transform: translateX(-50%);
    width: 14rem; 
    padding: 0.5rem; 
    background: var(--white); 
    border-radius: var(--border-radius-1); 
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
    display: none;
}

.map-location:hover .map-location-bubble { 
    display: block;
}

.map-location .map-location-bubble:before { 
    content: ""; 
    position: absolute; 
    top: 100%; 
    right: auto; 
    bottom: auto; 
    left: 50%; 
    width: 0; 
    height: 0; 
    border-style: solid; 
    margin-left: -8px; 
    border-width: 8px 8px 0; 
    border-color: var(--white) transparent;
} 

.map-location .map-location-bubble:after { 
    margin-left: -6px; 
    border-width: 6px 6px 0; 
    border-color: var(--white) transparent;
}

.map-location .map-location-name { 
    font-size: 1.4rem; 
    font-weight: 600;
}

.map-location .map-location-desc { 
    font-size: 1rem; 
    font-weight: 300;
}

.pin-australia { 
    bottom: 17%; 
    right: 11%;
} 

.pin-canada { 
    top: 20%; 
    left: 22%;
} 

.pin-brazil { 
    bottom: 26%; 
    left: 34%;
} 

.pin-greenland { 
    top: 10%; 
    left: 40%;
} 

.pin-china { 
    top: 36%; 
    right: 22%;
} 

.pin-uae { 
    top: 42%; 
    right: 37%;
} 








 

  

    .track-order-section .container{
      width:min(1200px,90%);
      margin:auto;
    }

    .track-order-section{
      padding:90px 0;
      background:
      radial-gradient(circle at top left, rgba(255,123,0,0.12), transparent 30%),
      linear-gradient(135deg,#f8fafc,#eef2ff);
    }

    .section-header{
      text-align:center;
      margin-bottom:55px;
    }

    .section-icon{
      width:85px;
      height:85px;
      margin:auto auto 25px;
      border-radius:24px;
      background:linear-gradient(135deg,#ff7b00,#ff9f43);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:34px;
      box-shadow:0 20px 45px rgba(255,123,0,0.25);
    }

    .section-header h2{
      font-size:clamp(2.2rem,5vw,3.6rem);
      font-weight:800;
      color:#0f172a;
      margin-bottom:14px;
    }

    .section-header p{
      color:#64748b;
      font-size:1.05rem;
      max-width:650px;
      margin:auto;
      line-height:1.7;
    }

    .track-form-wrapper{
      background:rgba(255,255,255,0.9);
      backdrop-filter:blur(14px);
      border:1px solid rgba(255,255,255,0.5);
      border-radius:28px;
      padding:35px;
      box-shadow:0 20px 60px rgba(15,23,42,0.08);
      margin-bottom:35px;
    }

    .track-order-form label{
      display:block;
      margin-bottom:12px;
      font-size:0.95rem;
      font-weight:600;
      color:#334155;
    }

    .required-star{
      color:#ef4444;
    }

    .input-wrapper{
      position:relative;
      display:flex;
      align-items:center;
    }

    .input-icon{
      position:absolute;
      left:20px;
      color:#94a3b8;
      font-size:1rem;
    }

    #trackingNumber{
      width:100%;
      height:68px;
      border-radius:18px;
      border:1.5px solid #dbe4ee;
      background:#fff;
      padding:0 170px 0 52px;
      font-size:1rem;
      font-weight:500;
      transition:0.3s ease;
    }

    #trackingNumber:focus{
      outline:none;
      border-color:#ff7b00;
      box-shadow:0 0 0 5px rgba(255,123,0,0.12);
    }

    .track-btn{
      position:absolute;
      right:8px;
      top:8px;
      bottom:8px;
      padding:0 28px;
      border:none;
      border-radius:14px;
      background:linear-gradient(135deg,#ff7b00,#ff9838);
      color:#fff;
      font-weight:700;
      cursor:pointer;
      transition:0.3s ease;
      display:flex;
      align-items:center;
      gap:10px;
      font-size:0.95rem;
    }

    .track-btn:hover{
      transform:translateY(-2px);
      box-shadow:0 12px 25px rgba(255,123,0,0.25);
    }

    .form-hint{
      display:block;
      margin-top:12px;
      color:#94a3b8;
      font-size:0.85rem;
    }

    .tracking-loader,
    .status-card,
    .shipment-details,
    .timeline-card,
    .updates-log,
    .no-result{
      background:rgba(255,255,255,0.9);
      backdrop-filter:blur(14px);
      border:1px solid rgba(255,255,255,0.5);
      border-radius:28px;
      box-shadow:0 20px 60px rgba(15,23,42,0.08);
    }

    .tracking-loader{
      padding:60px;
      text-align:center;
    }

    .spinner{
      width:65px;
      height:65px;
      border-radius:50%;
      border:5px solid #e2e8f0;
      border-top-color:#ff7b00;
      margin:auto auto 18px;
      animation:spin 0.9s linear infinite;
    }

    @keyframes spin{
      to{
        transform:rotate(360deg);
      }
    }

    .tracking-result{
      display:grid;
      gap:28px;
      animation:fadeIn 0.4s ease;
    }

    @keyframes fadeIn{
      from{
        opacity:0;
        transform:translateY(20px);
      }
      to{
        opacity:1;
        transform:translateY(0);
      }
    }

    .status-card{
      padding:35px;
    }

    .status-header{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:20px;
      flex-wrap:wrap;
      margin-bottom:35px;
    }

    .status-header h3{
      font-size:1.7rem;
      color:#0f172a;
    }

    .status-badge{
      padding:12px 22px;
      border-radius:999px;
      font-size:0.88rem;
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:0.5px;
    }

    .status-badge.delivered{
      background:#dcfce7;
      color:#15803d;
    }

    .status-badge.in-transit{
      background:#fff3e8;
      color:#ea580c;
    }

    .progress-tracker{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:18px;
    }

    .progress-step{
      text-align:center;
      position:relative;
    }

    .step-icon{
      width:72px;
      height:72px;
      margin:0 auto 14px;
      border-radius:22px;
      background:#f8fafc;
      border:1px solid #e2e8f0;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:1.4rem;
      color:#94a3b8;
      transition:0.3s ease;
    }

    .progress-step.completed .step-icon{
      background:#dcfce7;
      border-color:#bbf7d0;
      color:#16a34a;
    }

    .progress-step.active .step-icon{
      background:linear-gradient(135deg,#ff7b00,#ff9838);
      color:#fff;
      border:none;
      box-shadow:0 10px 25px rgba(255,123,0,0.25);
    }

    .step-label{
      display:block;
      font-weight:700;
      color:#1e293b;
      margin-bottom:6px;
      font-size:0.92rem;
    }

    .step-date{
      color:#94a3b8;
      font-size:0.8rem;
    }

    .details-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
      gap:22px;
    }

    .detail-card{
      padding:25px;
      display:flex;
      align-items:center;
      gap:18px;
      transition:0.3s ease;
    }

    .detail-card:hover{
      transform:translateY(-6px);
    }

    .detail-card i{
      width:58px;
      height:58px;
      border-radius:18px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:#fff3e8;
      color:#ff7b00;
      font-size:1.3rem;
    }

    .detail-label{
      display:block;
      font-size:0.8rem;
      color:#94a3b8;
      margin-bottom:5px;
    }

    .detail-value{
      font-weight:700;
      color:#0f172a;
      font-size:1rem;
    }

    .timeline-card,
    .updates-log{
      padding:35px;
    }

    .timeline-card h4,
    .updates-log h4{
      font-size:1.2rem;
      margin-bottom:30px;
      color:#0f172a;
    }

    .route-info{
      position:relative;
      padding-left:38px;
    }

    .route-info::before{
      content:'';
      position:absolute;
      left:16px;
      top:0;
      width:2px;
      height:100%;
      background:#e2e8f0;
    }

    .route-point{
      position:relative;
      padding-bottom:35px;
    }

    .route-point:last-child{
      padding-bottom:0;
    }

    .point-icon{
      position:absolute;
      left:-38px;
      width:34px;
      height:34px;
      border-radius:50%;
      background:#ff7b00;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 10px 20px rgba(255,123,0,0.2);
    }

    .point-details strong{
      display:block;
      color:#0f172a;
      margin-bottom:5px;
    }

    .point-details p{
      color:#475569;
      margin-bottom:4px;
    }

    .point-details small{
      color:#94a3b8;
    }

    .timeline-log{
      display:grid;
      gap:18px;
    }

    .log-entry{
      display:flex;
      align-items:flex-start;
      gap:16px;
      padding:18px;
      border-radius:18px;
      background:#f8fafc;
      border:1px solid #eef2f7;
    }

    .log-icon{
      width:48px;
      height:48px;
      border-radius:16px;
      background:#fff3e8;
      color:#ff7b00;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:1rem;
      flex-shrink:0;
    }

    .log-status{
      display:block;
      font-weight:700;
      color:#0f172a;
      margin-bottom:5px;
    }

    .log-location{
      color:#475569;
      margin-bottom:6px;
      font-size:0.92rem;
    }

    .log-time{
      color:#94a3b8;
      font-size:0.82rem;
    }

    .no-result{
      padding:70px 30px;
      text-align:center;
    }

    .no-result i{
      font-size:4rem;
      color:#ff7b00;
      margin-bottom:20px;
    }

    .no-result h3{
      color:#0f172a;
      margin-bottom:10px;
      font-size:1.8rem;
    }

    .no-result p{
      color:#64748b;
    }

    .btn-secondary{
      margin-top:25px;
      border:none;
      background:#0f172a;
      color:#fff;
      padding:14px 26px;
      border-radius:14px;
      cursor:pointer;
      font-weight:600;
    }

    @media(max-width:992px){
      .progress-tracker{
        grid-template-columns:repeat(2,1fr);
      }
    }

    @media(max-width:768px){
      .track-form-wrapper,
      .status-card,
      .timeline-card,
      .updates-log{
        padding:25px;
      }

      .input-wrapper{
        flex-direction:column;
      }

      #trackingNumber{
        padding:0 20px;
      }

      .input-icon{
        display:none;
      }

      .track-btn{
        position:relative;
        inset:auto;
        width:100%;
        height:56px;
        margin-top:12px;
        justify-content:center;
      }

      .progress-tracker{
        grid-template-columns:1fr;
      }

      .progress-step{
        display:flex;
        align-items:center;
        gap:18px;
        text-align:left;
      }

      .step-icon{
        margin:0;
        width:62px;
        height:62px;
        border-radius:18px;
      }
    }
















































/* Hero Section */
.location-hero {
    background: linear-gradient(135deg, #010204 0%, #020304 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-1);
}

.location-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom; */
  background-size: cover;
  opacity: 0.3;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 0.8rem;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

/* Search Section */
.location-search-section {
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    padding: 0 2rem;
}

.search-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-input-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.search-input-group i {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
    font-size: 1.8rem;
}

#locationSearch {
    flex: 1;
    padding: 1.5rem 2rem 1.5rem 5rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-2);
    font-size: 1.6rem;
    transition: all 0.3s;
}

#locationSearch:focus {
    outline: none;
    border-color: var(--main-color);
}

.search-btn {
    padding: 1.5rem 3rem;
    background: var(--main-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-2);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.search-btn:hover {
    background: var(--main-color);
    transform: translateY(-2px);
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 1rem 2rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 2.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.4rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--main-color);
    color: var(--white);
    border-color: var(--main-color);
}

.container-fluid {
    max-width: 100%;
    padding: 0;
}

/* Locations Grid */
.locations-grid-section {
  padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.6rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.8rem;
    color: var(--grey);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(42rem, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.location-card {
    background: var(--white);
    border-radius: var(--border-radius-2);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, var(--main-color), #fe3434);
    padding: 20px;
    color: white;
    position: relative;
}

.card-header h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.card-header p {
  font-size: 14px;
  opacity: 0.9;
}

.location-type {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.card-body {
  padding: 20px;
}

.location-address,
.location-contact,
.location-hours {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #2c3e50;
}

.location-address i,
.location-contact i,
.location-hours i {
  color: #e07c3c;
  width: 20px;
  margin-top: 3px;
}

.card-footer {
  padding: 15px 20px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-details {
  color: #e07c3c;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.direction-link {
  color: #3498db;
  text-decoration: none;
  font-size: 14px;
}

/* Region Section */
.region-section {
  background: white;
  padding: 60px 0;
}

.region-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.region-tab {
  padding: 12px 25px;
  background: #f8f9fa;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}

.region-tab:hover,
.region-tab.active {
  background: #e07c3c;
  color: white;
}

.region-content {
  padding: 20px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.region-item {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s;
}

.region-item:hover {
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.region-item h4 {
  color: #e07c3c;
  margin-bottom: 10px;
}

.region-item p {
  margin-bottom: 5px;
  font-size: 14px;
  color: #7f8c8d;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  width: 90%;
  max-width: 600px;
  border-radius: 15px;
  position: relative;
  animation: slideDown 0.3s;
  max-height: 80vh;
  overflow-y: auto;
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #7f8c8d;
  z-index: 10;
}

.close-modal:hover {
  color: #e07c3c;
}

.modal-header {
  background: linear-gradient(135deg, #e07c3c, #f39c12);
  color: white;
  padding: 30px;
  border-radius: 15px 15px 0 0;
}

.modal-body {
  padding: 30px;
}

.modal-info {
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
}

.modal-info i {
  color: #e07c3c;
  font-size: 20px;
  width: 30px;
}

.modal-info .info-content {
  flex: 1;
}

.modal-info .info-content strong {
  display: block;
  margin-bottom: 5px;
  color: #2c3e50;
}

.modal-info .info-content p {
  color: #7f8c8d;
  line-height: 1.5;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.page-btn {
  padding: 10px 15px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.page-btn:hover,
.page-btn.active {
  background: #e07c3c;
  color: white;
  border-color: #e07c3c;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .search-input-group {
    flex-direction: column;
  }
  
  .search-input-group i {
    top: 45px;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }
}

@media (max-width: 480px) {
  .filter-buttons {
    justify-content: center;
  }
  
  .region-tabs {
    gap: 10px;
  }
  
  .region-tab {
    padding: 8px 15px;
    font-size: 12px;
  }
}


















































.process .box-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4rem;
    position: relative;
    padding-top: 2rem;
}

.process .box-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 11%;
    right: 11%;
    border-top: 0.2rem dotted rgba(0,0,0,0.15);
    height: 0.15rem;
}

.process .process-point{
    position: absolute;
    top: -0.75rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--main-color);
    border-radius: var(--border-radius-3);
}

.process .box-container .point-1 {
    left: 11%;
}

.process .box-container .point-2 {
    left: 36.5%;
}

.process .box-container .point-3 {
    right: 36.5%;
}

.process .box-container .point-4 {
    right: 11%;
}

@media(max-width:991px){
    .process .box-container .point-1,
    .process .box-container .point-2,
    .process .box-container .point-3,
    .process .box-container .point-4,
    .process .box-container:before  {
        display: none;
    }

    .process .box-container{
        padding-top: 0;
    }
}

.process-item {
    flex: 1 1 23rem;
    text-align: center;
}

.process-item:nth-child(2) {
    margin-top: 10rem;
}

.process-item:nth-child(3) {
    margin-top: 6rem;
}

.process-item .icon {
    position: relative;
    margin: 0 auto;
    width: 15rem;
    height: 15rem;
    border: 0.15rem solid rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius-3);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.process-item .icon:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    scale: 1;
    background-color: var(--main-color);
    border-radius: var(--border-radius-3);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 0;
}

.process-item:hover .icon:before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.process .icon i {
    z-index: 1;
    font-size: 5rem;
    color: transparent;
    -webkit-text-stroke: 0.2rem var(--main-color);
}

.process-item:hover .icon i {
    -webkit-text-stroke: 0.2rem var(--white);
}

.process-item .icon h6 {
    z-index: 2;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-3);
    transform: translate(-50%, 50%);
    font-size: 1.8rem;
    font-weight: bold;
    background-color: var(--main-color);
    color: var(--white);
    transition: transform 0.3s ease;
}

.process-item:hover .icon h6 {
    background-color: var(--white);
    color: var(--black);
    border: 0.1rem solid rgba(0,0,0,0.1);
    box-shadow: var(--box-shadow);
}


.process-item h3 {
    font-size: 2.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    /* font-family: var(--font-heading); */
    line-height: 1.4;
}






.shipment-tracking p{
    color: var(--white);
}

.trackingForm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-content: space-between;
    /* gap: 1rem; */
    margin-top: 2rem;
    border: 0.15rem solid var(--white);
    /* padding: 1.5rem; */
    border-radius: var(--border-radius-1);
    width: 100%;
    position: relative;

}

.trackingForm input:-webkit-autofill,
.trackingForm input:-webkit-autofill:hover,
.trackingForm input:-webkit-autofill:focus,
.trackingForm input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--white);
    -webkit-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;
}

.trackingForm .input-field{
    /* border: 0.15rem solid var(--white); */
    padding: 1.5rem;
    border-radius: var(--border-radius-1);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

.trackingForm .input-field:hover{
    border-color: var(--main-color);
}

.trackingForm .input-field label {
    color: var(--main-color);
    font-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.trackingForm .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--white);
    background-color: transparent;
    text-transform: none;
}

.trackingForm .box::-webkit-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.trackingForm .box::-moz-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.trackingForm .box:-ms-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.trackingForm .box::placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.trackingForm .btn-1 {
    position: absolute;
    top: -0.15rem;
    right: -0.15rem;
    bottom: -0.15rem;
    font-size: 1.6rem;
    padding: 1.5rem 2.5rem;
    /* width: 20rem; */
    padding-left: 3rem;
    background: var(--main-color);
    color: var(--white);
    border-top-right-radius: var(--border-radius-1);
    border-bottom-right-radius: var(--border-radius-1);
    border-radius: var(--border-radius-1);
    clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0 100%);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
}







/* 
.dark-form input:-webkit-autofill,
.dark-form input:-webkit-autofill:hover,
.dark-form input:-webkit-autofill:focus,
.dark-form input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--white);
    -webkit-transition: background-color 5000s ease-in-out 0s;
            transition: background-color 5000s ease-in-out 0s;
}

.dark-form .input-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dark-form .input-field{
    -webkit-box-flex: 1;
        -ms-flex: 1 1 20rem;
            flex: 1 1 20rem; 
    border: 0.15rem solid var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-1);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
}

.dark-form .input-field:hover{
    border-color: var(--main-color);
}

.dark-form .input-field label {
    color: var(--main-color);
    font-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.dark-form .box{
    width: 100%;
    font-size: 1.6rem;
    color: var(--white);
    background-color: transparent;
    text-transform: none;
}

.dark-form .box::-webkit-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form .box::-moz-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form .box:-ms-input-placeholder{
    text-transform: capitalize;
    color: var(--white);
}

.dark-form .box::placeholder{
    text-transform: capitalize;
    color: var(--white);
} */



/* {
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family: Arial, Helvetica, sans-serif;
    } */

    /* body{
      background:#f4f7fb;
      display:flex;
      justify-content:center;
      align-items:center;
      min-height:100vh;
      padding:40px 15px;
    } */

    .quote .box-container {
        display: flex;
        flex-wrap: wrap;
        box-shadow:0 10px 30px rgba(0,0,0,0.1);
        border-radius: var(--border-radius-1);
        overflow: hidden;
    }

    .quote .quote-content {
        flex: 1 1 33rem;
        background-color: var(--main-color);
        padding: 4rem 3rem;
    }

    .quote .quote-content .heading {
        align-items: flex-start;
        text-align: left;
    }

    .quote .quote-content .heading h2 {
        margin: 1rem 0;
    }

    .quote .quote-content span, 
    .quote .quote-content p{
        color: var(--white);
    }

    .quote-features {
        margin-top: 2rem;
    }

    .quote-features .item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .quote-features .item:last-child {
        margin-bottom: 0;
    }

    .quote-features .item i {
        font-size: 4rem;
        color: transparent;
        -webkit-text-stroke: 0.15rem var(--white);
        /* border:0.2rem solid var(--white); */
        border-radius: var(--border-radius-3);
        height: 8rem;
        width: 8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(255, 255, 255, 0.25);
    }

    .quote-features .item > div {
        flex: 1 1 10rem;
    }

    .quote-features .item h4 {
        font-size: 2.5rem;
        color: var(--white);
        padding-bottom: 1rem;
    }

    .quote-features .item span {
        color: var(--white);
        line-height: 1.4;
        font-size: 1.6rem;
    }

    .quote-form-wrapper{
        flex: 1 1 51rem;
      width:100%;
      max-width:900px;
      background:#fff;
      /* border-radius:var(--border-radius-1); */
      padding:  2.5rem 3.5rem;
      /* transform: translateY(-18rem); */
      /* margin: 0 auto; */
      /* margin-bottom: -18rem; */
    }

    .quote .form-heading {
        font-size: 2.2rem;
        padding-bottom: 2.5rem;
    }

    .quote .form-heading h2{
        padding-bottom: 1rem;
    }

    .quote form{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap: 1.5rem;
    }

    .quote .form-group{
      display:flex;
      flex-direction:column;
    }

    .quote .form-group.full-width{
      grid-column:1 / -1;
    }

    .quote label{
      margin-bottom:3px;
      font-weight:600;
      color:#222;
    }

    .quote input,
    .quote select,
    .quote textarea{
      width:100%;
      padding:14px 16px;
      border:1px solid #dcdcdc;
      border-radius: var(--border-radius-1);
      font-size:15px;
      transition:0.3s ease;
      outline:none;
    }

    .quote input:focus,
    .quote select:focus,
    .quote textarea:focus{
      border-color:var(--main-color);
      box-shadow:0 0 0 3px rgba(255, 0, 0, 0.12);
    }

    .quote textarea{
      resize:none;
      min-height:130px;
    }

    .quote .submit-btn{
      grid-column:1 / -1;
      border:none;
      background:var(--main-color);
      color:#fff;
      padding:16px;
      font-size:16px;
      font-weight:600;
      border-radius:10px;
      cursor:pointer;
      transition:0.3s ease;
    }

    .quote .submit-btn:hover{
      background:var(--main-color);
    }

    .quote .success-message{
      display:none;
      margin-top:20px;
      padding:15px;
      border-radius:10px;
      background:#d1e7dd;
      color:#0f5132;
      font-weight:600;
      text-align:center;
    }

    @media(max-width:768px){
      .quote form{
        /* grid-template-columns:1fr; */
      }

      .quote-form-wrapper{
        padding:2rem;
      }

      .quote .form-title h2{
        font-size: 1.5rem;
      }
    }

    @media(max-width:450px){
        .quote form{
            grid-template-columns: 1fr;
        /* grid-template-columns:1fr; */
        }
    }

    .quote .btn {
        grid-column: 1 / -1;
    }





