@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
/* font-family: Plus Jakarta Sans */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* font-family: Inter */

:root {
/* -- Fonts -- */
    --font-plus: "Plus Jakarta Sans";
    --font-In: "Inter";
 /* -- Colors -- */
    --color-white:#FFFFFF;
    --color-dark:#151313;
    --color-orange:#FF7D16;
    --color-brown:#1E1B1B;
}
html {
    scroll-behavior: auto;
}
/*=========================
start main nav
=========================*/
.bg-nav.dark {
    /* background-color: var(--color-dark); */
    font-family: var(--font-In);
    position: absolute;
    width: 100%;
    z-index: 2;
    padding-top: 10px;
}
.logo-box{
    
}
.logo-box>a>img {
    padding: 15px;
    width: 112px;
}
.main-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
.main-nav > li {
    position: relative;
    margin-right: 20px;
}
/* Main navigation styles */
.main-nav > li > a {
    background-color: transparent;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    color: var(--bs-white);
    position: relative;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-In);
    transition: color 0.3s ease;
    overflow: hidden;
}
/* Hover effect */
.main-nav li a:hover {
    color: var(--color-dark); /* Text color on hover */
}
/* .main-nav > li > a:hover {
    background-color: var(--color-orange);
    color: var(--color-dark);
    transition: height 0.3s ease, background-color 0.3s ease;
} */

/* Keyframe animation for background color scrolling */
.main-nav li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-orange);
    z-index: -1;
    transition: left 0.5s ease;
}
.main-nav li a:hover::before {
    left: 0;
}
/* Animation for scrolling background effect */
@keyframes scroll-bg {
    0% {
        left: -100%;
    }
    100% {
        left: 0;
    }
}
/* Applying the animation */
.main-nav li a:hover::before {
    animation: scroll-bg 0.5s forwards;
}
.main-nav>li>a>i{
    font-size:12px;
}
.sub-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}
.sub-menu>li {
    white-space: nowrap;
}
.sub-menu>li>a::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: auto;
    background-color: transparent;
    z-index: -1;
    transition: left 0.5s ease;
}
.sub-menu>li>a {
    padding: 10px 15px;
    display: block;
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-In);
    text-decoration: none;
}
.sub-menu>li>a:hover {
    left: 0;
    background-color: var(--color-orange);
    color: var(--color-dark);
}
.sub-menu>li>a:hover {
    animation: scroll-bg 0.5s forwards;
}
.main-nav>li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.bg-nav.dark.header-fixed-top {
    position: fixed;
    top: -50px;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 999999;
    -webkit-transition: -webkit-transform .8s;
    transition: -webkit-transform .8s;
    -o-transition: transform .8s;
    transition: transform .8s;
    transition: transform .8s, -webkit-transform .8s;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    background-color: #151313;
}
/*=========================
end main nav
=========================*/

/*=========================
start banner section
=========================*/
.hero-banner {
    background-color: #030303;
    position: relative;
    z-index: 1;
}
.hero-banner::after{
    content: '';
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    z-index: -1;
    animation: slideRightToLeft 2s forwards;
}
.banner-overlay::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    width: 100%;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgb(0 0 0) 0%, rgb(0 0 0) 35%, rgb(255 255 255 / 0%) 100%);
    border-radius: 0;
}
@keyframes slideRightToLeft {
    from {
        left: 70%; /* Start position off screen to the right */
    }
    to {
        left: 0%; /* End position, fully visible on the right */
    }
}
.banner-content {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 130px 0px;
}
.banner-content h6 {
    font-family: var(--font-plus);
    font-weight: 500;
    color: var(--color-orange);
    font-size: 40px;
    /* width: 20pc; */
    overflow: hidden;
    white-space: nowrap;
    /* border-right: 2px solid; */
    animation: caret 0.7s step-end infinite;
    
}
.banner-content h1{
    font-family: var(--font-plus);
    font-weight: 700;
    color: var(--bs-white);
    font-size: 60px;
    border-bottom: 1px solid #7A7A7A;
    padding-bottom: 20px;
    overflow: hidden;
    /* white-space: nowrap; */
    /* border-right: 2px solid; */
    animation: caret 0.7s step-end infinite;
   
}
@keyframes caret {
    50% { border-color: transparent; }
}

.banner-content p{
    font-family: var(--font-In);
    font-weight: 400;
    color: #909C9F;
    font-size: 16px;
    border-left: 2px solid #FF7D16;
    padding-left: 10px;
}
.heading-height {
    min-height: 230px;
}
.custom-btn {
	border: none;
    float: left;
	font-family: var(--font-plus);
	font-size: 16px;
	color: inherit;
	background: none;
	cursor: pointer;
	padding: 15px 22px;
	display: flex;
    align-items: center;
    gap: 10px;
	letter-spacing: 1px;
	font-weight: 600;
	outline: none;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
    text-decoration: none;
}
.btn-1e:hover,
.btn-1e:active {
	color: #000000;
}

.btn-1e:hover:after {
	height: 260%;
	opacity: 1;
}

.btn-1e:active:after {
	height: 400%;
	opacity: 1;
}
.btn-1e {
    overflow: hidden;
}
.btn-1 {
    border: 3px solid var(--color-orange);
    color: var(--color-white);
    border-radius: 10px;
}
.btn-1e:after {
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    background: var(--color-orange);
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(40deg);
}
.custom-btn:after {
    content: '';
    position: absolute;
    z-index: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.custom-btn span{
    position: relative;
    z-index: 1;
}
/*=========================
end banner section
=========================*/

/*=========================
start companies slider section
=========================*/
.bg-logo-slider{
    background-color: var(--color-brown);
    padding: 70px 0px 100px 0px;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.company-slider-title>p{
    font-family: var(--font-plus);
    font-weight: 500;
    color:#706F6F;
    font-size: 18px;
    padding-top: 20px;
    text-align: center;
}
.company-slider-title span{
    font-family: var(--font-plus);
    font-weight: 500;
    color: var(--color-orange);
    font-size: 18px;
    padding-top: 20px;
    text-align: center;
}
.logo-item{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-slide-box{
    margin-top: 36px;
    position: relative;
}
.logo-slide-box::before {
    content: '';
    width: 20%;
    height: 100%;
    display: block;
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgb(30 27 27) 0%, rgb(30 27 27 / 15%) 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.logo-slide-box::after {
    content: '';
    width: 20%;
    height: 100%;
    display: block;
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgb(30 27 27 / 0%) 0%, rgb(30 27 27) 100%);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
.logo-item>img {
    height: 70px !important;
    width: 200px !important;
    object-fit: contain;
}
/*=========================
end companies slider section
=========================*/

/*=========================
start about section
=========================*/
.about-fencesence-bg{
    padding: 50px 0px;
    background-color: var(--color-brown);
    position: relative;
}
.about-title{
    display: flex;
    align-items: center;
    gap: 20px;
}
.orange-title{
    font-family: var(--font-plus);
    font-weight: 500;
    color: var(--color-orange);
    font-size: 25px;
    padding-top: 20px;
    line-height: 31.5px;
}
.white-heading{
    font-family: var(--font-plus);
    font-weight: 700;
    color: var(--bs-white);
    font-size: 60px;
    -webkit-mask-image: linear-gradient(-75deg, rgba(10, 21, 169, .6) 50%, #ff7e00 50%, rgba(0, 0, 0, 1) 70%);
    -webkit-mask-size: 200%;
    animation: shine 4s infinite;
}
.about-fencesence-flex{
    display: flex;
    flex-direction: column;
}
.about-fencesence-flex p{
    font-family: var(--font-In);
    font-weight: 500;
    color: #909C9F;
    font-size: 16px;
    padding-top: 20px;
}
.cyber-security-padding{
    padding-top: 25px;
}
.cyber-fill {
    padding-top: 30px;
    text-align: center;
}
.cyber-stroke {
    padding-top: 55px;
    text-align: left;
}
.cyber-fill {
    padding-top: 30px;
    text-align: center;
}
.about-middle-img{
    width: 100%;
    height: 100%;
}
.about-right-img{
    width: 100%;
}
.cyber{
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}
.cyber-catagory{
    display: flex;
    gap: 10px;
    align-items: center;
}
.fa-check-circle:before, .fa-circle-check:before {
    content: "\f058";
    color: var(--color-orange);
    font-size: 20px;
}
.cyber-catagory p{
    font-family: var(--font-In);
    font-weight: 500;
    color: var(--bs-white);
    font-size: 16px;
    padding-top: 13px;
}
.five-corner-box {
    width: 100%;
    /* height: 100%;
    overflow: hidden;
    clip-path: polygon(0% 0%, 125% 0%, 79% 100%, 0% 100%, 0% 38%); */
    position: relative;
}

.five-corner-box img {
    width: 100%;
    /* max-height: 500px;
    object-fit: cover; */;
}
.five-corner-box::before {
    /* content: ''; */
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    clip-path: polygon(0% 0%, 125% 0%, 79% 100%, 0% 100%, 0% 38%);
    box-shadow: inset 0px 0px 0px 20px var(--color-orange);
    z-index: 1;
    pointer-events: none;
}
.five-corner-box::after {
    /* content: ''; */
    width: 30px;
    height: 100%;
    position: absolute;
    right: -3px;
    bottom: -37px;
    background-color: var(--color-orange);
    transform: rotate(34deg);
}
  
/*=========================
end about section
=========================*/

/*=========================
start counter section
=========================*/
.bg-counter{
    background-color: var(--color-dark);
    padding: 70px 0px 100px 0px;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.counter-box {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    text-align: center;
    gap: 20px;
}
.counter-box .counter-item > h2 {
    font-size: 55px;
    font-family: var(--font-in);
    font-weight: 600;
    -webkit-text-stroke: 1px var(--color-orange);
    color: transparent;
}
.counter-box .counter-item > h2 > .counter {

}
.counter-box .counter-item > p{
    font-size: 18px;
    font-family: var(--font-in);
    font-weight: 500;
    color: #706F6F;
    margin-bottom: 0;
}
/*=========================
end counter section
=========================*/

/*=========================
start IT Security Solution section
=========================*/
.secure-bg {
    padding: 50px 20px;
    background-color: var(--color-brown);
    position: relative;
    overflow: hidden;
}
.img-shadow {
    position: absolute;
    z-index: 0;
    max-width: 100%;
}
.security-icon-bg{
    background-color: var(--color-dark);
    border: 2px solid #453E3E;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}
.security-icon-bg:hover{
    border: 2px solid var(--color-orange);
    transition: border-color 0.3s ease;
}
.icon-size{
    width: 70px;
    height: 70px;
}
.it-icon-flex{
    display: flex;
    align-items: center;
    gap: 35px;
}
.it-icon-flex h5{
    font-family: var(--font-plus);
    font-size: 24px;
    font-weight: 700;
    color: var(--bs-white);
}
.grey-write {
    font-family: var(--font-In);
    font-weight: 400;
    font-size: 16px;
    color: #909C9F;
    margin-bottom: 30px;
    text-wrap: auto;
}
.read-more{
    font-family: var(--font-plus);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-orange);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    margin: 0 -.25rem;
    padding: 0 .25rem;
    box-shadow: inset 0 0 0 0 var(--color-orange);
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}
.read-more:hover{
    box-shadow: inset 125px 0 0 0 var(--color-orange);
    color: var(--color-dark);
}
.middle-border {
    border-top: 1px solid;
    border-image-source: linear-gradient(90deg, #C2C2C2 -0.11%, #1E1B1B 99.89%);
    border-image-slice: 1;
}
/*=========================
end IT Security Solution section
=========================*/

/*=========================
start Latest News & Articles section
=========================*/
.our-articles-bg {
    padding: 50px 20px;
    background-color: var(--color-dark);
}
.section-title-center{
    text-align: center;
    padding-bottom: 40px;
}
.orange-title{
    color: var(--color-orange);
    font-style: var(--font-plus);
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 500;
}
.main-title{
    color: var(--bs-white);
    font-style: var(--font-plus);
    font-weight: 700;
    font-size: 60px;
    -webkit-mask-image: linear-gradient(-75deg, rgba(10, 21, 169, .6) 50%, #ff7e00 50%, rgba(0, 0, 0, 1) 70%);
    -webkit-mask-size: 200%;
    animation: shine 4s infinite;
}
@-webkit-keyframes shine {
	from {
		-webkit-mask-position: 150%
	}
	to {
		-webkit-mask-position: -50%
	}
}
.main-title-white{
    color: var(--bs-white);
    font-style: var(--font-plus);
    font-weight: 700;
    font-size: 35px;
}
.article{
    position: relative;
    height: 429px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}
.article-img {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
}
.article-details {
    position: absolute;
    padding: 15px;
    bottom: 0;
    background-color: var(--color-brown);
    width: 100%;
    height: 232px;
    border-radius: 0px 0px 10px 10px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}
.article-details:hover{
    border-bottom: 2px solid var(--color-orange);
    transition: border-color 0.3s ease;
}
.date-flex {
    display: flex;
    justify-content: space-between;
}
.date-flex p {
    font-family: var(--font-plus);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-orange);
}
.article-details h5 {
    font-family: var(--font-plus);
    font-size: 24px;
    font-weight: 700;
    color: var(--bs-white);
}
.article-details h6 {
    font-family: var(--font-In);
    font-size: 16px;
    font-weight: 400;
    color: #909C9F;
    margin-top: 20px;
}
.date-tag.absolute {
    position: absolute;
    top: 155px;
    right: 12px;
}
.date-tag.orange {
    background-color: var(--color-orange);
    color: #000000;
}
.date-tag {
    width: 50px;
    height: 50px;
    display: flex;
    font-family: var(--font-plus);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
/*=========================
end Latest News & Articles section
=========================*/

/*=========================
start footer section
=========================*/
.bg-footer {
    background-color: #28231E;
    padding: 49px 26px 20px 26px;
}
.logo-icon-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-size{
    width: 100px;
}
.icon-flex{
    display: flex;
    gap: 25px;
}
.icon-flex a:hover{
    stroke: var(--color-orange);
}
.footer-border {
    border-top: 1px solid;
    border-image-source: linear-gradient(90deg, #C2C2C2 -0.11%, #1E1B1B 99.89%);
    border-image-slice: 1;
    margin-top: 70px;
    margin-left: 15px;
    margin-bottom: 8px;
}
.title-footer {
    color: #FFFFFF;
    font-size: 24px;
    text-decoration: none;
    font-family: var(--font-plus);
    text-transform: capitalize;
    font-weight: 700;
    padding-top: 20px;
}
.footer-quick-link {
    padding: 0;
    list-style: none;
    margin-top: 18px;
}
.footer-quick-link li {
    margin-top: 10px;
}
.footer-quick-link .link {
    color:#909C9F;
    font-size: 16px;
    text-decoration: none;
    font-family: var(--font-In);
    font-weight: 400;
}
.under-bg-footer {
    background-color: #28231E;
    padding: 10px 40px 10px 40px;
}
.footer-solid-border {
    border-top: 1px solid #453E3E;
}
.footer-write {
    font-family: var(--font-In);
    font-size: 16px;
    font-weight: 400;
    color:#909C9F;
    margin-top: 20px;
}
.footer-flex {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 20px;
}
.footer-link {
    font-family: var(--font-In);
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
    text-underline-position: under;
    color:#909C9F;
}
.fa-circle:before {
    content: "\f111";
    color: #FC6C32;
    padding-left: 33px;
    padding-right: 14px;443
    font-size: 12px;
}

/*=========================
end footer section
=========================*/

/*=========================
start Threat Advisory section
=========================*/
.bg-advisory{
    background-color: var(--color-dark);
    padding: 50px 0px 50px 0px;
    background-repeat: no-repeat;
    background-position: bottom center;
}
.crad-advisory {
    border-radius: 30px;
    overflow: hidden;
}
.crad-advisory .card-body{
padding: 0px;
}
.img-advisory{
    max-width: 100%;
}
.advisory-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 50px;
}
.list-advisory-ul {
    padding: 0;
    list-style: none;
    display: flex;
    gap: 50px;
    margin: 30px 0px;
}
.list-advisory-ul>li{

}
.list-advisory-ul>li>h2{
    font-size: 55px;
    font-family: var(--font-in);
    font-weight: 600;
    -webkit-text-stroke: 1px var(--color-orange);
    color: transparent;
}
.title-lg {
    font-size: 55px;
    font-weight: 700;
    font-family: var(--font-plus);
    color: var(--color-brown);
    -webkit-mask-image: linear-gradient(-75deg, rgba(10, 21, 169, .6) 50%, #ff7e00 50%, rgba(0, 0, 0, 1) 70%);
    -webkit-mask-size: 200%;
    animation: shine 4s infinite;
}
.description{
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-in); 
}
/*=========================
end Threat Advisory section
=========================*/

.section-title-left{
    text-align: left;
    padding-bottom: 40px;
}
.flex-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testimonial-box{

}
.testimonial-item {
    font-family: var(--font-plus);
    background-color: var(--color-dark);
    padding: 30px;
    border: 1px solid #453E3E;
    border-radius: 20px;
}
.testmonial-description {
    font-size: 24px;
    font-weight: 700;
    color: var(--bs-white);
}
.fb1>h6 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bs-white);
}
.fb1>h6>small{
    font-size: 14px;
    font-weight: 600;
    color: var(--color-orange);
}
.fb1>img {
    width: 100px !important;
    margin: 20px 0px;
}
.quote>img{
    width: 50px !important;
}
/* fixed social edia */
.icon-position {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    background-color: #000000;
}
.icon-style {
    list-style: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding-left: 14px;
}
.icon{
    margin-bottom: 20px;
}
.icon:hover{
    stroke: var(--color-orange);
}
.icon-style>li:last-child{
    display: flex;
    justify-content: center;
}
/* ============== Blogs =============== */

/* ----------- Get In Touch ----------- */

.hero-banner.sub-page .banner-content h1 {
    font-family: var(--font-plus);
    font-weight: 700;
    color: var(--bs-white);
    font-size: 45px;
    border-bottom: 1px solid #7A7A7A;
    padding-bottom: 20px;
    border: none;
}
.hero-banner.sub-page .banner-content>h6 {
    font-family: var(--font-plus);
    font-weight: 500;
    color: var(--color-orange);
    font-size: 30px;
}
.get-in-touch-bg{
    background-color: var(--color-orange);
    position: relative;
}
.get-in-touch-bg::after{
    content: "";
    background-image: url(../images/get-in-touch-bg.png);
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    height: 100%;
    background-repeat: no-repeat;
    opacity: 0.7;
}
.orange-bg-padding{
    margin: 50px 0px;
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}
.orange-bg-padding h4{
font-family: var(--font-plus);
font-size: 50px;
font-weight: 700;
line-height: 75px;
color: var(--color-brown);
}
.orange-bg-padding p{
font-family: var(--font-In);
font-size: 20px;
font-weight: 500;
line-height: 30px;
color: var(--color-brown);
}
.ask-expert {
    background-color: var(--color-brown);
    color: var(--bs-white);
    font-family: var(--font-In);
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    border-radius: 10px;
    border: none;
    padding: 14px 35px;
    text-decoration: none;
}
.content-set-position{
    position: relative;
    z-index: 1;
}
.btn-fixed {
    position: fixed;
    right: -62px;
    top: 50%;
    transform: rotate(90deg);
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 0px 0px 15px 15px;
    font-family: var(--font-In);
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
    text-align: center;
    z-index: 1;
}
.btn-position{
    position: absolute;
    z-index: 1;
}
.btn-fixed.orange{
color: var(--color-dark);
background-color: var(--color-orange);
}
.blog-details-link{
    font-family: var(--font-plus);
    font-size: 24px;
    font-weight: 700;
    color: var(--bs-white);
    text-decoration: none;
}
/* ================ Blog Details ================ */
.banner-content>.orange-border{
    font-family: var(--font-plus);
    font-weight: 700;
    color: var(--bs-white);
    font-size: 45px;
    border-bottom: none;
    padding-bottom: 20px;
    border-left: 2px solid #FF7D16 !important;
    padding-left: 10px;
}
.blog-details-bg{
    background-color: var(--color-dark);
    padding: 30px 30px;
}
.blog-details p{
    font-family: var(--font-In);
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #909C9F;
    margin-bottom: 28px;
}
.blog-heading{
    padding: 12px 0px 12px 10px;
}
.blog-heading .fa-circle:before {
    content: "\f111";
    color: var(--color-orange);
    padding-left: 0;
    font-size: 11px;
}
.blog-heading span{
    font-family: var(--font-In);
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    color: var(--color-orange);
    margin-right: 10px;
}
.blog-heading p{
    font-family: var(--font-In);
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #909C9F;
    margin-bottom: 20px;
}
.form-bg{
    background-color:#292626;
    border-radius: 10px;
    padding-top: 20px;
    margin-bottom: 35px;
}
.form-bg h5{
    font-family: var(--font-In);
    font-size: 24px;
    font-weight: 500;
    line-height: 29.05px;
    text-align: center;
    color: var(--bs-white);
}
.form-bg h4{
    font-family: var(--font-In);
    font-size: 35px;
    font-weight: 500;
    line-height: 42.36px;
    text-align: center;
    color: var(--bs-white);
    margin-bottom: 30px;
}
.form-group{
    width: 100%;
    padding: 20px;
}
.entryarea{
    position: relative;
    height: 80px;
    line-height: 50px;
}
input{
    position: absolute;
    width: 100%;
    outline: none;
    font-size: 16px;
    padding: 0 30px;
    line-height: 50px;
    border-radius: 8px;
    border: 1px solid #909C9F;
    background: transparent;
    transition: 0.1s ease;
    z-index: 1111;
}
textarea{
    position: absolute;
    width: 100%;
    outline: none;
    font-size: 16px;
    padding: 0 30px;
    line-height: 40px;
    border-radius: 8px;
    border: 1px solid #909C9F;
    background: transparent;
    transition: 0.1s ease;
    z-index: 1111;
}
.labelline{
    position: absolute;
    font-family: var(--font-In);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-orange);
    padding: 0 25px;
    background-color: #292626;
    transition: 0.2s ease;
}
input:focus,input:valid,
textarea:focus,textarea:valid {
    font-family: var(--font-In);
    font-size: 16px;
    color: var(--bs-white);
    font-weight: 500;
    border: 1px solid #909C9F;
}
input:focus + .labelline ,
input:valid + .labelline,
textarea:focus + .labelline,
textarea:valid + .labelline {
    color: var(--color-orange);
    height: 30px;
    line-height: 30px;
    padding: 0 12px;
    transform: translate(10px,-16px)scale(0.88);
    z-index: 1111;
}
.btn-theme {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-In);
    padding: 15px 22px;
    background-color: var(--color-orange);
    color: var(--color-dark);
    border-radius: 10px;
    border: none;
    transition: 0.3s;
    text-decoration: none;
}
.btn-theme:hover{
    background-color: var(--color-dark);
    color: var(--color-orange);
    transition: 0.3s;
}
.blog-background{
    background-color: var(--color-brown);
    padding: 20px;
    border-radius: 0px 0px 20px 20px;
    margin: 20px 0px;
}
.blog-background h5{
    font-family: var(--font-plus);
    font-size: 24px;
    font-weight: 700;
    color: var(--bs-white);
}
.blog-background .blog-some-write{
    font-family: var(--font-In);
    font-size: 16px;
    font-weight: 400;
    color: #909C9F;
    margin-top: 20px;
}
/* =============== Contact ============== */

/* ----------- Make Enquiry ----------- */
.enquiry-bg{
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
}
.map-img{
    width: 100%;
    opacity: 0.2;
    mix-blend-mode: luminosity;
    position: absolute;
    top: 0;
}
.pos-rel{
    position: relative;
    padding: 20px 20px;
    margin-bottom: 0;
}
.con-heading{
    margin-top: 20px;
}
.form-bg .white-heading{
    font-size: 45px;
    margin-top: 25px;
}
.img-location {
    width: 150px !important;
    height: 100px;
}
/* ----------- Offices Slider ----------- */
.office-bg{
    background-color: var(--color-brown);
    padding: 80px 50px 60px 50px;
}
.office-bg .orange-office{
    font-family: var(--font-plus);
    font-size: 25px;
    font-weight: 500;
    line-height: 31.5px;
    text-align: left;
    color: var(--color-orange);
    text-transform: uppercase;
}
.office-bg h4{
    font-family: var(--font-plus);
    font-size: 35px;
    font-weight: 700;
    line-height: 75px;
    text-align: left;
    color: var(--bs-white);
}
.office-details{
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
    gap: 10px;
}
.off-bg{
    background-color: var(--color-brown);
    border: 1px solid #453E3E;
    border-radius: 10px;
    padding: 30px 20px;
    overflow: hidden;
}
.num-loc-flex{
    display: flex;
    gap: 20px;
    align-items: center;
}
.num-loc-flex h1{
    font-family: var(--font-plus);
    font-size: 70px;
    font-weight: 800;
    line-height: 80px;
    text-align: center;
    color: #494949;
}
.loc-mail-flex{
    display: flex;
    flex-direction: column;
}
.white-locate{
    font-family: var(--font-plus);
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    color: var(--bs-white);
    margin-bottom: 3px;
}
.orange-mail{
    font-family: var(--font-In);
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
    color: var(--color-orange);
    margin-bottom: 7px;
}
.margin{
    margin: 15px 0px;
}
.add-img-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.add-img-flex p{
    font-family: var(--font-In);
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
    color: #909C9F;
}
/*----- owl Carousel slider ------ -*/

.office-bg .owl-nav .owl-prev, .office-bg .owl-nav .owl-next {
    position: absolute;
    top: 40%;
    z-index: 9;
    background-color: var(--color-brown)!important;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    border: 2px solid #676767 !important;
}
.office-bg .owl-nav .owl-prev>span, .office-bg .owl-nav .owl-next>span{
display: none;
}

.office-bg .owl-nav .owl-prev {
    left: 0;
    box-shadow: 8px 0px 5px 0px #00000014;
}
.office-bg .owl-nav .owl-prev::after{
    content: "\f060";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    font-size: 20px;
    color: #676767;
}
.office-bg .owl-nav .owl-next {
    right: 0;
    box-shadow: -8px 0px 5px 0px #00000014;
}
.office-bg .owl-nav .owl-next::after{
    content: "\f061";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    font-size: 20px;
    color: #676767;
}
.office-details .owl-nav .owl-prev {
    left: -65px;
}

.office-details .owl-nav .owl-next {
    right: -65px;
}
.owl-carousel .owl-nav button.owl-prev{
    border-radius: 50px;
    left: -60px;
}
.owl-carousel .owl-nav button.owl-next{
    border-radius: 50px;
    right: -60px;
}
.btn-box {
    display: flex;
    gap: 20px;
    padding: 10px 0px;
}
.btn-box a{

}
/*=========================
start services section
=========================*/
.services-hero-banner{

}
.services-logo-slide-box{
    padding-bottom: 100px;
}
.services-logo-slide-box .logo-item>img {
    height: auto !important;
    width: 120px !important;
    filter: grayscale(1);
}
.bg-method{
    background-color: var(--color-dark);
    padding: 50px 0px;
}
.method-item {
    border: 1px solid #453E3E;
    background-color: #262323;
    color: var(--bs-white);
    padding: 40px 30px;
    border-radius: 15px;
}
.method-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.slide-count {
    position: relative;
    width: 100%;
    text-align: center;
}
.slide-count>.box-count {
    font-size: 100px;
    font-weight: 800;
    font-family: var(--font-plus);
    color: #494949;
    position: absolute;
    /* line-height: normal; */
    top: -50px;
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 0;
    width: 100%;
    text-align: center;
}
.slide-count>.box-title {
    position: relative;
    font-size: 35px;
    font-weight: 700;
    font-family: var(--font-plus);
}
.method-main-box .owl-nav .owl-prev, .method-main-box .owl-nav .owl-next {
    position: absolute;
    top: 40%;
    z-index: 9;
    background-color: var(--color-brown)!important;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    border: 2px solid #676767 !important;
}
.method-main-box .owl-nav .owl-prev>span, .method-main-box .owl-nav .owl-next>span{
display: none;
}

.method-main-box .owl-nav .owl-prev {
    left: 0;
    box-shadow: 8px 0px 5px 0px #00000014;
}
.method-main-box .owl-nav .owl-prev::after{
    content: "\f060";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    font-size: 20px;
    color: #676767;
}
.method-main-box .owl-nav .owl-next {
    right: 0;
    box-shadow: -8px 0px 5px 0px #00000014;
}
.method-main-box .owl-nav .owl-next::after{
    content: "\f061";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    font-size: 20px;
    color: #676767;
}
.method-main-box .office-details .owl-nav .owl-prev {
    left: -65px;
}

.method-main-box .office-details .owl-nav .owl-next {
    right: -65px;
}
.method-main-box .owl-carousel .owl-nav button.owl-prev{
    border-radius: 50px;
}
.method-main-box .owl-carousel .owl-nav button.owl-next{
    border-radius: 50px;
}
.slider-counter{
    margin-bottom: 40px;
}
.card-details p{
    font-family: var(--font-In);
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
    color: #909C9F;
}

/* final srrow style */

/* ****************************************************************** */
/* Main styling for Owl Carousel */
#sync2 .owl-stage-outer {
    overflow: visible;
}
.slider-counter.chevron-nav .owl-item .count-item {
    width: 100%;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4F5772;
    background: #ffffff;
    border: 0.125rem solid #EFF4F7;
    height: 3.53125rem; /* Matches 57px in height */
    border-radius: 0.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    margin: 0 0.625rem;
    cursor: pointer;
    transition: all 0.5s ease;
    outline: none;
    position: relative;
}
/* Active item styling */
.slider-counter.chevron-nav .owl-item.active .count-item {
    color: var(--color-white);
    background: #15131300;
    border-color: #676767;
}
.slider-counter.chevron-nav .owl-item.active .count-item>.nmbr {
    color: var(--color-orange);
    padding-right: 15px;
}
/* Chevron styles */
.slider-counter.chevron-nav .owl-item .count-item {
    color: #999FB7;
    margin: 0;
    border-radius: 0;
    background: transparent;
    border-right: 0;
    border-left: 0;
    border-color: #4F5772;
    padding-left: 2.5rem;
    padding-right: 0.875rem;
    user-select: none;
}
/* First item left border */
.slider-counter.chevron-nav .owl-item:first-child .count-item {
    border-left: 2px solid #676767;
    padding-left: 1.25rem;
}
/* Chevron arrows */
.slider-counter.chevron-nav .owl-item .count-item:after,
.slider-counter.chevron-nav .owl-item .count-item:before {
    content: "";
    width: 0;
    height: 0;
    transition: all 0.5s ease;
}

/* Chevron arrow before */
.slider-counter.chevron-nav .owl-item .count-item:before {
    border-top: 28px solid transparent; /* Adjusted to match height */
    border-bottom: 28px solid transparent; /* Adjusted to match height */
    border-left: 23px solid #676767;
    position: absolute;
    right: -23px;
    top: 0;
    z-index: 1;
}

/* Chevron arrow after */
.slider-counter.chevron-nav .owl-item .count-item:after {
    border-top: 27px solid transparent;
    border-bottom: 27px solid transparent;
    border-left: 21px solid #05122C;
    position: absolute;
    top: 1px;
    right: -20px;
    z-index: 2;
}

/* Active item styling */
.slider-counter.chevron-nav .owl-item.active.current .count-item {
    background: var(--color-orange);;
    border-color: #676767;
    color: #ffffff;
}
.slider-counter.chevron-nav .owl-item.active.current .count-item>.nmbr{
    color: var(--color-dark);
}

/* Chevron color change when active */
.slider-counter.chevron-nav .owl-item.active .count-item:after {
    border-left-color: #151313;
}
.slider-counter.chevron-nav .owl-item.active.current .count-item:after {
    border-left-color: var(--color-orange);;
}
#sync1 .owl-nav .disabled {
    opacity: 0;
    cursor: default;
}


/*=========================
end services section
=========================*/

/*=========================
start FAQ section
=========================*/
.accordion-item {
    color: var(--bs-white);
    background-color: var(--color-brown);
    border: 1px solid #453E3E;
    margin-bottom: 15px;
}
.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-plus);
    color: var(--bs-white);
    text-align: left;
    background-color: var(--color-brown);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition);
}
.accordion-button:not(.collapsed) {
    color: var(--bs-white);
    background-color: var(--color-brown);
    box-shadow: none;
}
.accordion-button::after {
    border: 1px solid;
    text-align: center;
    border-radius: 50%;
    font-size: 13px;
    line-height: 18px;
    content: "\2b";
    font-weight: 900;
    font-family: "Font Awesome 6 free";
    background-image: none;
    color: var(--color-orange);
}
.accordion-button:not(.collapsed)::after{
    content: "\f068";
    font-weight: 900;
    font-family: "Font Awesome 6 free";
    background-image: none;
}
.accordion-body {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-In);
    color: #909C9F;
}


/*=========================
end FAQ section
=========================*/

/* ============ About us ============= */

/* ---------- Who We Are ---------- */
.security-bg{
    background-color: var(--color-dark);
    padding: 50px 30px;
}
.secure-img{
    width: 100%;
}
.section-title-left p{
    font-family: var(--font-In);
    font-weight: 400;
    color: #909C9F;
    font-size: 16px;
    padding-top: 20px;
}
.security-items{
    background-color: #ff7d161f;
    border: 1px solid #FF7D16;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.security-items p{
    font-family: var(--font-In);
    font-size: 16px;
    font-weight: 500;
    line-height: 19.36px;
    text-align: left;
    color: var(--color-orange);
    margin-bottom: 0;
    text-transform: uppercase;
}
.call-white{
    font-family: var(--font-plus);
    font-size: 35px;
    font-weight: 700;
    line-height: 44.1px;
    text-align: left;
    color: var(--bs-white);
    text-decoration: none;
    border-bottom: 1px solid #ffffff;
}
/* -------- Start Security monitoring ------- */
.secure-title{
    font-family: var(--font-plus);
    font-size: 50px;
    font-weight: 700;
    line-height: 75px;
    text-align: center;
    color: var(--bs-white);
    -webkit-mask-image: linear-gradient(-75deg, rgba(10, 21, 169, .6) 50%, #ff7e00 50%, rgba(0, 0, 0, 1) 70%);
    -webkit-mask-size: 200%;
    animation: shine 4s infinite;
}
.enquiry-bg p{
    font-family: var(--font-In);
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    color: #909C9F;
    margin-bottom: 80px;
}
.counter-box .count-bg{
    position: relative;
    background-color: #151313E5;
    border-left: 2px solid #FF7D16;
    padding: 10px 50px 5px 10px;
}
.counter-margin{
    margin-bottom: 150px;
}
.section-title-left .grey{
    font-family: var(--font-In);
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    color: #909C9F;
    margin-bottom: 22px;
}
/*=============== 
contact/enquery form right to left open 
===============*/
@keyframes slideIn {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes slideOut {
    from {
      transform: translateX(0);
      opacity: 1;
    }
    to {
      transform: translateX(100%);
      opacity: 0;
    }
  }
  
  /* Overlay styles */
  .rcf-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  /* Contact form styles */
  .right-contact-form {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 340px;
    height: 100%;
    background: #000000;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 9999991;
    transform: translateX(100%);
    border-radius: 0;
    padding: 0;
}
  
  .right-contact-form.active {
    display: block;
    animation: slideIn 0.5s forwards;
  }
  
  .rcf-overlay.active {
    display: block;
    opacity: 1;
  }
  
  .right-contact-form.closing {
    animation: slideOut 0.5s forwards;
  }
  .right-contact-form.form-bg .white-heading {
    font-size: 30px;
    margin-top: 25px;
}
.right-contact-form.form-bg .labelline {
    position: absolute;
    background-color: #000000;
}
.rcf-clise{}
.description-text{
    color:#fff;
}
.text1{
    color: #FF7D16;
    font-size: 50px;
    font-weight: 600;
}
.text2{
    color: #1e1b1b;
    text-shadow: 0px 0px 2px #ff7d16;
    font-size: 50px;
    font-weight: 600;
}
.text3{
    color: #706F6F;
    font-size: 50px;
    font-weight: 600;
}
.text4{
    color: #1e1b1b;
    text-shadow: 0px 0px 2px #ff7d16;
    font-size: 50px;
    font-weight: 600;
}
