/* ==========================================================================
SECURITY SERVICES — STYLESHEET
   ========================================================================== */

:root {
  --burgundy: #A30D2D;
  --burgundy-dark: #650016;
  --dark-bg: #1B171B;
  --black: #111111;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --text-gray: #666666;
  --border-color: #E5E5E5;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
}
/* ==========================
   TOP BAR
========================== */

.top-bar{
    background:#1f1a1c;
    color:#fff;
    padding:10px 0;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.top-bar-right a{
    color:#b30835 !important;
    margin-left:15px !important;
    font-size:16px !important;
}

/* ==========================
   MAIN HEADER
========================== */

.main-header{
    background:#fff;
    position:relative;
    z-index:999;
}

.header-top{
    display:flex !important;
    justify-content:space-between !important;
    align-items:center !important;
    padding:15px 0 !important;
}

.logo-area{
    flex:0 0 auto !important;
}

.logo-area img{
    height:120px !important;
    width:auto !important;
    display:block !important;
}

.contact-area{
    display:flex !important;
    align-items:center !important;
    gap:50px !important;
    text-align:left !important;
}

.support-box{
    background:#f5f5f5 !important;
    padding:20px 30px !important;
    text-align:center !important;
}

.support-box i{
    color:#a30d2d !important;
    font-size:14px !important;
}

.support-box span{
    display:block !important;
    font-size:14px !important;
}

.quote-text{
    display:block !important;
    color:#a30d2d !important;
    font-size:14px !important;
    font-weight:700 !important;
    margin-top:10px !important;
}

.numbers{
    font-size:14px !important;
    font-weight:700 !important;
    line-height:1.8 !important;
}

.email-box{
    font-size:14px !important;
    font-weight:600 !important;
}

.email-box a{
    color:#a30d2d !important;
    text-decoration:none !important;
}



.quote-text{
    display:block;
    color:#990b2c;
    font-size:24px;
    font-weight:700;
}

.numbers{
    display:block;
    font-size:20px;
    font-weight:700;
    color:#000;
}

.email-box{
    margin-top:10px;
}

.email-box a{
    color:#990b2c;
    text-decoration:none;
    font-weight:600;
}

/* ==========================
   NAVIGATION
========================== */

.nav-wrapper{
    background:#231f20;
}

.nav-menu{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu li{
    position:relative;
}

.nav-menu li a{
    display:block;
    padding:25px 22px;
    color:#fff;
    text-decoration:none;
    font-size:18px;
}

.nav-menu li.active a{
    background:#990b2c;
}

.nav-menu li a:hover{
    color:#fff;
}




/* =========================================
 STYLE STICKY HEADER
========================================= */

#headerWrapper.sticky{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    width:100% !important;
    background:#ffffff !important;
    z-index:99999 !important;
    box-shadow:0 3px 15px rgba(0,0,0,.12) !important;
}

/* Hide top bar */
#headerWrapper.sticky .top-bar{
    display:none !important;
}

/* Hide contact section */
#headerWrapper.sticky .contact-area{
    display:none !important;
}

/* Main header becomes flex */
#headerWrapper.sticky .main-header{
    padding:0 !important;
    margin:0 !important;
}

#headerWrapper.sticky .header-top{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    padding:12px 0 !important;
}

/* Small logo */
#headerWrapper.sticky .logo-area{
    flex:0 0 auto !important;
}

#headerWrapper.sticky .logo-area img{
    height:60px !important;
    width:auto !important;
    max-width:auto !important;
}

/* Navigation */
#headerWrapper.sticky .nav-wrapper{
    background:transparent !important;
    margin:0 !important;
    padding:0 !important;
}

#headerWrapper.sticky .nav-wrapper .container{
    width:auto !important;
    max-width:none !important;
}

#headerWrapper.sticky .nav-menu{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    margin:0 !important;
    padding-top: 5px !important;
    padding-right: 20px !important;
   
}


#headerWrapper.sticky .nav-menu > li > a{
    color:#111 !important;
      padding:15px 22px !important;
    font-size:16px !important;
}


/* Active menu */
#headerWrapper.sticky .nav-menu li.active a{
    background:transparent !important;
    color:#111 !important;
    font-weight:700 !important;
}
/* ==========================================================================
   MEGA MENU
   ========================================================================== */
.mega-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  z-index: 2000;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  padding: 40px 0 60px;
}

.mega-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-header h2 {
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.mega-close {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

.mega-columns h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.mega-columns ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.mega-columns ul li a {
  display: block;
  color: #b9b6b9;
  font-size: 0.92rem;
  padding: 5px 0;
}

.mega-columns ul li a:hover {
  color: var(--burgundy);
  padding-left: 6px;
}

/* ==========================================================================
HERO SECTION
========================================================================== */

.hero {
background:
linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.78)),
url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=1920&q=80') center center / cover no-repeat;
min-height: 900px;
display: flex;
align-items: center;
padding: 80px 0;
position: relative;
overflow: hidden;
}

.hero::before{
content:'';
position:absolute;
inset:0;
background:
radial-gradient(circle at 20% 20%, rgba(153,11,44,.18), transparent 40%),
radial-gradient(circle at 80% 80%, rgba(255,255,255,.05), transparent 35%);
pointer-events:none;
}

/* ==========================================================================
PREMIUM GLASS FORM
========================================================================== */

.quote-card{
position:relative;
overflow:hidden;

padding:30px;
border-radius:24px;

background:rgba(18,18,18,.72);
backdrop-filter:blur(22px);
-webkit-backdrop-filter:blur(22px);

border:1px solid rgba(255,255,255,.08);

box-shadow:
0 25px 60px rgba(0,0,0,.45),
inset 0 1px 1px rgba(255,255,255,.08);
}

/* Premium Animated Border Glow */

.quote-card::before{
content:'';
position:absolute;
inset:0;
border-radius:24px;
padding:2px;

background:
linear-gradient(
90deg,
transparent 0%,
transparent 20%,
#990b2c 35%,
#ff2f6d 45%,
#ffffff 50%,
#ff2f6d 55%,
#990b2c 65%,
transparent 80%,
transparent 100%
);

background-size:300% 100%;
animation:borderGlow 6s linear infinite;

-webkit-mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);

-webkit-mask-composite:xor;
mask-composite:exclude;

pointer-events:none;
}

/* Inner Shine */

.quote-card::after{
content:'';
position:absolute;
inset:0;

border-radius:24px;

background:
radial-gradient(
circle at top center,
rgba(255,255,255,.08),
transparent 45%
);

pointer-events:none;
}

@keyframes borderGlow{
from{
background-position:0% 50%;
}
to{
background-position:300% 50%;
}
}

.quote-card > *{
position:relative;
z-index:2;
}

/* ==========================================================================
FORM HEADING
========================================================================== */

.quote-card h2{
color:#fff;
font-size: 25px;
font-weight:700;
margin-bottom:25px;
text-shadow:0 0 20px rgba(255,255,255,.15);
}

/* ==========================================================================
FORM INPUTS
========================================================================== */

.quote-card .form-control,
.quote-card .form-select{
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.12);
border-radius:14px;

color:#fff;

padding:10px 8px;
font-size: 14px;

transition:all .3s ease;
}

.quote-card .form-control::placeholder{
color:rgba(255,255,255,.65);
font-size: 10px;
}

.quote-card .form-select{
color:rgba(255,255,255,.85);
font-size: 10px;
}

.quote-card .form-select option{
background:#111;
color:#fff;
}

.quote-card .form-control:focus,
.quote-card .form-select:focus{
background:rgba(255,255,255,.10);

border-color:#ff2f6d;

box-shadow:
0 0 0 1px #ff2f6d,
0 0 20px rgba(255,47,109,.25);

color:#fff;
}

/* ==========================================================================
TEXTAREA
========================================================================== */

.quote-card textarea{
resize:none;
min-height:100px;
font-size: 10px;
}

/* ==========================================================================
CHARACTER COUNT
========================================================================== */

.char-count{
display:block;
margin-top:10px;
color:rgba(255,255,255,.65);
font-size: 14px;
display: none;
}

/* ==========================================================================
RECAPTCHA BOX
========================================================================== */

.recaptcha-box{
border:1px solid rgba(255,255,255,.12);

background:rgba(255,255,255,.05);

backdrop-filter:blur(10px);

padding:10px 18px;

display:flex;
justify-content:space-between;
align-items:center;

border-radius:14px;

color:#fff;
font-size: 10px;
}

.recaptcha-logo{
display:flex;
flex-direction:column;
align-items:center;
font-size:.65rem;
color:#ddd;
}

.recaptcha-logo i{
font-size: 14px;
color:#4285f4;
}

/* ==========================================================================
SUBMIT BUTTON
========================================================================== */

.btn-submit{
width:100%;

background:linear-gradient(
135deg,
#990b2c,
#c81445
);

color:#fff;
border:none;

padding:16px 30px;

font-weight:700;
font-size:15px;

letter-spacing:1px;

border-radius:14px;

transition:all .3s ease;
}

.btn-submit:hover{
transform:translateY(-3px);

box-shadow:
0 12px 30px rgba(153,11,44,.45);

color:#fff;
}

/* ==========================================================================
HERO CONTENT
========================================================================== */

.hero-content h1{
color:#fff;
font-size: 60px;
font-weight:800;
line-height:1.15;

text-shadow:
0 5px 30px rgba(0,0,0,.4);

margin-bottom:35px;
}
.btn-learn-more{
    position:relative;
    overflow:hidden;

    background:linear-gradient(
        to right,
        #a30024 0%,
        #7a001b 40%,
        #450011 75%,
        #000000 100%
    );

    color:#fff !important;

    padding:20px 30px;

    border-radius:4px;

    font-size:14px;
    font-weight:700;

    letter-spacing:3px;
    text-transform:uppercase;

    display:inline-flex;
    align-items:center;
    gap:12px;

    transition:all .3s ease;
}

.btn-learn-more:hover{
    color:#fff;

    transform:translateY(-4px);

    box-shadow:
        0 15px 35px rgba(153,11,44,.35);
}

/* Shine Effect */
.btn-learn-more::before{
    content:'';
    position:absolute;

    top:0;
    left:-100%;

    width:50%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );

    transition:.7s;
}

.btn-learn-more:hover::before{
    left:130%;
}

.btn-learn-more{
    position:relative;
    overflow:hidden;
    z-index:1;
}

/* Animated Border */

.btn-learn-more::after{
    content:'';
    position:absolute;
    inset:0;
    border-radius:4px;
    padding:2px;

    background:linear-gradient(
        90deg,
        transparent,
        #990b2c,
        #ffffff,
        #990b2c,
        transparent
    );

    background-size:300% 100%;
    animation:btnBorderGlow 4s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
    mask-composite:exclude;

    pointer-events:none;
}

/* Border Animation */

@keyframes btnBorderGlow{
    0%{
        background-position:0% 50%;
    }
    100%{
        background-position:300% 50%;
    }
}
/* ==========================================================================
RESPONSIVE
========================================================================== */

@media (max-width:991px){

.hero{
min-height:auto;
padding:120px 0 80px;
}

.quote-card{
padding:30px;
}

.hero-content{
text-align:center !important;
margin-top:40px;
}

.hero-content h1{
font-size:2rem;
}
}

@media (max-width:576px){

.quote-card{
padding:25px;
border-radius:20px;
}

.quote-card h2{
font-size:1.5rem;
}

.hero-content h1{
font-size:1rem;
}

}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 50px 0;
  background: var(--light-gray);
  
}

.eyebrow {
  color: var(--burgundy);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.services-section h2,
.about-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 24px;
  color: var(--black);
}

.services-section p,
.about-section p {
  color: var(--text-gray);
  font-size: 0.97rem;
  margin-bottom: 18px;
  text-align: justify;
}

.btn-contact {
  background: linear-gradient(90deg, var(--burgundy), var(--burgundy-dark));
  color: var(--white);
  padding: 14px 30px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.btn-contact:hover {
  opacity: 0.9;
  color: var(--white);
  transform: translateY(-2px);
}

.services-grid {
  border: 1px solid #2a2a2a;
    border-radius: 10px;
}

.service-card{
  background:#171313;
  color:#fff;
  text-align:center;

  padding:40px 18px;
  min-height:175px;

  border:1px solid rgba(255,255,255,.12);


  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  transition:all .5s ease;

  transform-style:preserve-3d;
  perspective:1000px;

  cursor:pointer;
}

.service-card i{
  font-size:2rem;
  color:#990b2c;
  margin-bottom:16px;
  transition:all .5s ease;
}


.service-card:hover i{
  color:#fff;
  transform:scale(1.15) rotate(10deg);
}

.service-card h5{
  margin:0;
  font-size:15px;
  font-weight:600;
}

.btn-contact{
    background:linear-gradient(
        to right,
        #a30024 0%,
        #7a001b 40%,
        #450011 75%,
        #000000 100%
    );

    color:#fff !important;
    padding:20px 20px;
    border-radius:4px;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.btn-contact:hover{
    color:#fff;

    transform:translateY(-4px);

    box-shadow:
      0 15px 35px rgba(153,11,44,.35);
}

/* Shine Effect */
.btn-contact::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;

    width:50%;
    height:100%;

    background:linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.25),
      transparent
    );

    transition:.7s;
}

.btn-contact:hover::before{
    left:130%;
}




.btn-contact{
    position:relative;
    overflow:hidden;

    background:linear-gradient(
        to right,
        #a30024 0%,
        #7a001b 40%,
        #450011 75%,
        #000000 100%
    );

    color:#fff !important;
    padding:20px 20px;

    border-radius:4px;

    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;

    z-index:1;
}

.btn-contact:hover{
    color:#fff;
    transform:translateY(-4px);

    box-shadow:
      0 15px 35px rgba(153,11,44,.35);
}

/* Shine Effect */
.btn-contact::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;

    width:50%;
    height:100%;

    background:linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.25),
      transparent
    );

    transition:.7s;
    z-index:2;
}

.btn-contact:hover::before{
    left:130%;
}

/* Animated Border */
.btn-contact::after{
    content:'';
    position:absolute;
    inset:0;

    border-radius:4px;
    padding:2px;

    background:linear-gradient(
        90deg,
        transparent 0%,
        transparent 20%,
        #990b2c 35%,
        #ffffff 50%,
        #990b2c 65%,
        transparent 80%,
        transparent 100%
    );

    background-size:300% 100%;
    animation:btnBorderGlow 4s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
    mask-composite:exclude;

    pointer-events:none;
}

@keyframes btnBorderGlow{
    from{
        background-position:0% 50%;
    }
    to{
        background-position:300% 50%;
    }
}
.services-grid .col-md-3{
    padding:0;
}

.service-card{
    perspective:1000px;
    height:230px;
}







.service-card-front{
    background:#120d10;
    color:#fff;
}



.service-card-front i,
.service-card-back i{
    font-size:2rem;
    color:#990b2c;
    margin-bottom:20px;
}

.service-card-back i{
    color:#fff;
}

.service-card h5{
    margin:0;
    font-size:1.1rem;
    font-weight:700;
}

.services-grid{
    overflow:hidden;
}

.service-card{
    position:relative;
    background:#120d10;
    color:#fff;

    min-height:230px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    border:1px solid rgba(255,255,255,.12);

    overflow:hidden;

    cursor:pointer;
}

.service-card::before{
    content:'';
    position:absolute;

    left:0;
    bottom:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(
        180deg,
        #990b2c 0%,
        #7a001b 100%
    );

    transition:all .45s ease;
    z-index:1;
}

/* White bottom line */

.service-card::after{
    content:'';
    position:absolute;

    left:0;
    bottom:0;

    width:0;
    height:4px;

    background:#fff;

    transition:all .45s ease;
    z-index:2;
}

.service-card:hover::before{
    bottom:0;
}

.service-card:hover::after{
    width:100%;
}

.service-card i,
.service-card h5{
    position:relative;
    z-index:3;

    transition:.4s ease;
}

.service-card i{
    font-size:2rem;
    color:#990b2c;
    margin-bottom:18px;
}

.service-card h5{
    font-size:1.1rem;
    font-weight:700;
    line-height:1.3;
}

.service-card:hover i,
.service-card:hover h5{
    color:#fff;
}














.service-icon{
    position:relative;
    width:90px;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    z-index:3;
}

.service-icon::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:50%;
    padding:2px;

    background:linear-gradient(
        90deg,
        transparent 0%,
        transparent 20%,
        #990b2c 35%,
        #ff2f6d 45%,
        #ffffff 50%,
        #ff2f6d 55%,
        #990b2c 65%,
        transparent 80%,
        transparent 100%
    );

    background-size:300% 100%;
    animation:iconBorderGlow 4s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
    mask-composite:exclude;

    pointer-events:none;
}

.service-icon::after{
    content:'';
    position:absolute;
    inset:2px;
    border-radius:50%;

    background:#120d10;
    z-index:-1;
}

.service-card i{
    font-size:40px;
    color:#990b2c;
    margin:0;
    position:relative;
    z-index:2;
}

@keyframes iconBorderGlow{
    from{
        background-position:0% 50%;
    }
    to{
        background-position:300% 50%;
    }
}

.service-card:hover .service-icon::after{
    background:#000000;
}

.service-card:hover i{
    color:#fff;
}
/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-section{
    padding:50px 0;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8f8f8 100%
        );
    position:relative;
}

.about-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:
        radial-gradient(
            circle at top right,
            rgba(153,11,44,.05),
            transparent 35%
        );

    pointer-events:none;
}

/* ==========================================================================
   FEATURE CARD
   ========================================================================== */

.feature-card{
    position:relative;
    overflow:hidden;

    background:#120d10  ;

     padding:22px 20px; /* was 35px 28px */
    border-radius:14px; /* was 18px */

    height:100%;

    border:1px solid rgba(0,0,0,.06);

    transition:all .45s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,.04);
}

/* Premium Border */

.feature-card::before{
    content:'';
    position:absolute;
    inset:0;

    border-radius:18px;
    padding:1px;

    background:linear-gradient(
        135deg,
        rgba(153,11,44,.15),
        rgba(255,255,255,.2),
        rgba(153,11,44,.15)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
    mask-composite:exclude;

    pointer-events:none;
}

/* Large Background Icon */

.feature-card::after{
    content:'';
    position:absolute;

    right:-20px;
    bottom:-20px;

     width:80px; /* was 120px */
    height:80px; /* was 120px */

    border-radius:50%;

    background:
        radial-gradient(
            rgba(153,11,44,.08),
            transparent 70%
        );

    transition:.4s ease;
}

/* Icon Container */

.feature-card i{
    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;

    border-radius:50%;

    color:#990b2c;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.96),
            rgba(255, 255, 255, 0.936)
        );

    margin-bottom:16px;

    position:relative;
    z-index:2;

    transition:.4s ease;
}

/* Title */

.feature-card h5{
      font-size:1rem; /* was 1.2rem */
    margin-bottom:8px; /* was 12px */
    font-weight:700;
    color:#ffffff;

    

    position:relative;
    z-index:2;

    transition:.4s ease;
}

/* Description */

.feature-card p{
    color:#666;
       font-size:14px;
    line-height:1.6;

    position:relative;
    z-index:2;

    transition:.4s ease;
}

/* Hover */

.feature-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 25px 50px rgba(0,0,0,.12);
}

/* Burgundy Overlay */

.feature-card:hover{
    background:
        linear-gradient(
            135deg,
            #990b2c 0%,
            #7a001b 50%,
            #2b2024 100%
        );
}

/* Icon Hover */

.feature-card:hover i{
    background:rgba(255,255,255,.12);
    color:#fff;

    transform:scale(1.1);
}

/* Text Hover */

.feature-card:hover h5,
.feature-card:hover p{
    color:#fff;
}

/* Background Circle Hover */

.feature-card:hover::after{
    transform:scale(1.5);
    opacity:.2;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media(max-width:768px){

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

    .feature-card{
        padding:18px;
    }

    .feature-card i{
        width:50px;
        height:50px;
        font-size:20px;
    }

    .feature-card h5{
        font-size:15px;
    }

    .feature-card p{
        font-size:13px;
    }
}
/* ==========================================================================
   PATROL MONITORING SECTION
   ========================================================================== */
.patrol-section {
  background: var(--dark-bg);
  color: var(--white);
  padding: 50px 0;
  margin-bottom: 30px;
}

.patrol-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
}

.patrol-section p {
  color: #c9c6c9;
  font-size: 0.97rem;
  margin-bottom: 18px;
}

.patrol-list {
  list-style: disc;
  padding-left: 22px;
  color: #c9c6c9;
  margin-bottom: 24px;
}

.patrol-list li {
  margin-bottom: 8px;
  font-size: 0.97rem;
}

.patrol-img{
    max-width:90%;
    height:auto;
    object-fit:cover;
    filter:drop-shadow(0 30px 60px rgba(0,0,0,.6));
}

.patrol-img{
    width:100%;
    height:500px;
    object-fit:cover;
    filter:drop-shadow(0 30px 60px rgba(0,0,0,.6));
    border-radius: 30px;
}

/* ==========================================================================
   CERTIFICATION SECTION
   ========================================================================== */
.cert-section {
  background: var(--white);
  padding: 70px 0;
}

.cert-row {
  gap: 30px 0;
}

.cert-item {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.cert-item:hover {
  transform: scale(1.08);
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

/* ISO badge */
.iso-badge {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 6px solid;
  border-image: linear-gradient(135deg, #f6c945, #e08a1e) 1;
  justify-content: center;
}

.iso-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: #e08a1e;
}

.iso-sub {
  font-size: 0.85rem;
  font-weight: 700;
  color: #e08a1e;
}

/* Achilles badge */
.achilles-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
}

.achilles-network {
  background: #e2231a;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 18px;
  margin: 4px 0;
}

.achilles-tier {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1a1a1a;
}

/* SafeContractor badge */
.safecontractor-badge {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #2e3a59;
  justify-content: center;
  padding: 10px;
}

.sc-icon i {
  font-size: 1.8rem;
  color: #2e3a59;
}

.sc-text {
  font-weight: 700;
  font-size: 1rem;
  color: #2e3a59;
}

.sc-approved {
  font-weight: 800;
  font-size: 1.1rem;
  color: #2e3a59;
  border-top: 1px solid #2e3a59;
  border-bottom: 1px solid #2e3a59;
  padding: 2px 12px;
}

.cert-badge small {
  font-size: 0.6rem;
  color: #777;
}

/* NASDU badge */
.nasdu-badge i {
  font-size: 2.2rem;
  color: #8a6d3b;
}

.nasdu-name {
  font-weight: 800;
  font-size: 1.4rem;
  color: #999;
}

/* ICO badge */
.ico-text {
  font-size: 2rem;
  font-weight: 800;
  color: #1a3a6e;
}

.ico-badge small {
  font-size: 0.7rem;
  color: #1a3a6e;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--dark-bg);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 6px);
  color: var(--white);
  padding: 70px 0 30px;
}

.site-footer h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--white);
}

.site-footer p {
  color: #c9c6c9;
  font-size: 0.92rem;
  text-align: left;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: #c9c6c9;
  font-size: 0.92rem;
}

.footer-contact li i {
  color: var(--burgundy);
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 24px;
}

.footer-bottom .copyright {
  color: #c9c6c9;
  font-size: 0.88rem;
}

.footer-bottom .sitemap a {
  color: var(--white);
  font-weight: 700;
}

.footer-social a {
  color: var(--burgundy);
  margin-left: 14px;
  font-size: 0.95rem;
}

.footer-social a:hover {
  color: var(--white);
}




/* ==================================================
   FOOTER
================================================== */

.site-footer{
    background:#111;
    color:#fff;
    padding-top:80px;
}

/* Logo */

.footer-logo img{
    max-width:220px;
    margin-bottom:25px;
}

/* About Text */

.footer-about{
    color:#bdbdbd;
    font-size:15px;
    line-height:1.8;
    margin-bottom:25px;
}

/* Headings */

.site-footer h4{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-bottom:25px;
    position:relative;
}

.site-footer h4::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;

    width:50px;
    height:3px;

    background:#990b2c;
}

/* Links */

.footer-links,
.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li,
.footer-contact li{
    margin-bottom:14px;
}

.footer-links a{
    color:#bdbdbd;
    text-decoration:none;
    transition:.3s ease;
}

.footer-links a:hover{
    color:#990b2c;
    padding-left:6px;
}

/* Contact */

.footer-contact li{
    color:#bdbdbd;
    display:flex;
    align-items:flex-start;
    gap:12px;
    line-height:1.7;
}

.footer-contact i{
    color:#990b2c;
    margin-top:4px;
}

/* Social */

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.3s ease;
}

.footer-social a:hover{
    background:#990b2c;
    transform:translateY(-4px);
}

/* Bottom Bar */

.footer-bottom{
    margin-top:60px;
    padding:20px 0;

    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom a{
    color:#bdbdbd;
    text-decoration:none;
    transition:.3s ease;
}

.footer-bottom a:hover{
    color:#990b2c;
}

.copyright{
    color:#9c9c9c;
    font-size:14px;
}

/* Responsive */

@media(max-width:991px){

    .site-footer{
        text-align:center;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-contact li{
        justify-content:center;
    }

    .site-footer h4::after{
        left:50%;
        transform:translateX(-50%);
    }

}

.site-footer{
    background:
        radial-gradient(
            circle at top right,
            rgba(153,11,44,.18),
            transparent 35%
        ),
        #111;
}

.footer-logo{
  text-align:center;
    margin-bottom:25px;
}

.footer-logo img{
    display:block;
    
    max-width:200px;
    
}


/* ==========================================================================
   HELP BUTTON
   ========================================================================== */

.help-button{
    position: fixed !important;
    right: 30px !important;
    bottom: 30px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #a30d2d !important;
    color: #ffffff !important;
    padding: 12px 22px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    z-index: 99998 !important;
    box-shadow: 0 5px 20px rgba(0,0,0,.3) !important;
    transition: all .3s ease !important;
}

.help-button i{
    color: #ffffff !important;
    font-size: 16px !important;
}

.help-button:hover{
    background: #7d0823 !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
}

.help-button:focus,
.help-button:active,
.help-button:visited{
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ==========================================================================
   HELP POPUP
   ========================================================================== */

.help-popup{
    position: fixed !important;
    right: 20px !important;
    bottom: 85px !important;

    width: 240px !important;
    max-width: 240px !important;

    background: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;

    box-shadow: 0 10px 30px rgba(0,0,0,.25) !important;

    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(15px) !important;

    transition: all .3s ease !important;
    z-index: 99999 !important;
}

.help-popup.active{
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.help-popup-header{
    background: #a30d2d !important;
    color: #ffffff !important;

    padding: 10px 12px !important;

    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;

    font-size: 14px !important;
    font-weight: 700 !important;
}

.help-popup-header button{
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    cursor: pointer !important;
    font-size: 16px !important;
}

/* ==========================================================================
   BODY
   ========================================================================== */

.help-popup-body{
    padding: 12px !important;
}

.form-group{
    margin-bottom: 8px !important;
}

.form-group label{
    display: block !important;
    margin-bottom: 3px !important;

    font-size: 12px !important;
    font-weight: 600 !important;
    color: #222 !important;
}

.form-group input,
.form-group textarea{
    width: 100% !important;

    border: 1px solid #dddddd !important;
    border-radius: 5px !important;

    padding: 8px 10px !important;
    font-size: 12px !important;

    outline: none !important;
}

.form-group input{
    height: 34px !important;
}

.form-group textarea{
    height: 70px !important;
    resize: none !important;
}

/* ==========================================================================
   BUTTON
   ========================================================================== */

.help-submit{
    width: 100% !important;

    border: none !important;
    border-radius: 5px !important;

    background: #a30d2d !important;
    color: #ffffff !important;

    padding: 10px !important;

    font-size: 13px !important;
    font-weight: 700 !important;

    cursor: pointer !important;
    transition: .3s ease !important;
}

.help-submit:hover{
    background: #7d0823 !important;
}

/* ==========================================================================
   DESKTOP ONLY
   ========================================================================== */

@media (min-width:768px){

    .help-overlay{
        display:none !important;
    }

    .help-popup{
        width:240px !important;
        max-width:240px !important;
    }

}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width:767px){

    .help-popup{
        right:10px !important;
        left:10px !important;
        width:auto !important;
        max-width:none !important;

        bottom:80px !important;

        max-height:80vh !important;
        overflow-y:auto !important;
    }

    .help-button{
        right:15px !important;
        bottom:15px !important;
    }

}


/* =========================================
   MOBILE POPUP BACKGROUND BLUR
========================================= */

@media (max-width:767px){

    .help-overlay{
        position:fixed !important;
        inset:0 !important;

        background:rgba(0,0,0,0.45) !important;

        backdrop-filter:blur(8px) !important;
        -webkit-backdrop-filter:blur(8px) !important;

        opacity:0 !important;
        visibility:hidden !important;

        transition:all .3s ease !important;

        z-index:99997 !important;
    }

    .help-overlay.active{
        opacity:1 !important;
        visibility:visible !important;
    }

}


/* =========================================
   BACK TO TOP BUTTON
========================================= */

#backToTop{
    position: fixed !important;
    left: 15px !important;
    bottom: 15px !important;

    width: 40px !important;
    height: 40px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #ffffff !important;
    color: #000000 !important;

    border: 1px solid #dcdcdc !important;
    border-radius: 10px !important;

    cursor: pointer !important;

    z-index: 99999 !important;

    box-shadow: 0 4px 12px rgba(0,0,0,.15) !important;

    transition: all .3s ease !important;
}

#backToTop:hover{
    background: #a30d2d !important;
    color: #ffffff !important;
    border-color: #a30d2d !important;
}

#backToTop i{
    font-size: 14px !important;
}

/* Show Button */

#backToTop.show{
    display: flex !important;
}
/* ==========================================================================
   FADE-IN ANIMATIONS
   ========================================================================== */
[data-aos] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="zoom-in"] {
  transform: scale(0.85);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   MOBILE OFFCANVAS MENU
   ========================================================================== */
.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav > li {
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  color: var(--black);
  font-weight: 600;
  font-size: 1rem;
}

.mobile-submenu {
  list-style: none;
  padding: 0 0 10px 14px;
  margin: 0;
  display: none;
}

.mobile-submenu.show {
  display: block;
}

.mobile-submenu li a {
  display: block;
  padding: 8px 0;
  color: var(--text-gray);
  font-size: 0.93rem;
}

.mobile-submenu li a:hover {
  color: var(--burgundy);
}

.mobile-dropdown-toggle i {
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.open i {
  transform: rotate(180deg);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 50px 0;
  }

  .hero-content {
    text-align: center !important;
    margin-top: 40px;
  }

  .hero-content h1 {
    font-size: 2rem;
    text-align: center;
  }

  .quote-card h2 {
    font-size: 1.5rem;
  }

  .services-section,
  .about-section,
  .patrol-section {
    padding: 60px 0;
  }

  .about-section .col-lg-6:last-child {
    margin-top: 40px;
  }

  .patrol-section .col-lg-6:last-child {
    margin-top: 40px;
  }

  .services-section .col-lg-7 {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .top-bar {
    font-size: 0.75rem;
  }

  .top-bar-left {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
  }

  .logo img {
    height: 45px;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .logo-sub {
    font-size: 0.5rem;
    letter-spacing: 2px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .quote-card {
    padding: 25px;
  }

  .services-section h2,
  .about-section h2,
  .patrol-section h2 {
    font-size: 1.5rem;
  }

  .mega-menu-header h2 {
    font-size: 1.5rem;
  }

  .help-button span,
  .help-button {
    font-size: 0.85rem;
    padding: 10px 16px;
  }

  #backToTop {
    width: 40px;
    height: 40px;
    bottom: 20px;
    left: 20px;
  }

  .help-button {
    bottom: 20px;
    right: 20px;
  }
}










.logo-area img{
    height:90px !important;
    width:auto !important;
    max-width:auto !important;
    display:block !important;
}

.nav-menu{
    display:flex !important;
    justify-content:flex-end !important;
    align-items:center !important;
    list-style:none !important;
    margin:0 !important;
    padding:0 !important;
}

.nav-menu li{
    position:relative !important;
}

.nav-menu li a{
    display:block !important;
    padding:25px 30px !important;
    color:#fff !important;
    text-decoration:none !important;
    font-size:18px !important;
    font-weight:400 !important;
    transition:all .3s ease !important;
}

.nav-menu li.active a{
    background:#a30d2d !important;
    color:#fff !important;
}

.nav-menu li a:hover{
    color:#fff !important;
}

.nav-menu li.active a:hover{
    background:#a30d2d !important;
}

.nav-menu .fa-caret-down{
    margin-left:6px !important;
 color: #a30d2d;
 
  
}

.language-switcher a{
    font-size:22px !important;
}

.nav-wrapper .container{
    display:block !important;
}

.logo-area{
    flex:0 0 auto !important;
}

.contact-area{
    flex:0 0 auto !important;
}

#headerWrapper.sticky .nav-wrapper{
    margin-top:0 !important;
}

#headerWrapper.sticky .nav-menu{
    justify-content:flex-end !important;
}

#headerWrapper.sticky .main-header{
    padding:0 !important;
}



/* STICKY HEADER FIX */

#headerWrapper.sticky .main-header{
    float:left !important;
    width:25% !important;
}

#headerWrapper.sticky .nav-wrapper{
    float:left !important;
    width:75% !important;
    background:#fff !important;
    padding-top: 10px !important;
}

#headerWrapper.sticky .nav-menu{
    justify-content:flex-end !important;
}

/* Normal Header Logo */
.logo-area img{
    height: 80px !important;
    width: auto !important;
}

/* Sticky Header Logo */
#headerWrapper.sticky .logo-area img{
    height: 60px !important;
    width: auto!important;
    padding-left: 30px;
   
   
}










/* =========================================
   PREMIUM GLASS DROPDOWN
========================================= */

.nav-menu .dropdown{
    position:relative !important;
}

.nav-menu .submenu{
    position:absolute !important;
    top:calc(100% + 8px) !important;
    left:0 !important;

    width:200px !important;

    

    padding:15px !important;
    margin:0 !important;

    list-style:none !important;

    background:rgba(20,20,20,.90) !important;

    backdrop-filter:blur(20px) !important;
    -webkit-backdrop-filter:blur(20px) !important;

    border:1px solid rgba(255,255,255,.08) !important;

    border-radius:16px !important;

    box-shadow:
        0 20px 50px rgba(0,0,0,.45) !important;

    opacity:0 !important;
    visibility:hidden !important;

    transform:translateY(20px) scale(.96) !important;

    transition:all .35s ease !important;

    z-index:99999 !important;

    overflow:hidden !important;
}

/* Animated Border */

.nav-menu .submenu::before{
    content:'' !important;
    position:absolute !important;
    inset:0 !important;

    border-radius:16px !important;
    padding:1px !important;

    background:linear-gradient(
        90deg,
        transparent,
        #990b2c,
        #ffffff,
        #990b2c,
        transparent
    ) !important;

    background-size:300% 100% !important;

    animation:dropdownBorder 5s linear infinite !important;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0) !important;

    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0) !important;

    -webkit-mask-composite:xor !important;
    mask-composite:exclude !important;

    pointer-events:none !important;
}

@keyframes dropdownBorder{
    from{
        background-position:0% 50%;
    }
    to{
        background-position:300% 50%;
    }
}

/* Menu Items */

.nav-menu .submenu li{
    width:100% !important;
}

.nav-menu .submenu li a{
    display:flex !important;
    align-items:center !important;

    padding:10px 10px !important;

    color:#ffffff !important;

    font-size:10px !important;
    font-weight:500 !important;

    background:transparent !important;

    border-radius:10px !important;

    transition:all .3s ease !important;

    position:relative !important;
}

/* Hover Accent */

.nav-menu .submenu li a::before{
    content:'' !important;

    position:absolute !important;

    left:0 !important;
    top:50% !important;

    width:3px !important;
    height:0 !important;

    background:#990b2c !important;

    transform:translateY(-50%) !important;

    transition:.3s ease !important;
}

.nav-menu .submenu li a:hover{
    background:rgba(255,255,255,.06) !important;

    color:#ffffff !important;

    padding-left:28px !important;
}

.nav-menu .submenu li a:hover::before{
    height:60% !important;
}

/* Show Dropdown */

.nav-menu .dropdown:hover .submenu{
    opacity:1 !important;
    visibility:visible !important;

    transform:translateY(0) scale(1) !important;
}

/* Arrow */

.nav-menu .submenu::after{
    content:'' !important;

    position:absolute !important;

    top:-8px !important;
    left:35px !important;

    width:16px !important;
    height:16px !important;

    background:rgba(20,20,20,.95) !important;

    border-top:1px solid rgba(255,255,255,.08) !important;
    border-left:1px solid rgba(255,255,255,.08) !important;

    transform:rotate(45deg) !important;
}

.nav-menu .dropdown{
    position:relative !important;
}

.nav-menu .submenu{
    top:100% !important;
    margin-top:10px !important;
}

.sticky-header .submenu{
    top:100% !important;
}


.dropdown{
    position:relative !important;
}

.submenu{
    position:absolute !important;
    top:calc(100% + 10px) !important;
    left:0 !important;
    z-index:999999 !important;
}

#headerWrapper.sticky .dropdown{
    position:relative !important;
}

#headerWrapper.sticky .submenu{
    top:100% !important;
    left:0 !important;

    margin-top:0 !important;

    transform:none !important;
}

#headerWrapper.sticky .nav-menu > li > a{
    color:#111 !important;
}



.nav-menu .submenu{
    max-height:500px !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;

    scrollbar-width:thin;
    scrollbar-color:#990b2c #111;
}

.nav-menu .submenu::-webkit-scrollbar{
    width:6px;
}

.nav-menu .submenu::-webkit-scrollbar-thumb{
    background:#990b2c;
    border-radius:10px;
}

.nav-menu .submenu::-webkit-scrollbar-track{
    background:#111;
}

.nav-menu .submenu::before{
    display:none !important;
}
.nav-menu .submenu{
    border:1px solid rgba(153,11,44,.8) !important;

    box-shadow:
        0 0 25px rgba(153,11,44,.20),
        0 20px 50px rgba(0,0,0,.45) !important;

    overflow-y:auto !important;
    overflow-x:hidden !important;

    max-height:500px !important;
}

.nav-menu .submenu{
    max-height:500px !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;

    overscroll-behavior-y:contain !important;
}
.nav-menu .submenu{
    max-height:500px !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;

    overscroll-behavior:contain !important;

    scrollbar-width:none !important;
    -ms-overflow-style:none !important;
}

.nav-menu .submenu::-webkit-scrollbar{
    display:none !important;
}

.cert-section{
  display: none !important;
}


/* =========================================
   ABOUT VECTROX PAGE
========================================= */

/* =========================================
   PAGE BANNER
========================================= */

.page-banner{
    background:#000;
    padding:100px 0;
    text-align:center;
    position:relative;
}

.page-banner::before{
    content:'';
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(153,11,44,.15),
            transparent 60%
        );
}

.page-banner .container{
    position:relative;
    z-index:2;
}

.page-banner h1{
    color:#fff;
    font-size:50px;
    font-weight:700;
    margin-bottom:15px;
}

.breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    color:#fff;
}

.breadcrumb a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb a:hover{
    color:#990b2c;
}

.breadcrumb span:last-child{
    color:#990b2c;
}

/* =========================================
   ABOUT SECTION
========================================= */

.about-section{
    padding:80px 0;
    background:#f8f9fb;
}

.section-tag{
    display:inline-block;
    background:#990b2c;
    color:#fff;
    padding:10px 18px;
    font-size:10px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:25px;
    border-radius:4px;
}

.about-section h2{
    font-size:1.5rem;
    margin-bottom:30px;
    font-weight:700;
}

/* =========================================
   INTRO CARD
========================================= */

.about-intro-card{
    position:relative;
    overflow:hidden;

    background:#fff;

    padding:40px;

    border-radius:20px;

    margin-bottom:40px;

    border-left:5px solid #990b2c;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;
}

.about-intro-card:hover{
    transform:translateY(-5px);

    box-shadow:
        0 20px 50px rgba(153,11,44,.12);
}

.about-intro-card::before{
    content:'';

    position:absolute;
    top:0;
    right:0;

    width:180px;
    height:180px;

    background:
        radial-gradient(
            rgba(153,11,44,.08),
            transparent 70%
        );
}

.about-intro-card h3{
    color:#990b2c;
    font-size:1.4rem;
    font-weight:700;
    margin-bottom:20px;
}

.about-intro-card i{
    margin-right:10px;
}

.about-intro-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:0;
}

/* =========================================
   FEATURE CARDS
========================================= */

.about-feature-card{
    position:relative;
    overflow:hidden;

    background:#fff;

    padding:35px 30px;

    border-radius:18px;

    text-align:center;

    height:100%;

    margin-bottom:30px !important;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:.4s ease;
}

.about-feature-card::before{
    content:'';

    position:absolute;

    left:0;
    bottom:-100%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            135deg,
            #990b2c,
            #2b2024
        );

    transition:.45s ease;
}

.about-feature-card:hover::before{
    bottom:0;
}

.about-feature-card i,
.about-feature-card h4,
.about-feature-card p{
    position:relative;
    z-index:2;
}

.about-feature-card i{
    font-size:42px;
    color:#990b2c;
    margin-bottom:18px;
    transition:.4s ease;
}

.about-feature-card h4{
    font-size:1.1rem;
    font-weight:700;
    color:#111;
    margin-bottom:12px;
    transition:.4s ease;
}

.about-feature-card p{
    font-size:.95rem;
    color:#666;
    line-height:1.8;
    margin-bottom:0;
    transition:.4s ease;
}

.about-feature-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 20px 40px rgba(153,11,44,.20);
}

.about-feature-card:hover i,
.about-feature-card:hover h4,
.about-feature-card:hover p{
    color:#fff;
}

/* =========================================
   CONTENT CARDS
========================================= */

.about-content-card{
    position:relative;
    overflow:hidden;

    background:#fff;

    padding:40px;

    border-radius:20px;

    margin-bottom:30px;
    margin-top: 30px;

    border-left:5px solid #990b2c;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;
}

.about-content-card:hover{
    transform:translateY(-5px);

    box-shadow:
        0 20px 50px rgba(153,11,44,.12);
}

.about-content-card::before{
    content:'';

    position:absolute;

    top:0;
    right:0;

    width:180px;
    height:180px;

    background:
        radial-gradient(
            rgba(153,11,44,.08),
            transparent 70%
        );
}

.about-content-card h3{
    color:#990b2c;
    font-size:1.2rem;
    font-weight:700;
    margin-bottom:20px;
}

.about-content-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
    text-align:justify;
}

/* =========================================
   COMPANY REGISTRATION
========================================= */

.company-reg{
    background:#fff;

    padding:20px 25px;

    margin-top:30px;

    border-radius:12px;

    border-left:5px solid #990b2c;

    color:#990b2c;

    font-weight:700;

    box-shadow:
        0 10px 25px rgba(0,0,0,.05);
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .page-banner{
        padding:70px 0;
    }

    .page-banner h1{
        font-size:36px;
    }

    .about-section{
        padding:60px 0;
    }

    .about-intro-card,
    .about-content-card{
        padding:25px;
    }

    .about-feature-card{
        padding:25px;
    }

    .about-feature-card i{
        font-size:34px;
    }

    .about-feature-card h4{
        font-size:1rem;
    }
}


/* =========================================
   MISSION, VISION & VALUES PAGE
========================================= */

.mission-box,
.vision-box,
.values-box,
.commitment-box{
    background:#fff;
    padding:30px;
    margin-top:30px;
    border-radius:15px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);

    border-left:5px solid #990b2c;


}

/* Section Headings */

.mission-box h3,
.vision-box h3,
.values-box h3,
.commitment-box h3{
    color:#990b2c;
    font-size:1.5rem;
    font-weight:700;
    margin-bottom:18px;
    
}

/* Icons */

.mission-box i,
.vision-box i,
.values-box i,
.commitment-box i{
    margin-right:10px;
    font-size:1.2rem;
}

/* Paragraphs */

.mission-box p,
.vision-box p,
.values-box p,
.commitment-box p{
    color:#666;
    font-size:1rem;
    line-height:1.9;
    margin-bottom:18px;
}

/* Values Grid */

.value-item{
    background:#f8f8f8;
    padding:20px;
    border-radius:10px;
    margin-bottom:20px;

    transition:.3s ease;
}

.value-item:hover{
    background:#990b2c;
    color:#fff;

    transform:translateY(-5px);
}

/* Value Heading */

.value-item h4{
    color:#990b2c;
    font-size:1.1rem;
    font-weight:700;
    margin-bottom:10px;

    transition:.3s ease;
    
}

/* Value Text */

.value-item p{
    color:#666;
    font-size:.95rem;
    line-height:1.8;
    margin-bottom:0;

    transition:.3s ease;
}

.value-item:hover h4,
.value-item:hover p{
    color:#fff;
}

/* Mission List */

.mission-box ul{
    padding-left:20px;
    margin-bottom:0;
}

.mission-box ul li{
    color:#666;
    font-size:1rem;
    line-height:1.9;
    margin-bottom:12px;
}
.inner-content .container{
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Mobile */

@media(max-width:768px){

    .mission-box,
    .vision-box,
    .values-box,
    .commitment-box{
        padding:25px;
    }

    .mission-box h3,
    .vision-box h3,
    .values-box h3,
    .commitment-box h3{
        font-size:1.2rem;
    }

    .value-item{
        padding:18px;
    }
}




/* =========================================
   SECURITY COMPANY IN LONDON PAGE
========================================= */

.security-intro-box,
.security-services-box,
.security-commitment-box{
    position:relative;
    overflow:hidden;

    background:#ffffff;

    padding:40px;

    border-radius:20px;

    margin:35px 0;

    border-left:5px solid #990b2c;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;
}

.security-intro-box:hover,
.security-services-box:hover{
    transform:translateY(-5px);

    box-shadow:
        0 20px 45px rgba(153,11,44,.12);
}

/* Decorative Glow */

.security-intro-box::before,
.security-services-box::before{
    content:'';
    position:absolute;

    top:0;
    right:0;

    width:180px;
    height:180px;

    background:
        radial-gradient(
            rgba(153,11,44,.08),
            transparent 70%
        );

    pointer-events:none;
}

/* =========================================
   HEADINGS
========================================= */

.security-intro-box h3,
.security-services-box h3,
.security-commitment-box h3{
    color:#990b2c;

    font-size:1.5rem;

    font-weight:700;

    margin-bottom:20px;
}

.security-intro-box i,
.security-services-box i,
.security-commitment-box i{
    color:#990b2c;
    margin-right:10px;
}

/* =========================================
   PARAGRAPHS
========================================= */

.security-intro-box p,
.security-services-box p{
    color:#666;

    font-size:.97rem;

    line-height:1.9;

    margin-bottom:18px;
}

/* =========================================
   FEATURE SECTION
========================================= */

.service-highlight{
    margin:40px 0;
}

.security-feature-box{
    position:relative;
    overflow:hidden;

    background:#ffffff;

    padding:30px;

    border-radius:18px;

    text-align:center;

    height:100%;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:.4s ease;
}

.security-feature-box::before{
    content:'';
    position:absolute;

    left:0;
    bottom:-100%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            135deg,
            #990b2c,
            #2b2024
        );

    transition:.45s ease;
}

.security-feature-box:hover::before{
    bottom:0;
}

.security-feature-box i,
.security-feature-box h4,
.security-feature-box p{
    position:relative;
    z-index:2;
}

.security-feature-box i{
    font-size:42px;

    color:#990b2c;

    margin-bottom:18px;

    transition:.4s ease;
}

.security-feature-box h4{
    font-size:1.1rem;

    font-weight:700;

    color:#111;

    margin-bottom:12px;

    transition:.4s ease;
}

.security-feature-box p{
    font-size:.95rem;

    color:#666;

    line-height:1.8;

    margin-bottom:0;

    transition:.4s ease;
}

.security-feature-box:hover{
    transform:translateY(-10px);

    box-shadow:
        0 20px 40px rgba(153,11,44,.20);
}

.security-feature-box:hover i,
.security-feature-box:hover h4,
.security-feature-box:hover p{
    color:#ffffff;
}

/* =========================================
   SERVICES TAGS
========================================= */

.security-services-grid{
    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:20px;

    padding:20px;

    border-radius:20px;

    background:#fafafa;

    border:1px solid rgba(153,11,44,.12);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.8),
        0 10px 30px rgba(0,0,0,.05);
}

.security-services-grid span{
    background:
        linear-gradient(
            135deg,
            #b0002a,
            #7a001b
        );

    color:#ffffff;

    padding:12px 22px;

    border-radius:50px;

    font-size:.92rem;

    font-weight:600;

    white-space:nowrap;

    box-shadow:
        0 8px 20px rgba(153,11,44,.25);

    transition:.35s ease;
}

.security-services-grid span:hover{
    background:
        linear-gradient(
            135deg,
            #111,
            #2b2024
        );

    transform:translateY(-4px);
}

/* =========================================
   COMMITMENT BOX
========================================= */

.security-commitment-box{
    background:
        linear-gradient(
            135deg,
            #b0002a 0%,
            #7a001b 50%,
            #2b2024 100%
        );

    border-left:none;

    box-shadow:
        0 20px 50px rgba(153,11,44,.25);
}

.security-commitment-box h3,
.security-commitment-box p,
.security-commitment-box i{
    color:#ffffff;
}

.security-commitment-box p{
    font-size:1rem;
    line-height:1.9;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .security-intro-box,
    .security-services-box,
    .security-commitment-box{
        padding:25px;
    }

    .security-feature-box{
        padding:22px;
    }

    .security-feature-box i{
        font-size:34px;
    }

    .security-feature-box h4{
        font-size:1rem;
    }

    .security-services-grid{
        gap:10px;
    }

    .security-services-grid span{
        font-size:.85rem;
        padding:10px 16px;
    }
}





/* =========================================
   CORPORATE SOCIAL RESPONSIBILITY PAGE
========================================= */

.csr-page{
    padding:80px 0;
}

.csr-section{
    background:#fff;
    padding:35px;
    margin-bottom:30px;
    border-radius:15px;
    border-left:5px solid #990b2c;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.csr-section h2{
    font-size:2rem;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
}

.csr-section h3{
    font-size:1.5rem;
    font-weight:700;
    color:#990b2c;
    margin-bottom:20px;
}

.csr-section p{
    color:#666;
    line-height:1.9;
    margin-bottom:15px;
}

.csr-list{
    margin-top:20px;
    padding-left:20px;
}

.csr-list li{
    color:#555;
    margin-bottom:10px;
}

/* CARDS */
/* =========================================
   CSR CARDS
========================================= */

.csr-card{
    position:relative;
    overflow:hidden;

    background:#ffffff;

    padding:30px;

    border-radius:18px;

    text-align:center;

    height:100%;

    margin-bottom:30px;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:.4s ease;
}

.csr-card::before{
    content:'';
    position:absolute;

    left:0;
    bottom:-100%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            135deg,
            #990b2c,
            #2b2024
        );

    transition:.45s ease;
}

.csr-card:hover::before{
    bottom:0;
}

.csr-card i,
.csr-card h4,
.csr-card p{
    position:relative;
    z-index:2;
}

.csr-card i{
    font-size:42px;

    color:#990b2c;

    margin-bottom:18px;

    transition:.4s ease;
}

.csr-card h4{
    font-size:1.1rem;

    font-weight:700;

    color:#111;

    margin-bottom:12px;

    transition:.4s ease;
}

.csr-card p{
    font-size:.95rem;

    color:#666;

    line-height:1.8;

    margin-bottom:0;

    transition:.4s ease;
}

.csr-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 20px 40px rgba(153,11,44,.20);
}

.csr-card:hover i,
.csr-card:hover h4,
.csr-card:hover p{
    color:#ffffff;
}
/* COMMITMENT */

.csr-commitment{
    background:linear-gradient(
        135deg,
        #990b2c,
        #2b2024
    );
    padding:40px;
    border-radius:15px;
    text-align:center;
}

.csr-commitment h3{
    color:#fff;
    margin-bottom:20px;
    font-size:1.5rem;
}

.csr-commitment p{
    color:#fff;
    line-height:1.9;
    margin:0;
}
.csr-page .row{
    margin-bottom:30px !important;
}
.inner-content .row{
    margin-bottom:30px !important;
}
/* MOBILE */

@media (max-width:768px){

    .csr-section{
        padding:25px;
    }

    .csr-commitment{
        padding:25px;
    }

    .csr-card{
        margin-bottom:20px;
    }

    .csr-section h2{
        font-size:1.5rem;
    }

    .csr-section h3{
        font-size:1.2rem;
    }
}




/* =========================================
   ENVIRONMENTAL POLICY PAGE
========================================= */

.environmental-policy{
    padding:50px 0;
}

.env-intro-box,
.env-section{
    background:#fff;
    padding:35px;
    margin-bottom:30px;
    border-radius:18px;
    border-left:5px solid #990b2c;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-top: 30px;
}

.env-intro-box h3,
.env-section h3{
    color:#990b2c;
    font-size:1.5rem;
    font-weight:700;
    margin-bottom:20px;
}

.env-intro-box h3 i,
.env-section h3 i{
    margin-right:10px;
}

.env-intro-box p,
.env-section p{
    color:#666;
    line-height:1.9;
}

.env-section ul{
    margin:0;
    padding-left:20px;
}

.env-section ul li{
    margin-bottom:12px;
    color:#555;
    line-height:1.8;
}

/* =========================================
   ENVIRONMENT CARDS
========================================= */

.env-card{
    position:relative;
    overflow:hidden;

    background:#fff;

    padding:30px;

    border-radius:18px;

    text-align:center;

    height:100%;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s ease;
}

.env-card::before{
    content:'';
    position:absolute;
    left:0;
    bottom:-100%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        135deg,
        #990b2c,
        #2b2024
    );

    transition:.4s ease;
}

.env-card:hover::before{
    bottom:0;
}

.env-card i,
.env-card h4,
.env-card p{
    position:relative;
    z-index:2;
}

.env-card i{
    font-size:42px;
    color:#990b2c;
    margin-bottom:15px;
}

.env-card h4{
    font-size:1.2rem;
    font-weight:700;
    margin-bottom:12px;
}

.env-card p{
    color:#666;
    line-height:1.8;
}

.env-card:hover{
    transform:translateY(-8px);
}

.env-card:hover i,
.env-card:hover h4,
.env-card:hover p{
    color:#fff;
}

/* =========================================
   COMMITMENT
========================================= */

.env-commitment{
    background:
    linear-gradient(
        135deg,
        #990b2c,
        #2b2024
    );

    padding:45px;

    border-radius:20px;

    text-align:center;

    margin-top:30px;
}

.env-commitment h3{
    color:#fff;
    margin-bottom:20px;
    font-size:1.5rem;
}

.env-commitment p{
    color:#fff;
    line-height:1.9;
    max-width:900px;
    margin:auto;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .env-intro-box,
    .env-section{
        padding:25px;
    }

    .env-commitment{
        padding:30px;
    }

    .env-card{
        margin-bottom:20px;
    }
}


/* =========================================
   HEALTH & SAFETY POLICY PAGE
========================================= */

.hs-intro-box,
.hs-policy-box{
    background:#fff;
    padding:35px;
    border-radius:18px;
    margin-bottom:30px;
    border-left:5px solid #990b2c;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;
    margin-top: 10px;
}

.hs-intro-box:hover,
.hs-policy-box:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(153,11,44,.12);
}

.hs-policy-box h3,
.hs-commitment-box h3{
    color:#990b2c;
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.hs-policy-box h3 i,
.hs-commitment-box h3 i{
    margin-right:12px;
}

.hs-intro-box p,
.hs-policy-box p{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

.hs-policy-box ul{
    margin-top:20px;
    padding-left:20px;
}

.hs-policy-box ul li{
    margin-bottom:12px;
    color:#555;
    line-height:1.8;
}

.hs-policy-box ul li::marker{
    color:#990b2c;
}

/* Commitment Box */

.hs-commitment-box{
    background:
    linear-gradient(
        135deg,
        #990b2c,
        #2b2024
    );

    color:#fff;

    padding:40px;

    border-radius:20px;

    margin-top:40px;

    box-shadow:
    0 20px 50px rgba(153,11,44,.25);
}

.hs-commitment-box h3,
.hs-commitment-box p{
    color:#fff;
}

.hs-commitment-box p{
    font-size:17px;
    line-height:1.9;
}

/* Mobile */

@media(max-width:768px){

    .hs-intro-box,
    .hs-policy-box,
    .hs-commitment-box{
        padding:25px;
    }

    .hs-policy-box h3,
    .hs-commitment-box h3{
        font-size:24px;
    }
}


/* =========================================
   QUALITY POLICY PAGE
========================================= */

.quality-intro-box,
.quality-policy-box{
    background:#fff;
    padding:35px;
    margin-bottom:30px;
    border-radius:18px;
    border-left:5px solid #990b2c;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    margin-top: 30px;
}

.quality-intro-box h3,
.quality-policy-box h3,
.quality-commitment-box h3{
    color:#990b2c;
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.quality-intro-box h3 i,
.quality-policy-box h3 i,
.quality-commitment-box h3 i{
    margin-right:10px;
}

.quality-intro-box p,
.quality-policy-box p{
    color:#666;
    line-height:1.9;
}

.quality-policy-box ul{
    padding-left:20px;
}

.quality-policy-box li{
    margin-bottom:12px;
    color:#555;
}

.quality-policy-box li::marker{
    color:#990b2c;
}

/* COMMITMENT */

.quality-commitment-box{
    background:linear-gradient(135deg,#990b2c,#2b2024);
    color:#fff;
    padding:40px;
    border-radius:20px;
    margin-top:20px;
    margin-bottom: 20px;
}

.quality-commitment-box h3,
.quality-commitment-box p{
    color:#fff;
}

/* =========================================
   QUALITY POLICY CARDS
========================================= */

.quality-card{
    position:relative;
    overflow:hidden;

    background:#ffffff;

    padding:30px;

    border-radius:18px;

    text-align:center;

    height:100%;

    margin-bottom:30px;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:.4s ease;
}

.quality-card::before{
    content:'';
    position:absolute;

    left:0;
    bottom:-100%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            135deg,
            #990b2c,
            #2b2024
        );

    transition:.45s ease;
}

.quality-card:hover::before{
    bottom:0;
}

.quality-card i,
.quality-card h4,
.quality-card p{
    position:relative;
    z-index:2;
}

.quality-card i{
    font-size:42px;

    color:#990b2c;

    margin-bottom:18px;

    transition:.4s ease;
}

.quality-card h4{
    font-size:1.1rem;

    font-weight:700;

    color:#111;

    margin-bottom:12px;

    transition:.4s ease;
}

.quality-card p{
    font-size:.95rem;

    color:#666;

    line-height:1.8;

    margin-bottom:0;

    transition:.4s ease;
}

.quality-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 20px 40px rgba(153,11,44,.20);
}

.quality-card:hover i,
.quality-card:hover h4,
.quality-card:hover p{
    color:#ffffff;
}


/* =========================================
   EQUALITY & DIVERSITY POLICY PAGE
========================================= */

.equality-intro-box,
.equality-policy-box{
    position:relative;
    overflow:hidden;

    background:#ffffff;

    padding:40px;

    margin-bottom:30px;
    margin-top: 30px;

    border-radius:20px;

    border-left:5px solid #990b2c;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;
}

.equality-intro-box:hover,
.equality-policy-box:hover{
    transform:translateY(-5px);

    box-shadow:
        0 20px 45px rgba(153,11,44,.12);
}

.equality-intro-box::before,
.equality-policy-box::before{
    content:'';

    position:absolute;

    top:0;
    right:0;

    width:180px;
    height:180px;

    background:
        radial-gradient(
            rgba(153,11,44,.08),
            transparent 70%
        );

    pointer-events:none;
}

/* =========================================
   HEADINGS
========================================= */

.equality-intro-box h3,
.equality-policy-box h3,
.equality-commitment-box h3{
    color:#990b2c;

    font-size:1.5rem;

    font-weight:700;

    margin-bottom:20px;
}

.equality-intro-box h3 i,
.equality-policy-box h3 i,
.equality-commitment-box h3 i{
    margin-right:12px;
}

/* =========================================
   TEXT
========================================= */

.equality-intro-box p,
.equality-policy-box p{
    color:#666;

    font-size:.97rem;

    line-height:1.9;

    margin-bottom:18px;
}

/* =========================================
   LISTS
========================================= */

.equality-policy-box ul{
    margin-top:20px;

    padding-left:20px;
}

.equality-policy-box ul li{
    color:#555;

    margin-bottom:12px;

    line-height:1.8;
}

.equality-policy-box ul li::marker{
    color:#990b2c;
}

/* =========================================
   EQUALITY CARDS
========================================= */

.equality-card{
    position:relative;

    overflow:hidden;

    background:#ffffff;

    padding:30px;

    border-radius:18px;

    text-align:center;

    height:100%;

    margin-bottom:30px;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:.4s ease;
}

.equality-card::before{
    content:'';

    position:absolute;

    left:0;
    bottom:-100%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            135deg,
            #990b2c,
            #2b2024
        );

    transition:.45s ease;
}

.equality-card:hover::before{
    bottom:0;
}

.equality-card i,
.equality-card h4,
.equality-card p{
    position:relative;

    z-index:2;
}

.equality-card i{
    font-size:42px;

    color:#990b2c;

    margin-bottom:18px;

    transition:.4s ease;
}

.equality-card h4{
    font-size:1.1rem;

    font-weight:700;

    color:#111;

    margin-bottom:12px;

    transition:.4s ease;
}

.equality-card p{
    font-size:.95rem;

    color:#666;

    line-height:1.8;

    margin-bottom:0;

    transition:.4s ease;
}

.equality-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 20px 40px rgba(153,11,44,.20);
}

.equality-card:hover i,
.equality-card:hover h4,
.equality-card:hover p{
    color:#ffffff;
}

/* =========================================
   COMMITMENT BOX
========================================= */

.equality-commitment-box{
    background:
        linear-gradient(
            135deg,
            #b0002a 0%,
            #7a001b 50%,
            #2b2024 100%
        );

    padding:45px;

    margin-top:20px;

    border-radius:20px;

    box-shadow:
        0 20px 50px rgba(153,11,44,.25);
}

.equality-commitment-box h3,
.equality-commitment-box p{
    color:#ffffff;
}

.equality-commitment-box p{
    font-size:1rem;

    line-height:1.9;

    margin-bottom:0;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .equality-intro-box,
    .equality-policy-box,
    .equality-commitment-box{
        padding:25px;
    }

    .equality-card{
        padding:22px;
    }

    .equality-card i{
        font-size:34px;
    }

    .equality-card h4{
        font-size:1rem;
    }

    .equality-intro-box h3,
    .equality-policy-box h3,
    .equality-commitment-box h3{
        font-size:1.25rem;
    }
}


/* =========================================
   WORKPLACE PENSION POLICY PAGE
========================================= */

.pension-intro-box,
.pension-policy-box,
.pension-commitment-box{
    position:relative;
    overflow:hidden;

    background:#ffffff;

    padding:40px;

    margin-top:35px;
    margin-bottom:35px;

    border-radius:20px;

    border-left:5px solid #990b2c;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;
}

.pension-intro-box:hover,
.pension-policy-box:hover{
    transform:translateY(-5px);

    box-shadow:
        0 20px 45px rgba(153,11,44,.12);
}

.pension-intro-box::before,
.pension-policy-box::before{
    content:'';

    position:absolute;

    top:0;
    right:0;

    width:180px;
    height:180px;

    background:
        radial-gradient(
            rgba(153,11,44,.08),
            transparent 70%
        );

    pointer-events:none;
}

/* =========================================
   HEADINGS
========================================= */

.pension-intro-box h3,
.pension-policy-box h3,
.pension-commitment-box h3{
    color:#990b2c;

    font-size:1.5rem;

    font-weight:700;

    margin-bottom:20px;
}

.pension-intro-box i,
.pension-policy-box i,
.pension-commitment-box i{
    color:#990b2c;

    margin-right:10px;
}

/* =========================================
   PARAGRAPHS
========================================= */

.pension-intro-box p,
.pension-policy-box p{
    color:#666;

    font-size:.97rem;

    line-height:1.9;

    margin-bottom:18px;
}

/* =========================================
   LISTS
========================================= */

.pension-policy-box ul{
    margin-top:15px;
    padding-left:20px;
}

.pension-policy-box ul li{
    color:#666;

    line-height:1.9;

    margin-bottom:12px;
}

/* =========================================
   PENSION CARDS
========================================= */

.pension-card{
    position:relative;
    overflow:hidden;

    background:#ffffff;

    padding:30px;

    border-radius:18px;

    text-align:center;

    height:100%;

    margin-bottom:30px;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:.4s ease;
}

.pension-card::before{
    content:'';

    position:absolute;

    left:0;
    bottom:-100%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            135deg,
            #990b2c,
            #2b2024
        );

    transition:.45s ease;
}

.pension-card:hover::before{
    bottom:0;
}

.pension-card i,
.pension-card h4,
.pension-card p{
    position:relative;
    z-index:2;
}

.pension-card i{
    font-size:42px;

    color:#990b2c;

    margin-bottom:18px;

    transition:.4s ease;
}

.pension-card h4{
    font-size:1.1rem;

    font-weight:700;

    color:#111;

    margin-bottom:12px;

    transition:.4s ease;
}

.pension-card p{
    font-size:.95rem;

    color:#666;

    line-height:1.8;

    margin-bottom:0;

    transition:.4s ease;
}

.pension-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 20px 40px rgba(153,11,44,.20);
}

.pension-card:hover i,
.pension-card:hover h4,
.pension-card:hover p{
    color:#ffffff;
}

/* =========================================
   COMMITMENT BOX
========================================= */

.pension-commitment-box{
    background:
        linear-gradient(
            135deg,
            #b0002a 0%,
            #7a001b 50%,
            #2b2024 100%
        );

    border-left:none;

    box-shadow:
        0 20px 50px rgba(153,11,44,.25);
}

.pension-commitment-box h3,
.pension-commitment-box p,
.pension-commitment-box i{
    color:#ffffff;
}

.pension-commitment-box p{
    font-size:1rem;

    line-height:1.9;

    margin-bottom:0;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .pension-intro-box,
    .pension-policy-box,
    .pension-commitment-box{
        padding:25px;
    }

    .pension-card{
        padding:25px;
    }

    .pension-card i{
        font-size:34px;
    }

    .pension-card h4{
        font-size:1rem;
    }
}




/* =========================================
   WORKPLACE DRUG & ALCOHOL POLICY PAGE
========================================= */

.drug-intro-box,
.drug-policy-box,
.drug-commitment-box{
    position:relative;
    overflow:hidden;

    background:#ffffff;

    padding:40px;

    margin-top:35px;
    margin-bottom:35px;

    border-radius:20px;

    border-left:5px solid #990b2c;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;
}

.drug-intro-box:hover,
.drug-policy-box:hover{
    transform:translateY(-5px);

    box-shadow:
        0 20px 45px rgba(153,11,44,.12);
}

.drug-intro-box::before,
.drug-policy-box::before{
    content:'';

    position:absolute;

    top:0;
    right:0;

    width:180px;
    height:180px;

    background:
        radial-gradient(
            rgba(153,11,44,.08),
            transparent 70%
        );

    pointer-events:none;
}

/* =========================================
   SECTION HEADINGS
========================================= */

.drug-intro-box h3,
.drug-policy-box h3,
.drug-commitment-box h3{
    color:#990b2c;

    font-size:1.5rem;

    font-weight:700;

    margin-bottom:20px;
}

.drug-intro-box i,
.drug-policy-box i,
.drug-commitment-box i{
    color:#990b2c;

    margin-right:10px;
}

/* =========================================
   PARAGRAPHS
========================================= */

.drug-intro-box p,
.drug-policy-box p{
    color:#666;

    font-size:.97rem;

    line-height:1.9;

    margin-bottom:18px;
}

/* =========================================
   LISTS
========================================= */

.drug-policy-box ul{
    margin-top:15px;
    padding-left:20px;
}

.drug-policy-box ul li{
    color:#666;

    line-height:1.9;

    margin-bottom:12px;
}

/* =========================================
   POLICY CARDS
========================================= */

.drug-card{
    position:relative;
    overflow:hidden;

    background:#ffffff;

    padding:30px;

    border-radius:18px;

    text-align:center;

    height:100%;

    margin-bottom:30px;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:.4s ease;
}

.drug-card::before{
    content:'';

    position:absolute;

    left:0;
    bottom:-100%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            135deg,
            #990b2c,
            #2b2024
        );

    transition:.45s ease;
}

.drug-card:hover::before{
    bottom:0;
}

.drug-card i,
.drug-card h4,
.drug-card p{
    position:relative;
    z-index:2;
}

.drug-card i{
    font-size:42px;

    color:#990b2c;

    margin-bottom:18px;

    transition:.4s ease;
}

.drug-card h4{
    font-size:1.1rem;

    font-weight:700;

    color:#111;

    margin-bottom:12px;

    transition:.4s ease;
}

.drug-card p{
    font-size:.95rem;

    color:#666;

    line-height:1.8;

    margin-bottom:0;

    transition:.4s ease;
}

.drug-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 20px 40px rgba(153,11,44,.20);
}

.drug-card:hover i,
.drug-card:hover h4,
.drug-card:hover p{
    color:#ffffff;
}

/* =========================================
   COMMITMENT BOX
========================================= */

.drug-commitment-box{
    background:
        linear-gradient(
            135deg,
            #b0002a 0%,
            #7a001b 50%,
            #2b2024 100%
        );

    border-left:none;

    box-shadow:
        0 20px 50px rgba(153,11,44,.25);
}

.drug-commitment-box h3,
.drug-commitment-box p,
.drug-commitment-box i{
    color:#ffffff;
}

.drug-commitment-box p{
    font-size:1rem;

    line-height:1.9;

    margin-bottom:0;
}

/* =========================================
   IMPORTANT NOTICE BOX
========================================= */

.drug-notice{
    background:#fff8f8;

    border-left:5px solid #990b2c;

    padding:25px;

    margin:30px 0;

    border-radius:12px;
}

.drug-notice h4{
    color:#990b2c;

    font-size:1.2rem;

    font-weight:700;

    margin-bottom:15px;
}

.drug-notice p{
    margin-bottom:0;

    color:#666;

    line-height:1.8;
}

/* =========================================
   SUPPORT LINKS
========================================= */

.support-links{
    display:flex;

    flex-wrap:wrap;

    gap:20px;

    margin-top:20px;
}

.support-item{
    flex:1;

    min-width:250px;

    background:#fff;

    padding:25px;

    border-radius:15px;

    border-top:4px solid #990b2c;

    box-shadow:
        0 10px 25px rgba(0,0,0,.06);

    transition:.3s ease;
}

.support-item:hover{
    transform:translateY(-5px);

    box-shadow:
        0 15px 35px rgba(153,11,44,.15);
}

.support-item h5{
    color:#990b2c;

    font-weight:700;

    margin-bottom:10px;
}

.support-item p{
    color:#666;

    margin-bottom:8px;
}

.support-item a{
    color:#990b2c;

    text-decoration:none;

    font-weight:600;
}

.support-item a:hover{
    text-decoration:underline;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .drug-intro-box,
    .drug-policy-box,
    .drug-commitment-box{
        padding:25px;
    }

    .drug-card{
        padding:25px;
    }

    .drug-card i{
        font-size:34px;
    }

    .drug-card h4{
        font-size:1rem;
    }

    .support-links{
        flex-direction:column;
    }
}


/* =========================================
   ANTI-MODERN SLAVERY POLICY PAGE
========================================= */

.slavery-intro-box,
.slavery-policy-box,
.slavery-commitment-box{
    position:relative;
    overflow:hidden;

    background:#ffffff;

    padding:40px;

    margin-top:35px;
    margin-bottom:35px;

    border-radius:20px;

    border-left:5px solid #990b2c;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;
}

.slavery-intro-box:hover,
.slavery-policy-box:hover{
    transform:translateY(-5px);

    box-shadow:
        0 20px 45px rgba(153,11,44,.12);
}

.slavery-intro-box::before,
.slavery-policy-box::before{
    content:'';

    position:absolute;

    top:0;
    right:0;

    width:180px;
    height:180px;

    background:
        radial-gradient(
            rgba(153,11,44,.08),
            transparent 70%
        );

    pointer-events:none;
}

/* =========================================
   SECTION HEADINGS
========================================= */

.slavery-intro-box h3,
.slavery-policy-box h3,
.slavery-commitment-box h3{
    color:#990b2c;

    font-size:1.5rem;

    font-weight:700;

    margin-bottom:20px;
}

.slavery-intro-box i,
.slavery-policy-box i,
.slavery-commitment-box i{
    color:#990b2c;

    margin-right:10px;
}

/* =========================================
   PARAGRAPHS
========================================= */

.slavery-intro-box p,
.slavery-policy-box p{
    color:#666;

    font-size:.97rem;

    line-height:1.9;

    margin-bottom:18px;
}

/* =========================================
   LISTS
========================================= */

.slavery-policy-box ul{
    margin-top:15px;
    padding-left:20px;
}

.slavery-policy-box ul li{
    color:#666;

    line-height:1.9;

    margin-bottom:12px;
}

/* =========================================
   MODERN SLAVERY CARDS
========================================= */

.slavery-card{
    position:relative;
    overflow:hidden;

    background:#ffffff;

    padding:30px;

    border-radius:18px;

    text-align:center;

    height:100%;

    margin-bottom:30px;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:.4s ease;
}

.slavery-card::before{
    content:'';

    position:absolute;

    left:0;
    bottom:-100%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            135deg,
            #990b2c,
            #2b2024
        );

    transition:.45s ease;
}

.slavery-card:hover::before{
    bottom:0;
}

.slavery-card i,
.slavery-card h4,
.slavery-card p{
    position:relative;
    z-index:2;
}

.slavery-card i{
    font-size:42px;

    color:#990b2c;

    margin-bottom:18px;

    transition:.4s ease;
}

.slavery-card h4{
    font-size:1.1rem;

    font-weight:700;

    color:#111;

    margin-bottom:12px;

    transition:.4s ease;
}

.slavery-card p{
    font-size:.95rem;

    color:#666;

    line-height:1.8;

    margin-bottom:0;

    transition:.4s ease;
}

.slavery-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 20px 40px rgba(153,11,44,.20);
}

.slavery-card:hover i,
.slavery-card:hover h4,
.slavery-card:hover p{
    color:#ffffff;
}

/* =========================================
   RESPONSIBILITY BOX
========================================= */

.slavery-responsibility{
    background:#fff8f8;

    border-left:5px solid #990b2c;

    padding:25px;

    margin:30px 0;

    border-radius:12px;
}

.slavery-responsibility h4{
    color:#990b2c;

    font-size:1.2rem;

    font-weight:700;

    margin-bottom:15px;
}

.slavery-responsibility p{
    color:#666;

    line-height:1.8;

    margin-bottom:0;
}

/* =========================================
   COMMITMENT SECTION
========================================= */

.slavery-commitment-box{
    background:
        linear-gradient(
            135deg,
            #b0002a 0%,
            #7a001b 50%,
            #2b2024 100%
        );

    border-left:none;

    box-shadow:
        0 20px 50px rgba(153,11,44,.25);
}

.slavery-commitment-box h3,
.slavery-commitment-box p,
.slavery-commitment-box i{
    color:#ffffff;
}

.slavery-commitment-box p{
    font-size:1rem;

    line-height:1.9;

    margin-bottom:0;
}

/* =========================================
   POLICY HIGHLIGHT BOX
========================================= */

.slavery-highlight{
    background:#fafafa;

    padding:30px;

    border-radius:15px;

    margin:30px 0;

    border:1px solid rgba(153,11,44,.10);

    box-shadow:
        0 10px 25px rgba(0,0,0,.05);
}

.slavery-highlight h4{
    color:#990b2c;

    font-size:1.2rem;

    font-weight:700;

    margin-bottom:15px;
}

.slavery-highlight ul{
    margin:0;
    padding-left:20px;
}

.slavery-highlight ul li{
    margin-bottom:10px;

    color:#666;

    line-height:1.8;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .slavery-intro-box,
    .slavery-policy-box,
    .slavery-commitment-box{
        padding:25px;
    }

    .slavery-card{
        padding:25px;
    }

    .slavery-card i{
        font-size:34px;
    }

    .slavery-card h4{
        font-size:1rem;
    }

    .slavery-policy-box ul li{
        font-size:.95rem;
    }
}


/* =========================================
   LONE WORKER POLICY PAGE
========================================= */

.loneworker-intro-box,
.loneworker-policy-box,
.loneworker-commitment-box{
    position:relative;
    overflow:hidden;

    background:#ffffff;

    padding:40px;

    margin-top:35px;
    margin-bottom:35px;

    border-radius:20px;

    border-left:5px solid #990b2c;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;
}

.loneworker-intro-box:hover,
.loneworker-policy-box:hover{
    transform:translateY(-5px);

    box-shadow:
        0 20px 45px rgba(153,11,44,.12);
}

.loneworker-intro-box::before,
.loneworker-policy-box::before{
    content:'';

    position:absolute;

    top:0;
    right:0;

    width:180px;
    height:180px;

    background:
        radial-gradient(
            rgba(153,11,44,.08),
            transparent 70%
        );
}

/* HEADINGS */

.loneworker-intro-box h3,
.loneworker-policy-box h3,
.loneworker-commitment-box h3{
    color:#990b2c;
    font-size:1.5rem;
    font-weight:700;
    margin-bottom:20px;
}

.loneworker-intro-box i,
.loneworker-policy-box i,
.loneworker-commitment-box i{
    color:#990b2c;
    margin-right:10px;
}

/* PARAGRAPHS */

.loneworker-intro-box p,
.loneworker-policy-box p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
}

/* LISTS */

.loneworker-policy-box ul{
    padding-left:20px;
}

.loneworker-policy-box li{
    color:#666;
    line-height:1.9;
    margin-bottom:10px;
}

/* CARDS */

.loneworker-card{
    position:relative;
    overflow:hidden;

    background:#fff;

    padding:30px;

    text-align:center;

    border-radius:18px;

    margin-bottom:30px;

    height:100%;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:.4s ease;
}

.loneworker-card::before{
    content:'';

    position:absolute;

    left:0;
    bottom:-100%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            135deg,
            #990b2c,
            #2b2024
        );

    transition:.45s ease;
}

.loneworker-card:hover::before{
    bottom:0;
}

.loneworker-card i,
.loneworker-card h4,
.loneworker-card p{
    position:relative;
    z-index:2;
}

.loneworker-card i{
    font-size:42px;
    color:#990b2c;
    margin-bottom:18px;
}

.loneworker-card h4{
    font-size:1.1rem;
    font-weight:700;
    margin-bottom:12px;
}

.loneworker-card p{
    color:#666;
    line-height:1.8;
}

.loneworker-card:hover{
    transform:translateY(-10px);
}

.loneworker-card:hover i,
.loneworker-card:hover h4,
.loneworker-card:hover p{
    color:#fff;
}

/* COMMITMENT */

.loneworker-commitment-box{
    background:
        linear-gradient(
            135deg,
            #b0002a,
            #7a001b,
            #2b2024
        );

    border-left:none;
}

.loneworker-commitment-box h3,
.loneworker-commitment-box p,
.loneworker-commitment-box i{
    color:#fff;
}

/* MOBILE */

@media(max-width:768px){

    .loneworker-intro-box,
    .loneworker-policy-box,
    .loneworker-commitment-box{
        padding:25px;
    }

    .loneworker-card{
        padding:25px;
    }

}



/* =========================================
   FAQ PAGE
========================================= */

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

.faq-intro{
    max-width:auto;
    margin-bottom:40px;
    color:#666;
    line-height:1.9;
}

.faq-wrapper{
    max-width:auto;
}

.faq-item{
    background:#fff;
    margin-bottom:20px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    border-left:5px solid #990b2c;
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding:25px 30px;
    text-align:left;
    font-size:18px;
    font-weight:700;
    color:#111;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-question span{
    color:#990b2c;
    font-size:26px;
    font-weight:700;
}

.faq-answer{
    display:none;
    padding:0 30px 25px;
}

.faq-answer p{
    margin:0;
    color:#666;
    line-height:1.9;
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-item.active .faq-question{
    background:#990b2c;
    color:#fff;
}

.faq-item.active .faq-question span{
    color:#fff;
}

@media(max-width:768px){

    .faq-question{
        font-size:16px;
        padding:20px;
    }

    .faq-answer{
        padding:0 20px 20px;
    }

}


/* =========================================
   GALLERY PAGE
========================================= */

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

.gallery-intro{
    max-width:auto;
    color:#666;
    line-height:1.9;
    margin-bottom:40px;
}

.gallery-item{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.5s;
}

.gallery-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(153,11,44,.85),
        rgba(43,32,36,.92)
    );

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    opacity:0;

    transition:.4s;
}

.gallery-overlay i{
    color:#fff;
    font-size:40px;
    margin-bottom:15px;
}

.gallery-overlay h4{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin:0;
}

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

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

@media(max-width:768px){

    .gallery-item img{
        height:250px;
    }

}
/* Gallery Popup */

.gallery-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:99999;
}

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

.gallery-popup img{
    max-width:90%;
    max-height:90vh;
    border-radius:10px;
}

.gallery-close{
    position:absolute;
    top:25px;
    right:30px;
    width:50px;
    height:50px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    cursor:pointer;
    transition:.3s;
}

.gallery-close:hover{
    background:#a30d2d;
}


.gallery-close{
    position:absolute;
    top:20px;
    right:20px;
    z-index:999999 !important;
}
@media (max-width:768px){

    .gallery-close{
        position:fixed !important;
        top:15px !important;
        right:15px !important;

        width:45px !important;
        height:45px !important;

        font-size:22px !important;

        z-index:999999 !important;

        background:rgba(0,0,0,.7) !important;
        color:#fff !important;
        border-radius:50% !important;
    }
    

}

@media (max-width:768px){

    .gallery-popup{
        display:none !important;
    }
   

}
@media (max-width:768px){
    .gallery-overlay{
        display:none !important;
    }
}
/* =========================================
   PRIVACY POLICY PAGE
========================================= */

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

.privacy-policy-section h2{
    font-size:1.5rem;
    margin-bottom:30px;
}

.privacy-card{
    background:#fff;
    padding:35px;
    margin-bottom:30px;
    border-radius:15px;
    border-left:5px solid #990b2c;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s ease;
}

.privacy-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(153,11,44,.10);
}

.privacy-card h3{
    color:#990b2c;
    font-size:1.5rem;
    font-weight:700;
    margin-bottom:20px;
}

.privacy-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:15px;
}

.privacy-card ul{
    padding-left:20px;
    margin:0;
}

.privacy-card ul li{
    color:#666;
    line-height:1.9;
    margin-bottom:10px;
}

.privacy-card ul li::marker{
    color:#990b2c;
}

@media(max-width:768px){

    .privacy-policy-section{
        padding:60px 0;
    }

    .privacy-card{
        padding:25px;
    }

    .privacy-card h3{
        font-size:1.2rem;
    }

}


/* =========================================
   FEEDBACK PAGE
========================================= */

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

.feedback-intro{
    max-width:850px;
    color:#666;
    line-height:1.9;
    margin-bottom:40px;
}

.feedback-info-card{
    background:
    linear-gradient(
        135deg,
        #990b2c,
        #2b2024
    );

    color:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:
    0 20px 40px rgba(153,11,44,.20);

    height:100%;
}

.feedback-info-card i.fa-comments{
    font-size:60px;
    margin-bottom:20px;
}

.feedback-info-card h3{
    font-size:28px;
    margin-bottom:15px;
}

.feedback-info-card p{
    line-height:1.9;
    color:#fff;
}

.feedback-benefits{
    margin-top:30px;
}

.feedback-benefits div{
    margin-bottom:15px;
    font-weight:500;
}

.feedback-benefits i{
    margin-right:10px;
}

.feedback-form-card{
    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);
}

.feedback-form-card label{
    font-weight:600;
    margin-bottom:8px;
    display:block;
}

.feedback-form-card .form-control{
    width:100%;

    padding:14px 16px;

    border:1px solid #ddd;

    border-radius:10px;

    transition:.3s;
}

.feedback-form-card .form-control:focus{
    outline:none;

    border-color:#990b2c;

    box-shadow:
    0 0 0 3px rgba(153,11,44,.15);
}

.feedback-btn{
    background:#990b2c;

    color:#fff;

    border:none;

    padding:14px 35px;

    border-radius:50px;

    margin-top:25px;

    font-weight:700;

    transition:.3s;
}

.feedback-btn:hover{
    background:#111;

    transform:translateY(-3px);
}

@media(max-width:991px){

    .feedback-info-card{
        margin-bottom:30px;
    }

    .feedback-form-card{
        padding:25px;
    }

}


/* =========================================
   VECTROX SERVICES PAGE ONLY
========================================= */

.vectrox-services-page{
    background:#f8f9fb;
}

/* Banner */

.vectrox-services-page .vs-banner{
    background:#000;
    padding:100px 0;
    text-align:center;
    position:relative;
}

.vectrox-services-page .vs-banner h1{
    color:#fff;
    font-size:2rem;
    font-weight:700;
}

/* Breadcrumb */

.vectrox-services-page .vs-breadcrumb{
    display:flex;
    justify-content:center;
    gap:8px;
}

/* Section Tag */

.vectrox-services-page .vs-tag{
    display:inline-block;
    background:#990b2c;
    color:#fff;
    padding:10px 18px;
}

/* Intro Card */

.vectrox-services-page .vs-intro-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    border-left:5px solid #990b2c;
}

/* Service Cards */

.vectrox-services-page .vs-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
}

.vectrox-services-page .vs-card i{
    color:#990b2c;
    font-size:42px;
}

/* Why Choose */

.vectrox-services-page .vs-why-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
}

/* CTA */

.vectrox-services-page .vs-cta{
    background:
    linear-gradient(
        135deg,
        #990b2c,
        #2b2024
    );

    color:#fff;
    border-radius:20px;
}




/* =========================================
   VECTROX SERVICES PAGE
   Unique Classes - No Conflict
========================================= */

.vx-services-banner{
    background:#000;
    padding:100px 0;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.vx-services-banner::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(153,11,44,.18),
        transparent 60%
    );
}

.vx-services-banner .container{
    position:relative;
    z-index:2;
}

.vx-services-banner h1{
    color:#fff;
    font-size:2rem;
    font-weight:700;
    margin-bottom:15px;
}

.vx-services-breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    color:#fff;
}

.vx-services-breadcrumb a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.vx-services-breadcrumb a:hover{
    color:#990b2c;
}

.vx-services-breadcrumb span:last-child{
    color:#990b2c;
}

/* =========================================
   MAIN SECTION
========================================= */

.vx-services-page{
    padding:80px 0;
    background:#f8f9fb;
}

.vx-services-tag{
    display:inline-block;

    background:#990b2c;
    color:#fff;

    padding:10px 20px;

    font-size:11px;
    font-weight:700;

    letter-spacing:3px;

    margin-bottom:25px;

    border-radius:4px;
}

.vx-services-title{
    font-size:2rem;
    font-weight:700;
    color:#111;
    margin-bottom:35px;
}

/* =========================================
   INTRO BOX
========================================= */

.vx-services-intro{
    position:relative;
    overflow:hidden;

    background:#fff;

    padding:40px;

    border-radius:20px;

    margin-bottom:50px;

    border-left:5px solid #990b2c;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;
}

.vx-services-intro:hover{
    transform:translateY(-5px);

    box-shadow:
        0 20px 50px rgba(153,11,44,.12);
}

.vx-services-intro::before{
    content:'';

    position:absolute;

    top:0;
    right:0;

    width:180px;
    height:180px;

    background:
    radial-gradient(
        rgba(153,11,44,.08),
        transparent 70%
    );
}

.vx-services-intro h3{
    color:#990b2c;
    font-size:1.5rem;
    font-weight:700;
    margin-bottom:20px;
}

.vx-services-intro h3 i{
    margin-right:10px;
}

.vx-services-intro p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
}

.vx-services-intro p:last-child{
    margin-bottom:0;
}

/* =========================================
   SERVICE CARDS
========================================= */

.vx-service-card{
    position:relative;
    overflow:hidden;

    background:#fff;

    padding:35px 25px;

    border-radius:18px;

    text-align:center;

    height:100%;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:.4s ease;
}

.vx-service-card::before{
    content:'';

    position:absolute;

    left:0;
    bottom:-100%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        135deg,
        #990b2c,
        #2b2024
    );

    transition:.45s ease;
}

.vx-service-card:hover::before{
    bottom:0;
}

.vx-service-card i,
.vx-service-card h4,
.vx-service-card p{
    position:relative;
    z-index:2;
}

.vx-service-card i{
    font-size:42px;
    color:#990b2c;
    margin-bottom:20px;
    transition:.4s ease;
}

.vx-service-card h4{
    font-size:1rem;
    font-weight:700;
    color:white;
    margin-bottom:15px;
    transition:.4s ease;
}

.vx-service-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:0;
    transition:.4s ease;
}

.vx-service-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 20px 45px rgba(153,11,44,.22);
}

.vx-service-card:hover i,
.vx-service-card:hover h4,
.vx-service-card:hover p{
    color:#fff;
}

/* =========================================
   BENEFITS BOX
========================================= */

.vx-services-benefits{
    background:#fff;

    padding:40px;

    border-radius:20px;

    margin-top:60px;
    margin-bottom:50px;

    border-left:5px solid #990b2c;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);
}

.vx-services-benefits h3{
    color:#990b2c;
    font-size:1.5rem;
    font-weight:700;
    margin-bottom:25px;
}

.vx-services-benefits h3 i{
    margin-right:10px;
}

.vx-services-benefits ul{
    margin:0;
    padding:0;
    list-style:none;
}

.vx-services-benefits li{
    position:relative;

    padding-left:28px;
    margin-bottom:15px;

    color:#555;
    font-weight:500;
}

.vx-services-benefits li::before{
    content:'✓';

    position:absolute;

    left:0;
    top:0;

    color:#990b2c;
    font-weight:700;
}

/* =========================================
   CTA SECTION
========================================= */

.vx-services-cta{
    text-align:center;

    padding:60px 40px;

    border-radius:20px;

    background:
    linear-gradient(
        135deg,
        #990b2c,
        #2b2024
    );

    box-shadow:
        0 20px 50px rgba(153,11,44,.25);
}

.vx-services-cta h3{
    color:#fff;
    font-size:1.5rem;
    font-weight:700;
    margin-bottom:20px;
}

.vx-services-cta p{
    color:rgba(255,255,255,.92);
    max-width:750px;
    margin:0 auto 30px;
    line-height:1.9;
}

.vx-services-cta .btn-main{
    display:inline-block;

    background:#fff;
    color:#990b2c;

    padding:14px 35px;

    border-radius:50px;

    font-weight:700;
    text-decoration:none;

    transition:.35s ease;
}

.vx-services-cta .btn-main:hover{
    background:#111;
    color:#fff;

    transform:translateY(-3px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .vx-services-banner h1{
        font-size:2rem;
    }

    .vx-services-title{
        font-size:2rem;
    }
}

@media(max-width:768px){

    .vx-services-banner{
        padding:70px 0;
    }

    .vx-services-banner h1{
        font-size:2rem;
    }

    .vx-services-page{
        padding:60px 0;
    }

    .vx-services-title{
        font-size:1.7rem;
    }

    .vx-services-intro,
    .vx-services-benefits,
    .vx-services-cta{
        padding:25px;
    }

    .vx-service-card{
        padding:25px;
    }

    .vx-service-card i{
        font-size:34px;
    }

    .vx-services-cta h3{
        font-size:1.5rem;
    }

    .vx-services-tag{
        letter-spacing:2px;
        font-size:10px;
    }
}


/* =========================================
   VECTROX CORPORATE SECURITY PAGE
   CSS PART 1
   HERO + QUOTE FORM + STATS + INTRO
========================================= */

/* =========================================
   HERO SECTION
========================================= */

.vx-corporate-hero{
    position:relative;
    overflow:hidden;

    padding:120px 0;

    background:
    linear-gradient(
        135deg,
        #111 0%,
        #1a1a1a 50%,
        #2b2024 100%
    );
}

.vx-corporate-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.60),
        rgba(0,0,0,.60)
    );
}

.vx-corporate-hero .container{
    position:relative;
    z-index:2;
}

/* =========================================
   HERO CONTENT
========================================= */

.vx-corporate-tag{
    display:inline-block;

    background:#990b2c;

    color:#fff;

    padding:10px 20px;

    border-radius:50px;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:25px;
}

.vx-corporate-content h1{
    color:#fff;

    font-size:2rem;

    font-weight:700;

    line-height:1.2;

    margin-bottom:25px;
}

.vx-corporate-content p{
    color:rgba(255,255,255,.85);

    font-size:1rem;

    line-height:1.9;

    margin-bottom:25px;
}

/* =========================================
   HERO LIST
========================================= */

.vx-corporate-list{
    list-style:none;

    padding:0;

    margin:0 0 35px;
}

.vx-corporate-list li{
    color:#fff;

    margin-bottom:15px;

    font-weight:500;
}

.vx-corporate-list i{
    color:#990b2c;

    margin-right:10px;
}

/* =========================================
   BUTTON
========================================= */

.vx-btn-primary{
    display:inline-block;

    background:#990b2c;

    color:#fff;

    padding:14px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s ease;
}

.vx-btn-primary:hover{
    background:#fff;

    color:#990b2c;

    transform:translateY(-3px);
}

/* =========================================
   QUOTE FORM
========================================= */

.vx-quote-form{
    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.20);
}

.vx-quote-form h3{
    font-size:1.5rem;

    font-weight:700;

    color:#111;

    margin-bottom:25px;

    text-align:center;
}

.vx-quote-form input,
.vx-quote-form select,
.vx-quote-form textarea{
    width:100%;

    border:1px solid #ddd;

    border-radius:10px;

    padding:14px 15px;

    margin-bottom:15px;

    font-size:.95rem;

    transition:.3s ease;
}

.vx-quote-form input:focus,
.vx-quote-form select:focus,
.vx-quote-form textarea:focus{
    outline:none;

    border-color:#990b2c;

    box-shadow:
    0 0 0 3px rgba(153,11,44,.10);
}

.vx-quote-form button{
    width:100%;

    border:none;

    background:#990b2c;

    color:#fff;

    padding:15px;

    border-radius:10px;

    font-weight:700;

    transition:.35s ease;
}

.vx-quote-form button:hover{
    background:#111;
}

/* =========================================
   STATS SECTION
========================================= */

.vx-corporate-stats{
    background:#fff;

    padding:60px 0;

    box-shadow:
    0 5px 20px rgba(0,0,0,.05);
}

.vx-stat-box{
    padding:20px;
}

.vx-stat-box i{
    font-size:40px;

    color:#990b2c;

    margin-bottom:15px;
}

.vx-stat-box h3{
    font-size:1.5rem;

    font-weight:700;

    color:#111;

    margin-bottom:10px;
}

.vx-stat-box p{
    color:#666;

    margin-bottom:0;
}

/* =========================================
   INTRO SECTION
========================================= */

.vx-corporate-intro{
    padding:100px 0;

    background:#f8f9fb;
}

.vx-intro-card{
    background:#fff;

    padding:45px;

    border-radius:20px;

    border-left:5px solid #990b2c;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.vx-section-tag{
    display:inline-block;

    background:#990b2c;

    color:#fff;

    padding:10px 20px;

    border-radius:50px;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;
}

.vx-intro-card h2{
    font-size:2rem;

    font-weight:700;

    color:#111;

    margin-bottom:25px;
}

.vx-intro-card p{
    color:#666;

    line-height:1.9;

    margin-bottom:18px;
}

/* =========================================
   IMAGE BOX
========================================= */

.vx-image-box{
    overflow:hidden;

    border-radius:20px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.10);
}

.vx-image-box img{
    width:100%;

    display:block;
}

/* =========================================
   SECTION HEADINGS
========================================= */

.vx-section-heading{
    text-align:center;

    margin-bottom:60px;
}

.vx-section-heading h2{
    font-size:2rem;

    font-weight:700;

    color:#111;

    margin-bottom:15px;
}

.vx-section-heading p{
    color:#666;

    max-width:700px;

    margin:auto;

    line-height:1.8;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .vx-corporate-content{
        margin-bottom:50px;
    }

    .vx-corporate-content h1{
        font-size:2rem;
    }

    .vx-intro-card{
        margin-bottom:40px;
    }

    .vx-intro-card h2{
        font-size:1.5rem;
    }
}

@media(max-width:768px){

    .vx-corporate-hero{
        padding:80px 0;
    }

    .vx-corporate-content h1{
        font-size:1.5rem;
    }

    .vx-quote-form{
        padding:25px;
    }

    .vx-intro-card{
        padding:25px;
    }

    .vx-intro-card h2{
        font-size:1.5rem;
    }

    .vx-section-heading h2{
        font-size:1.5rem;
    }
}


/* =========================================
   CSS PART 2
   SERVICES + BENEFITS + INDUSTRIES
   CTA + CONTRACT MANAGEMENT
========================================= */

/* =========================================
   SERVICES SECTION
========================================= */

.vx-corporate-services{
    padding:100px 0;
    background:#ffffff;
}

.vx-service-box{
    position:relative;
    overflow:hidden;

    background:#fff;

    padding:35px;

    border-radius:20px;

    height:100%;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:.4s ease;
}

.vx-service-box::before{
    content:'';

    position:absolute;

    left:0;
    bottom:-100%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            135deg,
            #990b2c,
            #2b2024
        );

    transition:.45s ease;
}

.vx-service-box:hover::before{
    bottom:0;
}

.vx-service-box h4,
.vx-service-box p{
    position:relative;
    z-index:2;
}

.vx-service-box h4{
    color:white !important;

    font-size:1.25rem;

    font-weight:700;

    margin-bottom:15px;

    transition:.35s ease;
}

.vx-service-box p{
    color:#666;

    line-height:1.8;

    margin-bottom:0;

    transition:.35s ease;
}

.vx-service-box:hover{
    transform:translateY(-8px);

    box-shadow:
        0 20px 40px rgba(153,11,44,.20);
}

.vx-service-box:hover h4,
.vx-service-box:hover p{
    color:#fff;
}

/* =========================================
   BENEFITS SECTION
========================================= */

.vx-corporate-benefits{
    padding:100px 0;
    background:#f8f9fb;
}

.vx-benefits-content{
    padding-right:30px;
}

.vx-benefits-content h2{
    font-size:2rem;

    font-weight:700;

    margin-bottom:35px;

    color:#111;
}

.vx-benefit-item{
    display:flex;

    gap:20px;

    margin-bottom:30px;

    background:#fff;

    padding:25px;

    border-radius:15px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.05);

    transition:.35s ease;
}

.vx-benefit-item:hover{
    transform:translateX(8px);
}

.vx-benefit-item i{
    width:60px;
    height:60px;

    min-width:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#990b2c;

    color:#fff;

    border-radius:50%;

    font-size:24px;
}

.vx-benefit-item h5{
    font-size:1rem;

    font-weight:700;

    color:#111;

    margin-bottom:10px;
}

.vx-benefit-item p{
    margin:0;

    color:#666;

    line-height:1.8;
}

.vx-benefits-image{
    overflow:hidden;

    border-radius:20px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.10);
}

.vx-benefits-image img{
    width:100%;
    display:block;
}

/* =========================================
   INDUSTRIES SECTION
========================================= */

.vx-industries-section{
    padding:100px 0;
    background:#fff;
}

.vx-industries-image{
    border-radius:20px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.10);
}

.vx-industries-content{
    padding-left:30px;
}

.vx-industries-content h2{
    font-size:2rem;

    font-weight:700;

    margin-bottom:25px;

    color:#111;
}

.vx-industries-content p{
    color:#666;

    line-height:1.9;

    margin-bottom:25px;
}

.vx-industries-list{
    list-style:none;

    padding:0;
    margin:0;
}

.vx-industries-list li{
    position:relative;

    padding-left:28px;

    margin-bottom:15px;

    color:#555;

    font-weight:500;
}

.vx-industries-list li::before{
    content:'✓';

    position:absolute;

    left:0;
    top:0;

    color:#990b2c;

    font-weight:700;
}

/* =========================================
   CTA BANNER
========================================= */

.vx-corporate-cta{
    padding:90px 0;

    background:
        linear-gradient(
            135deg,
            #990b2c,
            #2b2024
        );
}

.vx-cta-content{
    text-align:center;

    max-width:900px;

    margin:auto;
}

.vx-cta-content h2{
    color:#fff;

    font-size:2.7rem;

    font-weight:700;

    margin-bottom:20px;
}

.vx-cta-content p{
    color:rgba(255,255,255,.92);

    line-height:1.9;

    font-size:1rem;

    margin-bottom:30px;
}

.vx-btn-white{
    display:inline-block;

    background:#fff;

    color:#990b2c;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s ease;
}

.vx-btn-white:hover{
    background:#111;

    color:#fff;

    transform:translateY(-3px);
}

/* =========================================
   CONTRACT MANAGEMENT
========================================= */

.vx-contract-management{
    padding:100px 0;

    background:#f8f9fb;
}

.vx-contract-content{
    padding-right:30px;
}

.vx-contract-content h2{
    font-size:2.2rem;

    font-weight:700;

    color:#111;

    margin-bottom:25px;
}

.vx-contract-content p{
    color:#666;

    line-height:1.9;

    margin-bottom:25px;
}

.vx-management-list{
    list-style:none;

    padding:0;
    margin:0;
}

.vx-management-list li{
    position:relative;

    padding-left:30px;

    margin-bottom:18px;

    color:#555;

    font-weight:500;
}

.vx-management-list li::before{
    content:'✓';

    position:absolute;

    left:0;

    color:#990b2c;

    font-weight:700;
}

.vx-contract-image{
    overflow:hidden;

    border-radius:20px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.10);
}

.vx-contract-image img{
    width:100%;
    display:block;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .vx-benefits-content,
    .vx-contract-content,
    .vx-industries-content{
        padding:0;
    }

    .vx-benefits-image,
    .vx-contract-image,
    .vx-industries-image{
        margin-top:40px;
    }

    .vx-cta-content h2{
        font-size:1.5rem;
    }
}

@media(max-width:768px){

    .vx-corporate-services,
    .vx-corporate-benefits,
    .vx-industries-section,
    .vx-contract-management{
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .vx-benefits-content h2,
    .vx-industries-content h2,
    .vx-contract-content h2{
        font-size:1.5rem;
    }

    .vx-cta-content h2{
        font-size:1.5rem;
    }

    .vx-benefit-item{
        flex-direction:column;
    }

    .vx-service-box{
        padding:25px;
    }
}

/* =========================================
   WHY CHOOSE US
========================================= */

.vx-why-choose{
    padding:50px 0;
    background:#ffffff;
}

.vx-why-card{
    position:relative;
    overflow:hidden;

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    height:100%;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:.4s ease;
}

.vx-why-card::before{
    content:'';

    position:absolute;

    left:0;
    bottom:-100%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            135deg,
            #990b2c,
            #2b2024
        );

    transition:.45s ease;
}

.vx-why-card:hover::before{
    bottom:0;
}

.vx-why-card i,
.vx-why-card h4,
.vx-why-card p{
    position:relative;
    z-index:2;
}

.vx-why-card i{
    font-size:45px;
    color:white !important;
    margin-bottom:20px;
    transition:.35s;
}

.vx-why-card h4{
    font-size:1.2rem;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
    transition:.35s;
}

.vx-why-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:0;
    transition:.35s;
}

.vx-why-card:hover{
    transform:translateY(-10px);
}

.vx-why-card:hover i,
.vx-why-card:hover h4,
.vx-why-card:hover p{
    color:#fff;
}

/* =========================================
   PROCESS SECTION
========================================= */

.vx-protection-process{
    padding:100px 0;
    background:#f8f9fb;
}

.vx-process-card{
    background:#fff;

    padding:35px;

    border-radius:20px;

    height:100%;

    border-left:5px solid #990b2c;

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:.35s ease;
}

.vx-process-card:hover{
    transform:translateY(-5px);

    box-shadow:
        0 20px 40px rgba(153,11,44,.12);
}

.vx-process-number{
    width:65px;
    height:65px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#990b2c;

    color:#fff;

    border-radius:50%;

    font-size:1.2rem;
    font-weight:700;

    margin-bottom:20px;
}

.vx-process-card h4{
    font-size:1.2rem;
    font-weight:700;
    margin-bottom:15px;
}

.vx-process-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:0;
}

.vx-metric-box{
  
    padding:40px 30px !important;
    border-radius:20px !important;
    text-align:center !important;
    border:1px solid #eee !important;
    box-shadow:0 15px 35px rgba(0,0,0,.08) !important;
    transition:all .4s ease !important;
    position:relative !important;
    overflow:hidden !important;
}

.vx-metric-box:hover{
    background:#990b2c !important;
    transform:translateY(-10px) !important;
    box-shadow:0 25px 50px rgba(153,11,44,.25) !important;
}

.vx-metric-box i{
    font-size:50px !important;
    color:#990b2c !important;
    margin-bottom:20px !important;
    transition:.4s !important;
}

.vx-metric-box h3{
    font-size:1.5rem !important;
    font-weight:700 !important;
    color:#111 !important;
    transition:.4s !important;
}

.vx-metric-box p{
    color:#666 !important;
    transition:.4s !important;
}

.vx-metric-box:hover i,
.vx-metric-box:hover h3,
.vx-metric-box:hover p{
    color:#fff !important;
}

.vx-metric-box{
    margin-top: 30px;
    margin-bottom: 30px;
}

/* =========================================
   TESTIMONIALS
========================================= */

.vx-testimonials{
    padding:30px 0 !important;
    background:#f8f9fb;
}

.vx-testimonial-card{
    max-width:900px;

    margin:auto;

    background:#fff;

    padding:50px;

    border-radius:25px;

    text-align:center;

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);
}

.vx-testimonial-card i{
    font-size:55px;
    color:#990b2c;
    margin-bottom:25px;
}

.vx-testimonial-card p{
    font-size:1.1rem;
    color:#555;
    line-height:2;
    margin-bottom:25px;
}

.vx-testimonial-card h5{
    font-size:1.2rem;
    font-weight:700;
    color:#111;
    margin-bottom:5px;
}

.vx-testimonial-card span{
    color:#990b2c;
    font-weight:600;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .vx-why-choose,
    .vx-protection-process,
    .vx-reliability-stats,
    .vx-testimonials{
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .vx-process-card,
    .vx-why-card,
    .vx-metric-box{
        padding:25px;
    }

    .vx-testimonial-card{
        padding:30px 25px;
    }

    .vx-testimonial-card p{
        font-size:1rem;
    }

    .vx-metric-box h3{
        font-size:1.5rem;
    }
}

/* =========================================
   FAQ SECTION
========================================= */

.vx-faq-section{
    padding:100px 0;
    background:#ffffff;
}

.vx-faq-section .accordion-item{
    border:none;
    margin-bottom:15px;

    border-radius:15px !important;
    overflow:hidden;

    box-shadow:
        0 8px 25px rgba(0,0,0,.05);
}

.vx-faq-section .accordion-button{
    background:#fff;

    color:#111;

    font-weight:700;

    padding:22px 25px;

    box-shadow:none !important;
}

.vx-faq-section .accordion-button:not(.collapsed){
    background:#990b2c;
    color:#fff;
}

.vx-faq-section .accordion-body{
    padding:25px;

    line-height:1.9;

    color:#666;
}

/* =========================================
   RELATED SERVICES
========================================= */

.vx-related-services{
    padding:100px 0;
    background:#f8f9fb;
}

.vx-related-card{
    position:relative;
    overflow:hidden;

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    height:100%;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:.4s ease;
}

.vx-related-card::before{
    content:'';

    position:absolute;

    left:0;
    bottom:-100%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            135deg,
            #990b2c,
            #2b2024
        );

    transition:.45s ease;
}

.vx-related-card:hover::before{
    bottom:0;
}

.vx-related-card i,
.vx-related-card h4,
.vx-related-card p,
.vx-related-card a{
    position:relative;
    z-index:2;
}

.vx-related-card i{
    font-size:42px;
    color:#990b2c;
    margin-bottom:20px;
    transition:.35s;
}

.vx-related-card h4{
    font-size:1.2rem;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
    transition:.35s;
}

.vx-related-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
    transition:.35s;
}

.vx-related-card a{
    color:#990b2c;
    text-decoration:none;
    font-weight:700;
    transition:.35s;
}

.vx-related-card:hover{
    transform:translateY(-8px);
}

.vx-related-card:hover i,
.vx-related-card:hover h4,
.vx-related-card:hover p,
.vx-related-card:hover a{
    color:#fff;
}

/* =========================================
   ACCREDITATIONS
========================================= */

.vx-accreditations{
    padding:100px 0;
    background:#fff;
}

.vx-accreditation-box{
    background:#fff;

    padding:30px;

    border-radius:20px;

    height:100%;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);

    transition:.35s ease;
}

.vx-accreditation-box:hover{
    transform:translateY(-5px);
}

.vx-accreditation-box img{
    max-width:100%;
    height:80px;
    object-fit:contain;
}

/* =========================================
   CONTACT CTA
========================================= */

.vx-contact-cta{
    padding:100px 0;
    margin-bottom: 30px;
    background:
        linear-gradient(
            135deg,
            #990b2c,
            #2b2024
        );
}

.vx-contact-content h2{
    color:#fff;

    font-size:2rem;

    font-weight:700;

    margin-bottom:20px;
}

.vx-contact-content p{
    color:rgba(255,255,255,.92);

    line-height:1.9;

    font-size:1rem;
}

.vx-contact-form{
    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.15);
}

.vx-contact-form input,
.vx-contact-form textarea{
    width:100%;

    padding:14px 15px;

    margin-bottom:15px;

    border:1px solid #ddd;

    border-radius:10px;

    transition:.3s ease;
}

.vx-contact-form input:focus,
.vx-contact-form textarea:focus{
    outline:none;

    border-color:#990b2c;

    box-shadow:
        0 0 0 3px rgba(153,11,44,.10);
}

.vx-contact-form button{
    width:100%;

    border:none;

    background:#990b2c;

    color:#fff;

    padding:15px;

    border-radius:10px;

    font-weight:700;

    transition:.35s ease;
}

.vx-contact-form button:hover{
    background:#111;
}

/* =========================================
   GLOBAL IMAGE FIX
========================================= */

.vx-image-box img,
.vx-benefits-image img,
.vx-contract-image img,
.vx-industries-image{
    width:100%;
    display:block;
    border-radius:20px;
}

/* =========================================
   FINAL MOBILE
========================================= */

@media(max-width:991px){

    .vx-contact-content{
        margin-bottom:40px;
    }

    .vx-contact-content h2{
        font-size:1.5rem;
    }
}

@media(max-width:768px){

    .vx-faq-section,
    .vx-related-services,
    .vx-accreditations,
    .vx-contact-cta{
       padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-contact-form{
        padding:25px;
    }

    .vx-contact-content h2{
        font-size:1.5rem;
    }

    .vx-related-card,
    .vx-accreditation-box{
        padding:25px;
    }

    .vx-accreditation-box img{
        height:60px;
    }

    .vx-faq-section .accordion-button{
        padding:18px;
        font-size:.95rem;
    }

    .vx-faq-section .accordion-body{
        padding:18px;
    }
}

/* =========================================
   END OF FILE
========================================= */
/* =========================================
   INTRO CARD - FORCE OVERRIDE
========================================= */

.vx-intro-section{
    padding:100px 0 !important;
    background:#f8f9fb !important;
}

.vx-intro-card{
    position:relative !important;

    background:#ffffff !important;

    padding:50px !important;

    border-radius:30px !important;

    border-left:6px solid #990b2c !important;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08) !important;

    overflow:hidden !important;

    transition:.4s ease !important;

    height:100% !important;
}

.vx-intro-card:hover{
    transform:translateY(-6px) !important;

    box-shadow:
        0 25px 60px rgba(153,11,44,.15) !important;
}

.vx-intro-card::before{
    content:'' !important;

    position:absolute !important;

    top:0 !important;
    left:0 !important;

    width:180px !important;
    height:180px !important;

    background:
        radial-gradient(
            rgba(153,11,44,.08),
            transparent 70%
        ) !important;

    pointer-events:none !important;
}

/* TAG */

.vx-intro-card .vx-section-tag{
    display:inline-block !important;

    background:#990b2c !important;

    color:#fff !important;

    padding:12px 20px !important;

    font-size:11px !important;

    font-weight:700 !important;

    letter-spacing:3px !important;

    text-transform:uppercase !important;

    border-radius:4px !important;

    margin-bottom:25px !important;
}

/* HEADING */

.vx-intro-card h2{
    font-size:2rem !important;

    font-weight:800 !important;

    line-height:1.15 !important;

    color:#111 !important;

    margin-bottom:30px !important;
}

/* PARAGRAPH */

.vx-intro-card p{
    color:#555 !important;

    line-height:2 !important;

    font-size:1rem !important;

    margin-bottom:22px !important;

    text-align:justify !important;
}

/* IMAGE */

.vx-image-box{
    position:relative !important;
}

.vx-image-box img{
    width:100% !important;

    border-radius:25px !important;

    display:block !important;

    box-shadow:
        0 20px 50px rgba(0,0,0,.12) !important;

    transition:.4s ease !important;
}

.vx-image-box img:hover{
    transform:scale(1.03) !important;
}

/* MOBILE */

@media(max-width:991px){

    .vx-intro-card{
        padding:35px !important;
        margin-bottom:40px !important;
    }

    .vx-intro-card h2{
        font-size:1.5rem !important;
    }
}

@media(max-width:768px){

    .vx-intro-section{
       padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-intro-card{
        padding:25px !important;
        border-radius:20px !important;
    }

    .vx-intro-card h2{
        font-size:1.5rem !important;
    }

    .vx-intro-card p{
        font-size:.95rem !important;
        line-height:1.8 !important;
    }
}
/* =========================================
   HERO SECTION
========================================= */

.vx-concierge-hero{
    position:relative;
    padding:120px 0;
    background:url('images/concierge-hero.jpg') center center/cover;
    background-color: #000;
    overflow:hidden;
}

.vx-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.70);
}

.vx-concierge-hero .container{
    position:relative;
    z-index:2;
}

.vx-tag{
    display:inline-block;
    background:#990b2c;
    color:#fff;
    padding:10px 18px;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

.vx-hero-content h1{
    color:#fff;
    font-size:2rem;
    font-weight:800;
    margin-bottom:20px;
}

.vx-hero-content p{
    color:rgba(255,255,255,.85);
    line-height:1.9;
}

.vx-hero-list{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.vx-hero-list li{
    color:#fff;
    margin-bottom:12px;
    position:relative;
    padding-left:25px;
}

.vx-hero-list li::before{
    content:'✓';
    position:absolute;
    left:0;
    color:#990b2c;
    font-weight:700;
}

.vx-btn-primary{
    display:inline-block;
    background:#990b2c;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:6px;
    font-weight:700;
    transition:.35s;
}

.vx-btn-primary:hover{
    background:#fff;
    color:#990b2c;
}

/* =========================================
   FORM
========================================= */

.vx-quote-form{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.vx-quote-form h3{
    margin-bottom:20px;
    font-weight:700;
}

.vx-quote-form input,
.vx-quote-form select,
.vx-quote-form textarea{
    width:100%;
    margin-bottom:15px;
    padding:14px;
    border:1px solid #ddd;
    border-radius:6px;
}

.vx-quote-form button{
    width:100%;
    border:none;
    background:#990b2c;
    color:#fff;
    padding:14px;
    font-weight:700;
    border-radius:6px;
}
/* =========================================
   STATS BAR
========================================= */

.vx-stats-bar{
    padding:60px 0;

    background:
    linear-gradient(
        135deg,
        #990b2c 0%,
        #7a001b 50%,
        #2b2024 100%
    );
}

.vx-stat{
    position:relative;

    background:
        rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    padding:30px 20px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.10);

    transition:.4s ease;

    height:100%;
}

.vx-stat:hover{
    transform:translateY(-10px);

    background:
        rgba(255,255,255,.15);

    box-shadow:
        0 20px 40px rgba(0,0,0,.15);
}

/* ICON */

.vx-stat i{
    color:#ffffff;

    font-size:42px;

    margin-bottom:15px;

    transition:.4s ease;
}

.vx-stat:hover i{
    transform:scale(1.15) rotate(8deg);
}

/* NUMBER */

.vx-stat h4{
    color:#ffffff;

    font-size:2rem;

    font-weight:800;

    margin-bottom:8px;

    transition:.4s ease;
}

/* TEXT */

.vx-stat p{
    color:rgba(255,255,255,.85);

    font-size:.95rem;

    margin:0;

    transition:.4s ease;
}

/* OPTIONAL GLOW */

.vx-stat::before{
    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    border-radius:20px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.08),
        transparent
    );

    pointer-events:none;
}

/* MOBILE */

@media(max-width:768px){

    .vx-stats-bar{
        padding:40px 0;
    }

    .vx-stat{
        padding:25px 15px;
        margin-bottom:15px;
    }

    .vx-stat i{
        font-size:34px;
    }

    .vx-stat h4{
        font-size:1.8rem;
    }

    .vx-stat p{
        font-size:.85rem;
    }
}

/* =========================================
   INTRO SECTION
========================================= */

.vx-intro-section{
    padding:100px 0;
    background:#fff;
}

.vx-section-tag{
    display:inline-block;
    background:#990b2c;
    color:#fff;
    padding:10px 18px;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

.vx-intro-content h2{
    font-size:2rem;
    font-weight:800;
    color:#111;
    margin-bottom:25px;
}

.vx-intro-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
    text-align: justify;
}

.vx-image-box img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

p{
    text-align: justify;
}
/* =========================================
   SERVICES GRID
========================================= */

.vx-services-grid{
    padding:100px 0;
    background:#f8f9fb;
}

.vx-heading{
    text-align:center;
    margin-bottom:60px;
}

.vx-heading h2{
    font-size:2rem;
    font-weight:800;
    color:#111;
    margin-bottom:15px;
}

/* =========================================
   SERVICE CARD
========================================= */

.vx-service-card{
    position:relative;
    overflow:hidden;

    background:#ffffff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    height:100%;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:
        0 12px 30px rgba(0,0,0,.06);

    transition:.45s ease;
}

/* Hover Background */

.vx-service-card::before{
    content:'';

    position:absolute;

    left:0;
    bottom:-100%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        135deg,
        #990b2c,
        #2b2024
    );

    transition:.45s ease;
}

.vx-service-card:hover::before{
    bottom:0;
}

/* Content Layer */

.vx-service-card i,
.vx-service-card h3,
.vx-service-card p{
    position:relative;
    z-index:2;
}

/* Icon */

.vx-service-card i{
    font-size:48px;

    color:#990b2c;

    margin-bottom:20px;

    transition:.4s ease;
}

/* Heading */

.vx-service-card h3{
    font-size:1.5rem;

    font-weight:700;

    color:#111;

    margin-bottom:15px;

    transition:.4s ease;
}

/* Paragraph */

.vx-service-card p{
    color:#666;

    line-height:1.8;

    margin-bottom:0;

    transition:.4s ease;
}

/* Hover Effects */

.vx-service-card:hover{
    transform:translateY(-12px);

    box-shadow:
        0 25px 50px rgba(153,11,44,.25);
}

.vx-service-card:hover i{
    color:#fff;
    transform:scale(1.1);
}

.vx-service-card:hover h3,
.vx-service-card:hover p{
    color:#fff;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .vx-services-grid{
         padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-heading h2{
        font-size:1.5rem;
    }

    .vx-service-card{
        padding:30px 25px;
    }

    .vx-service-card i{
        font-size:40px;
    }

    .vx-service-card h3{
        font-size:1.1rem;
    }
}
/* =========================================
   RESPONSIBILITIES
========================================= */

.vx-responsibilities{
    padding:100px 0;
    background:#fff;
}

.vx-responsibility-content h2{
    font-size:2rem;
    font-weight:800;
    margin-bottom:30px;
}

.vx-responsibility-content ul{
    list-style:none;
    padding:0;
    margin:0;
}

.vx-responsibility-content li{
    margin-bottom:18px;
    color:#555;
    line-height:1.8;
    font-weight:500;
}

.vx-responsibility-content li i{
    width:28px;
    height:28px;
    background:#990b2c;
    color:#fff;
    text-align:center;
    line-height:28px;
    border-radius:50%;
    margin-right:10px;
    font-size:12px;
}
/* =========================================
   RESPONSIBILITY CONTENT CARD
========================================= */

.vx-responsibility-content{
    position:relative !important;

    background:#ffffff !important;

    padding:50px !important;

    border-radius:30px !important;

    border-left:6px solid #990b2c !important;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08) !important;

    overflow:hidden !important;

    transition:.4s ease !important;
}

.vx-responsibility-content:hover{
    transform:translateY(-6px) !important;

    box-shadow:
        0 25px 60px rgba(153,11,44,.15) !important;
}

/* Decorative Glow */

.vx-responsibility-content::before{
    content:'' !important;

    position:absolute !important;

    top:0 !important;
    left:0 !important;

    width:180px !important;
    height:180px !important;

    background:
    radial-gradient(
        rgba(153,11,44,.08),
        transparent 70%
    ) !important;

    pointer-events:none !important;
}

/* Section Tag */

.vx-responsibility-content .vx-section-tag{
    display:inline-block !important;

    background:#990b2c !important;

    color:#fff !important;

    padding:12px 20px !important;

    font-size:11px !important;

    font-weight:700 !important;

    letter-spacing:3px !important;

    text-transform:uppercase !important;

    border-radius:4px !important;

    margin-bottom:25px !important;
}

/* Heading */

.vx-responsibility-content h2{
    font-size:2rem !important;

    font-weight:800 !important;

    line-height:1.15 !important;

    color:#111 !important;

    margin-bottom:25px !important;
}

/* Paragraph */

.vx-responsibility-content p{
    color:#555 !important;

    font-size:1rem !important;

    line-height:2 !important;

    margin-bottom:20px !important;
}

/* Checklist */

.vx-responsibility-list{
    list-style:none !important;

    padding:0 !important;

    margin:30px 0 0 !important;
}

.vx-responsibility-list li{
    display:flex !important;

    align-items:flex-start !important;

    gap:15px !important;

    margin-bottom:18px !important;

    color:#444 !important;

    font-weight:500 !important;

    line-height:1.8 !important;
}

.vx-responsibility-list li i{
    min-width:38px !important;

    width:38px !important;

    height:38px !important;

    display:flex !important;

    align-items:center !important;

    justify-content:center !important;

    background:#990b2c !important;

    color:#fff !important;

    border-radius:50% !important;

    font-size:14px !important;
}

/* Button */

.vx-responsibility-content .vx-btn-primary{
    margin-top:20px !important;
}

/* Image */

.vx-responsibility-image img{
    width:100% !important;

    border-radius:25px !important;

    box-shadow:
        0 20px 50px rgba(0,0,0,.12) !important;

    transition:.4s ease !important;
}

.vx-responsibility-image img:hover{
    transform:scale(1.03) !important;
}

/* Mobile */

@media(max-width:991px){

    .vx-responsibility-content{
        padding:35px !important;
        margin-bottom:40px !important;
    }

    .vx-responsibility-content h2{
        font-size:1.5rem !important;
    }
}

@media(max-width:768px){

    .vx-responsibility-content{
        padding:25px !important;
        border-radius:20px !important;
    }

    .vx-responsibility-content h2{
        font-size:1.5rem !important;
    }

    .vx-responsibility-content p{
        font-size:.95rem !important;
    }
}

/* =========================================
   CONTRACT CONTENT CARD
========================================= */

.vx-contract-content{
    position:relative !important;

    background:#ffffff !important;

    padding:50px !important;

    border-radius:30px !important;

    border-left:6px solid #990b2c !important;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08) !important;

    overflow:hidden !important;

    transition:.4s ease !important;

    height:100% !important;
}

.vx-contract-content:hover{
    transform:translateY(-6px) !important;

    box-shadow:
        0 25px 60px rgba(153,11,44,.15) !important;
}

.vx-contract-content::before{
    content:'' !important;

    position:absolute !important;

    top:0 !important;
    left:0 !important;

    width:180px !important;
    height:180px !important;

    background:
    radial-gradient(
        rgba(153,11,44,.08),
        transparent 70%
    ) !important;

    pointer-events:none !important;
}

/* TAG */

.vx-contract-content .vx-section-tag{
    display:inline-block !important;

    background:#990b2c !important;

    color:#fff !important;

    padding:12px 20px !important;

    font-size:11px !important;

    font-weight:700 !important;

    letter-spacing:3px !important;

    text-transform:uppercase !important;

    border-radius:4px !important;

    margin-bottom:25px !important;
}

/* TITLE */

.vx-contract-content h2{
    font-size:2rem !important;

    font-weight:800 !important;

    line-height:1.15 !important;

    color:#111 !important;

    margin-bottom:25px !important;
}

/* PARAGRAPH */

.vx-contract-content p{
    color:#555 !important;

    font-size:1rem !important;

    line-height:2 !important;

    margin-bottom:20px !important;

    text-align:justify !important;
}

/* LIST */

.vx-contract-list{
    list-style:none !important;

    padding:0 !important;

    margin:25px 0 0 !important;
}

.vx-contract-list li{
    position:relative !important;

    padding-left:28px !important;

    margin-bottom:14px !important;

    color:#444 !important;

    font-weight:500 !important;
}

.vx-contract-list li::before{
    content:'•' !important;

    position:absolute !important;

    left:0 !important;

    top:0 !important;

    color:#990b2c !important;

    font-size:22px !important;

    font-weight:700 !important;
}

/* IMAGE */

.vx-contract-image img{
    width:100% !important;

    border-radius:25px !important;

    box-shadow:
        0 20px 50px rgba(0,0,0,.12) !important;

    transition:.4s ease !important;
}

.vx-contract-image img:hover{
    transform:scale(1.03) !important;
}

/* MOBILE */

@media(max-width:991px){

    .vx-contract-content{
        padding:35px !important;
        margin-bottom:40px !important;
    }

    .vx-contract-content h2{
        font-size:1.5rem !important;
    }
}

@media(max-width:768px){

    .vx-contract-content{
        padding:25px !important;
        border-radius:20px !important;
    }

    .vx-contract-content h2{
        font-size:1.8rem !important;
    }

    .vx-contract-content p{
        font-size:.95rem !important;
    }
}

/* =========================================
   BENEFITS SECTION
========================================= */

.vx-benefits-section{
    padding:100px 0;
    background:#fff;
}

.vx-benefits-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.vx-benefits-content h2{
    font-size:2.2rem;
    font-weight:800;
    color:#111;
    margin-bottom:35px;
}

.vx-benefit-item{
    display:flex;
    gap:15px;

    padding:20px;

    background:#fff;

    border-radius:15px;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    transition:.35s ease;
}

.vx-benefit-item:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(153,11,44,.15);
}

.vx-benefit-item i{
    width:55px;
    height:55px;

    min-width:55px;

    border-radius:50%;

    background:#990b2c;

    color:#fff;

    text-align:center;

    line-height:55px;

    font-size:20px;
}

.vx-benefit-item h4{
    font-size:1rem;
    font-weight:700;
    margin-bottom:8px;
}

.vx-benefit-item p{
    margin:0;
    color:#666;
    line-height:1.7;
}

/* =========================================
   CTA SECTION
========================================= */

.vx-service-cta{
    padding:120px 0;

    background:
    linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.75)
    ),
    url('images/cta-security.jpg')
    center center/cover;

    text-align:center;
}

.vx-cta-content h2{
    color:#fff;
    font-size:2rem;
    font-weight:800;
    margin-bottom:20px;
}

.vx-cta-content p{
    color:rgba(255,255,255,.85);
    max-width:700px;
    margin:0 auto 30px;
}

.vx-cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.vx-btn-outline{
    display:inline-block;

    border:2px solid #fff;

    color:#fff;

    text-decoration:none;

    padding:14px 30px;

    border-radius:6px;

    font-weight:700;

    transition:.35s;
}

.vx-btn-outline:hover{
    background:#fff;
    color:#111;
}

/* =========================================
   CONTRACT SECTION
========================================= */

.vx-contract-section{
    padding:100px 0;
    background:#f8f9fb;
}

.vx-contract-content h2{
    font-size:2.2rem;
    font-weight:800;
    margin-bottom:25px;
}

.vx-contract-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:25px;
}

.vx-contract-list{
    list-style:none;
    padding:0;
    margin:0;
}

.vx-contract-list li{
    position:relative;
    padding-left:30px;
    margin-bottom:15px;
    color:#555;
    font-weight:500;
}

.vx-contract-list li::before{
    content:'✓';

    position:absolute;
    left:0;

    color:#990b2c;
    font-weight:700;
}

.vx-contract-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

    .vx-benefits-content,
    .vx-contract-content{
        margin-top:40px;
    }

    .vx-cta-content h2{
        font-size:1.5rem;
    }
}

@media(max-width:768px){

    .vx-benefits-section,
    .vx-contract-section{
         padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-service-cta{
        padding:80px 0;
    }

    .vx-cta-content h2{
        font-size:1.5rem;
    }

    .vx-benefits-content h2,
    .vx-contract-content h2{
        font-size:1.5rem;
    }
}


/* =========================================
   CONSTRUCTION INTRO SECTION
========================================= */

.vx-corporate-intro{
    padding:100px 0;
    background:#f8f9fb;
}

.vx-intro-card{
    background:#ffffff;

    padding:45px;

    border-radius:20px;

    border-left:5px solid #990b2c;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    height:100%;
}

.vx-section-tag{
    display:inline-block;

    background:#990b2c;

    color:#fff;

    padding:10px 18px;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;
}

.vx-intro-card h2{
    font-size:2rem;

    font-weight:800;

    color:#111;

    margin-bottom:25px;
}

.vx-intro-card p{
    color:#666;

    line-height:1.9;

    margin-bottom:20px;
}

.vx-image-box img{
    width:100%;

    border-radius:20px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.10);
}

/* =========================================
   SERVICES SECTION
========================================= */

.vx-corporate-services{
    padding:100px 0;
    background:#fff;
}

.vx-section-heading{
    text-align:center;
    margin-bottom:60px;
}

.vx-section-heading h2{
    font-size:2rem;
    font-weight:800;
    color:#111;
    margin-bottom:15px;
}

.vx-section-heading p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.vx-service-box{
    position:relative;

    overflow:hidden;

    background:#990b2c;

    
    padding:35px;

    border-radius:18px;

    text-align:center;

    height:100%;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);

    transition:.4s ease;
}

.vx-service-box::before{
    content:'';

    position:absolute;

    left:0;
    bottom:-100%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        135deg,
        #990b2c,
        #2b2024
    );

    transition:.45s ease;
}

.vx-service-box:hover::before{
    bottom:0;
}

.vx-service-box h4,
.vx-service-box p{
    position:relative;
    z-index:2;
}

.vx-service-box h4{
    font-size:1.2rem;

    font-weight:700;

    color:#111;

    margin-bottom:15px;

    transition:.4s ease;
}

.vx-service-box p{
    color:white;

    line-height:1.8;

    margin-bottom:0;

    transition:.4s ease;
}

.vx-service-box:hover{
    transform:translateY(-10px);

    box-shadow:
        0 20px 40px rgba(153,11,44,.20);
}

.vx-service-box:hover h4,
.vx-service-box:hover p{
    color:#fff;
}

/* =========================================
   INDUSTRIES SECTION
========================================= */

.vx-industries-section{
    padding:100px 0;
    background:#f8f9fb;
}

.vx-industries-image{
    width:100%;
height: 540px;
    border-radius:20px;
object-fit: cover;
    box-shadow:
        0 15px 40px rgba(0,0,0,.08);
}

.vx-industries-content{
    padding-left:30px;
}

.vx-industries-content h2{
    font-size:2rem;

    font-weight:800;

    color:#111;

    margin-bottom:20px;
}

.vx-industries-content p{
    color:#666;

    line-height:1.9;

    margin-bottom:25px;
}

.vx-industries-list{
    list-style:none;

    padding:0;

    margin:0;
}

.vx-industries-list li{
    position:relative;

    padding-left:30px;

    margin-bottom:18px;

    color:#555;

    font-weight:500;
}

.vx-industries-list li::before{
    content:'✓';

    position:absolute;

    left:0;

    color:#990b2c;

    font-weight:700;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .vx-intro-card{
        margin-bottom:30px;
    }

    .vx-industries-content{
        padding-left:0;
        margin-top:30px;
    }

    .vx-intro-card h2,
    .vx-industries-content h2,
    .vx-section-heading h2{
        font-size:1.5rem;
    }
}

@media(max-width:768px){

    .vx-corporate-intro,
    .vx-corporate-services,
    .vx-industries-section{
        padding:50px 0;
       
    }

    .vx-intro-card{
        padding:30px;
    }

    .vx-intro-card h2,
    .vx-industries-content h2,
    .vx-section-heading h2{
        font-size:1.5rem;
    }
}

/* =========================================
   CONTRACT MANAGEMENT SECTION
========================================= */

.vx-contract-management{
    padding:100px 0;
    background:#fff;
}

.vx-contract-content{
    padding-right:30px;
}

.vx-contract-content h2{
    font-size:2rem;
    font-weight:800;
    color:#111;
    margin-bottom:25px;
}

.vx-contract-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.vx-contract-list{
    list-style:none;
    padding:0;
    margin:30px 0 0;
}

.vx-contract-list li{
    position:relative;
    padding-left:35px;
    margin-bottom:15px;
    color:#555;
    font-weight:500;
}

.vx-contract-list li::before{
    content:'✓';
    position:absolute;
    left:0;
    top:0;
    width:22px;
    height:22px;
    background:#990b2c;
    color:#fff;
    border-radius:50%;
    text-align:center;
    line-height:22px;
    font-size:12px;
}

.vx-image-box img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.10);
}

/* =========================================
   WHY CHOOSE VECTROX
========================================= */

.vx-why-choose{
    padding:50px 0;
    background:#f8f9fb;
}

.vx-why-card{
    position:relative;
    overflow:hidden;

    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    height:100%;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

    transition:.4s ease;
}

.vx-why-card::before{
    content:'';
    position:absolute;

    left:0;
    bottom:-100%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        135deg,
        #990b2c,
        #2b2024
    );

    transition:.45s ease;
}

.vx-why-card:hover::before{
    bottom:0;
}

.vx-why-card i,
.vx-why-card h4,
.vx-why-card p{
    position:relative;
    z-index:2;
}

.vx-why-card i{
    font-size:48px;
    color:white !important;
    margin-bottom:20px;
    transition:.4s ease;
}

.vx-why-card h4{
    font-size:1.2rem;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
    transition:.4s ease;
}

.vx-why-card p{
    color:white !important;
    line-height:1.8;
    margin-bottom:0;
    transition:.4s ease;
}

.vx-why-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 25px 50px rgba(153,11,44,.20);
}

.vx-why-card:hover i,
.vx-why-card:hover h4,
.vx-why-card:hover p{
    color:#fff;
}

/* =========================================
   RELIABILITY STATS
========================================= */

.vx-reliability-stats{
    padding:50px 0;

    background:
    linear-gradient(
        135deg,
        #990b2c 0%,
        #7a001b 50%,
        #2b2024 100%
    );
}

.vx-reliability-stats .vx-heading h2,
.vx-reliability-stats .vx-heading p{
    color:#fff;
}

.vx-metric-box{
    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    padding:35px 25px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.10);

    transition:.4s ease;

    height:100%;
}

.vx-metric-box:hover{
    transform:translateY(-10px);

    background:
    rgba(255,255,255,.15);
}

.vx-metric-box i{
    font-size:45px;
    color:#fff;
    margin-bottom:15px;
}

.vx-metric-box h3{
    font-size:1.5rem;
    font-weight:800;
    color:#fff;
    margin-bottom:10px;
}

.vx-metric-box p{
    color:rgba(255,255,255,.85);
    margin-bottom:0;
}

/* =========================================
   TESTIMONIALS
========================================= */

.vx-testimonials{
    padding:30px 0;
    background:#fff;
}

.vx-testimonial-card{
    position:relative;

    background:#fff;

    padding:50px;

    border-radius:20px;

    text-align:center;

    border:1px solid rgba(153,11,44,.08);

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.vx-testimonial-card i{
    font-size:40px;
    color:#990b2c;
    margin-bottom:20px;
}

.vx-testimonial-card p{
    font-size:1.1rem;
    line-height:2;
    color:#555;
    margin-bottom:25px;
}

.vx-testimonial-card h5{
    font-weight:700;
    margin-bottom:5px;
    color:#111;
}

.vx-testimonial-card span{
    color:#990b2c;
    font-size:.9rem;
}

/* =========================================
   FAQ SECTION
========================================= */

.vx-faq-section{
    padding:100px 0;
    background:#f8f9fb;
}

.vx-faq-section .accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:12px;
    overflow:hidden;
}

.vx-faq-section .accordion-button{
    background:#fff;
    color:#111;
    font-weight:700;
    padding:20px 25px;
    box-shadow:none;
}

.vx-faq-section .accordion-button:not(.collapsed){
    background:#990b2c;
    color:#fff;
}

.vx-faq-section .accordion-button:focus{
    box-shadow:none;
}

.vx-faq-section .accordion-body{
    background:#fff;
    padding:25px;
    color:#666;
    line-height:1.8;
}

/* =========================================
   COMMON HEADING
========================================= */

.vx-heading{
    margin-bottom:60px;
}

.vx-heading h2{
    font-size:2rem;
    font-weight:800;
    color:#111;
    margin-bottom:15px;
}

.vx-heading p{
    color:#666;
    max-width:700px;
    margin:0 auto;
}

.vx-section-tag{
    display:inline-block;
    background:#990b2c;
    color:#fff;
    padding:10px 18px;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
    border-radius:4px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .vx-contract-content{
        padding-right:0;
        margin-bottom:40px;
    }

    .vx-contract-content h2,
    .vx-heading h2{
        font-size:1.5rem;
    }
}

@media(max-width:768px){

    .vx-contract-management,
    .vx-why-choose,
    .vx-reliability-stats,
    .vx-testimonials,
    .vx-faq-section{
       padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-heading{
        margin-bottom:40px;
    }

    .vx-heading h2{
        font-size:1.5rem;
    }

    .vx-testimonial-card{
        padding:30px;
    }

    .vx-testimonial-card p{
        font-size:1rem;
    }

    .vx-metric-box{
        padding:25px 15px;
    }

    .vx-metric-box h3{
        font-size:2rem;
    }

    .vx-why-card{
        padding:30px 20px;
    }
}
.vx-testimonial-card{
    transition:.4s ease;
    height:100%;
}

.vx-testimonial-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 25px 50px rgba(153,11,44,.15);
}

/* =========================================
   SECTION TAG
========================================= */

.vx-section-tag{
    display:inline-block;
    background:#990b2c;
    color:#fff;
    padding:10px 18px;
    font-size:11px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:20px;
}

/* =========================================
   COMMON HEADING
========================================= */

.vx-heading{
    margin-bottom:60px;
}

.vx-heading h2{
    font-size:2rem;
    font-weight:800;
    color:#111;
    margin-bottom:15px;
}

.vx-heading p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/* =========================================
   INTRO SECTION
========================================= */

.vx-intro-section{
    padding:100px 0;
    background:#f8f9fb;
}

.vx-intro-content h2{
    font-size:2rem;
    font-weight:800;
    margin-bottom:25px;
    color:#111;
}

.vx-intro-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.vx-intro-section img{
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

/* =========================================
   SERVICES SECTION
========================================= */

.vx-services-section{
    padding:100px 0;
    background:#fff;
}

.vx-service-card{
    background:#990b2c;
    padding:40px 30px;
    border-radius:20px;
    height:100%;
    text-align:center;
    transition:.4s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* Hover */

.vx-service-card:hover{
    transform:translateY(-10px);
    background:#111;
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

/* Heading */

.vx-service-card h3{
    color:#ffffff !important;
    font-size:1.5rem;
    font-weight:700;
    margin-bottom:20px;
    transition:.3s;
}

/* Paragraph */

.vx-service-card p{
    color:rgba(255,255,255,.95) !important;
    line-height:1.9;
    font-size:1rem;
    margin-bottom:0;
    transition:.3s;
}

/* Hover Text */

.vx-service-card:hover h3{
    color:#ffffff !important;
}

.vx-service-card:hover p{
    color:#ffffff !important;
}

/* =========================================
   BENEFITS SECTION
========================================= */

.vx-benefits-section{
    padding:100px 0;
    background:#f8f9fb;
}

.vx-benefits-section h2{
    font-size:2.2rem;
    font-weight:800;
    margin-bottom:30px;
}

.vx-benefits-list{
    padding:0;
    margin:0;
    list-style:none;
}

.vx-benefits-list li{
    position:relative;
    padding-left:35px;
    margin-bottom:18px;
    color:#555;
    font-weight:500;
}

.vx-benefits-list li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#990b2c;
    font-weight:700;
}

.vx-benefits-section img{
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

/* =========================================
   WHY CHOOSE US
========================================= */

.vx-why-us{
    padding:100px 0;
    background:#111;
    margin-bottom: 30px;
}

.vx-why-us .vx-heading h2{
    color:#fff;
}

.vx-feature-card{
    background:#990b2c;
    color:#fff;
    padding:30px;
    border-radius:12px;
    height:100%;
    text-align:center;
    transition:.4s ease;
}

.vx-feature-card:hover{
    transform:translateY(-10px);
    background:#c10d39;
}

.vx-feature-card h3{
    font-size:1.5rem;
    font-weight:700;
    margin-bottom:15px;
}

.vx-feature-card p{
    margin-bottom:0;
    line-height:1.8;
}

/* =========================================
   TESTIMONIALS
========================================= */

.vx-testimonials{
    padding:30px 0;
    background:#fff;
}

.vx-testimonial-card{
    background:#f8f9fb;
    padding:40px;
    border-radius:15px;
    border-top:5px solid #990b2c;
    text-align:center;
    height:100%;
    transition:.4s ease;
}

.vx-testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.vx-testimonial-card p{
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
    font-style:italic;
}

.vx-testimonial-card h5{
    font-weight:700;
    margin-bottom:5px;
    color:#111;
}

.vx-testimonial-card span{
    color:#990b2c;
}

/* =========================================
   FAQ SECTION
========================================= */

.vx-faq-section{
    padding:100px 0;
    background:#f8f9fb;
}

.vx-faq-section .accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:0;
    overflow:hidden;
}

.vx-faq-section .accordion-button{
    background:#990b2c;
    color:#fff;
    font-weight:600;
    padding:18px 25px;
    box-shadow:none;
}

.vx-faq-section .accordion-button:not(.collapsed){
    background:#990b2c;
    color:#fff;
}

.vx-faq-section .accordion-body{
    background:#fff;
    padding:25px;
    line-height:1.8;
    color:#666;
}



.vx-contract-list{
    list-style:none !important;
    padding:0 !important;
    margin:25px 0 0 !important;
}

.vx-contract-list li{
    position:relative !important;
    padding-left:38px !important;
    margin-bottom:16px !important;
    color:#222 !important;
    font-weight:500 !important;
}

.vx-contract-list li::before{
    content:"✓" !important;

    position:absolute !important;
    left:0 !important;
    top:2px !important;

    width:22px !important;
    height:22px !important;

    background:#990b2c !important;
    color:#ffffff !important;

    border-radius:50% !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    font-size:12px !important;
    font-weight:700 !important;

    line-height:1 !important;
}
/* =========================================
   FINAL CTA
========================================= */

.vx-final-cta{
    padding:100px 0;
    margin-bottom: 30px;
    background:
    linear-gradient(
        135deg,
        #990b2c,
        #2b2024
    );
    text-align:center;
}

.vx-final-cta h2{
    color:#fff;
    font-size:2rem;
    font-weight:800;
    margin-bottom:20px;
}

.vx-final-cta p{
    color:rgba(255,255,255,.9);
    max-width:700px;
    margin:0 auto 35px;
    line-height:1.8;
}

.vx-btn-primary{
    display:inline-block;
    background:#fff;
    color:#990b2c;
    padding:16px 35px;
    font-weight:700;
    text-decoration:none;
    transition:.4s ease;
}

.vx-btn-primary:hover{
    background:#111;
    color:#fff;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

    .vx-intro-content h2,
    .vx-benefits-section h2,
    .vx-final-cta h2{
        font-size:1.5rem;
    }

    .vx-heading h2{
        font-size:1.5rem;
    }
}

@media(max-width:768px){

    .vx-intro-section,
    .vx-services-section,
    .vx-benefits-section,
    .vx-why-us,
    .vx-testimonials,
    .vx-faq-section,
    .vx-final-cta{
        padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-heading{
        margin-bottom:40px;
    }

    .vx-heading h2{
        font-size:1.5rem;
    }

    .vx-intro-content h2,
    .vx-benefits-section h2,
    .vx-final-cta h2{
        font-size:1.5rem;
    }

    .vx-service-card,
    .vx-feature-card,
    .vx-testimonial-card{
        padding:25px;
    }

    .vx-section-tag{
        font-size:10px;
        letter-spacing:2px;
    }
}



/* =========================================
   EVENT SECURITY PAGE
   Namespace: vx-event-*
========================================= */

.vx-event-page{
    background:#f8f9fb;
}

/* =========================================
   INTRO SECTION
========================================= */

.vx-event-intro{
    padding:100px 0;
    background:#fff;
}

.vx-event-content{
    background:#fff;
    padding:50px;
    border-radius:20px;
    border-left:5px solid #990b2c;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;
}

.vx-event-content:hover{
    transform:translateY(-5px);

    box-shadow:
        0 20px 50px rgba(153,11,44,.12);
}

.vx-event-content h2{
    font-size:2rem;
    font-weight:800;
    color:#111;
    margin-bottom:25px;
}

.vx-event-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.vx-event-image{
    overflow:hidden;
    border-radius:20px;
}

.vx-event-image img{
    width:100%;
    border-radius:20px;

    transition:.5s ease;

    box-shadow:
        0 20px 45px rgba(0,0,0,.12);
}

.vx-event-image:hover img{
    transform:scale(1.05);
}

/* =========================================
   EVENT SECURITY PAGE
   Namespace: vx-event-*
========================================= */

.vx-event-page{
    background:#f8f9fb;
}

/* =========================================
   INTRO SECTION
========================================= */

.vx-event-intro{
    padding:100px 0;
    background:#fff;
}

.vx-event-content{
    background:#fff;
    padding:50px;
    border-radius:20px;
    border-left:5px solid #990b2c;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;
}

.vx-event-content:hover{
    transform:translateY(-5px);

    box-shadow:
        0 20px 50px rgba(153,11,44,.12);
}

.vx-event-content h2{
    font-size:2rem;
    font-weight:800;
    color:#111;
    margin-bottom:25px;
}

.vx-event-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.vx-event-image{
    overflow:hidden;
    border-radius:20px;
}

.vx-event-image img{
    width:100%;
    border-radius:20px;

    transition:.5s ease;

    box-shadow:
        0 20px 45px rgba(0,0,0,.12);
}

.vx-event-image:hover img{
    transform:scale(1.05);
}

/* =========================================
   BENEFITS CONTENT CARD
========================================= */

.vx-benefits-content{
    position:relative !important;

    background:#ffffff !important;

    padding:50px !important;

    border-radius:30px !important;

    border-left:6px solid #990b2c !important;

    overflow:hidden !important;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08) !important;

    transition:.4s ease !important;

    height:100% !important;
}

.vx-benefits-content:hover{
    transform:translateY(-6px) !important;

    box-shadow:
        0 25px 60px rgba(153,11,44,.15) !important;
}

/* Decorative Glow */

.vx-benefits-content::before{
    content:'' !important;

    position:absolute !important;

    top:0 !important;
    left:0 !important;

    width:220px !important;
    height:220px !important;

    background:
    radial-gradient(
        rgba(153,11,44,.08),
        transparent 70%
    ) !important;

    pointer-events:none !important;
}

/* TAG */

.vx-benefits-content .vx-section-tag{
    display:inline-block !important;

    background:#990b2c !important;

    color:#fff !important;

    padding:12px 20px !important;

    border-radius:4px !important;

    font-size:11px !important;

    font-weight:700 !important;

    letter-spacing:3px !important;

    text-transform:uppercase !important;

    margin-bottom:25px !important;
}

/* TITLE */

.vx-benefits-content h2{
    font-size:2rem !important;

    font-weight:800 !important;

    line-height:1.15 !important;

    color:#111 !important;

    margin-bottom:25px !important;
}

/* PARAGRAPH */

.vx-benefits-content p{
    color:#555 !important;

    font-size:1rem !important;

    line-height:2 !important;

    margin-bottom:25px !important;
}


/* =========================================
   INDUSTRIES CONTENT CARD
========================================= */

.vx-industries-content{
    position:relative !important;

    background:#ffffff !important;

    padding:50px !important;

    border-left:6px solid #990b2c !important;

    border-radius:0 30px 30px 0 !important;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08) !important;

    overflow:hidden !important;

    transition:.4s ease !important;

    height:100% !important;
}

.vx-industries-content:hover{
    transform:translateY(-6px) !important;

    box-shadow:
        0 25px 60px rgba(153,11,44,.15) !important;
}

/* Decorative Corner Glow */

.vx-industries-content::before{
    content:'' !important;

    position:absolute !important;

    top:-80px !important;
    left:-80px !important;

    width:220px !important;
    height:220px !important;

    background:
    radial-gradient(
        rgba(153,11,44,.08),
        transparent 70%
    ) !important;

    pointer-events:none !important;
}

/* Heading */

.vx-industries-content h2{
    font-size:2rem !important;
    font-weight:800 !important;
    line-height:1.15 !important;
    color:#111 !important;
    margin-bottom:25px !important;
}

/* Text */

.vx-industries-content p{
    color:#555 !important;
    font-size:1.05rem !important;
    line-height:2 !important;
    margin-bottom:0 !important;
}

/* Mobile */

@media(max-width:991px){

    .vx-industries-content{
        padding:35px !important;
        margin-bottom:40px !important;
    }

    .vx-industries-content h2{
        font-size:1.5rem !important;
    }
}

@media(max-width:768px){

    .vx-industries-content{
        padding:25px !important;
        border-radius:20px !important;
    }

    .vx-industries-content h2{
        font-size:1.5rem !important;
    }
}


/* =========================================
   INTRO SECTION
========================================= */

.vx-intro-section{
    padding:100px 0 !important;
    background:#f8f9fb !important;
}

/* =========================================
   INTRO CONTENT CARD
========================================= */

.vx-intro-content{
    position:relative !important;

    background:#ffffff !important;

    padding:55px !important;

    border-left:6px solid #990b2c !important;

    border-radius:35px !important;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08) !important;

    overflow:hidden !important;

    transition:all .4s ease !important;

    height:100% !important;
}

.vx-intro-content:hover{
    transform:translateY(-8px) !important;

    box-shadow:
        0 25px 60px rgba(153,11,44,.15) !important;
}

/* Decorative Effect */

.vx-intro-content::before{
    content:'' !important;

    position:absolute !important;

    top:-80px !important;
    left:-80px !important;

    width:250px !important;
    height:250px !important;

    background:
        radial-gradient(
            rgba(153,11,44,.08),
            transparent 70%
        ) !important;

    pointer-events:none !important;
}

/* =========================================
   SECTION TAG
========================================= */

.vx-intro-content .vx-section-tag{
    display:inline-block !important;

    background:#990b2c !important;

    color:#fff !important;

    padding:12px 22px !important;

    border-radius:6px !important;

    font-size:11px !important;

    font-weight:700 !important;

    letter-spacing:3px !important;

    text-transform:uppercase !important;

    margin-bottom:30px !important;

    position:relative !important;

    z-index:2 !important;
}

/* =========================================
   TITLE
========================================= */

.vx-intro-content h2{
    font-size:2rem !important;

    font-weight:800 !important;

    line-height:1.2 !important;

    color:#111 !important;

    margin-bottom:30px !important;

    position:relative !important;

    z-index:2 !important;
}

/* =========================================
   PARAGRAPH
========================================= */

.vx-intro-content p{
    color:#555 !important;

    font-size:1.05rem !important;

    line-height:2 !important;

    margin-bottom:25px !important;

    text-align:justify !important;

    position:relative !important;

    z-index:2 !important;
}

.vx-intro-content p:last-child{
    margin-bottom:0 !important;
}

/* =========================================
   IMAGE BOX
========================================= */

.vx-image-box{
    position:relative !important;
}

.vx-image-box img{
    width:100% !important;

    height:auto !important;

    display:block !important;

    border-radius:30px !important;

    box-shadow:
        0 20px 50px rgba(0,0,0,.12) !important;

    transition:all .4s ease !important;
}

.vx-image-box img:hover{
    transform:scale(1.03) !important;
}

/* =========================================
   DESKTOP SPACING
========================================= */

@media(min-width:992px){

    .vx-image-box{
        
    }
}

/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

    .vx-intro-section{
        padding:80px 0 !important;
    }

    .vx-intro-content{
        padding:40px !important;

        margin-bottom:40px !important;

        border-radius:30px !important;
    }

    .vx-intro-content h2{
        font-size:1.5rem !important;
    }

    .vx-image-box{
        margin-top:20px !important;
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .vx-intro-section{
        padding:60px 0 !important;
    }

    .vx-intro-content{
        padding:25px !important;

        border-left:5px solid #990b2c !important;

        border-radius:25px !important;
    }

    .vx-intro-content .vx-section-tag{
        font-size:10px !important;

        letter-spacing:2px !important;

        padding:10px 16px !important;
    }

    .vx-intro-content h2{
        font-size:1.5rem !important;

        margin-bottom:20px !important;
    }

    .vx-intro-content p{
        font-size:.95rem !important;

        line-height:1.8 !important;

        margin-bottom:18px !important;
    }

    .vx-image-box img{
        border-radius:20px !important;
    }
}

/* =========================================
   INDUSTRIES CONTENT
========================================= */

.vx-industries-content{
    position:relative !important;

    background:#ffffff !important;

    padding:55px !important;

    border-left:6px solid #990b2c !important;

    border-radius:35px !important;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08) !important;

    overflow:hidden !important;

    transition:.4s ease !important;

    height:100% !important;
}

.vx-industries-content:hover{
    transform:translateY(-6px) !important;

    box-shadow:
        0 25px 60px rgba(153,11,44,.15) !important;
}

/* Decorative Glow */

.vx-industries-content::before{
    content:'' !important;

    position:absolute !important;

    top:-80px !important;
    left:-80px !important;

    width:240px !important;
    height:240px !important;

    background:
    radial-gradient(
        rgba(153,11,44,.08),
        transparent 70%
    ) !important;

    pointer-events:none !important;
}

/* Tag */

.vx-industries-content .vx-section-tag{
    display:inline-block !important;

    background:#990b2c !important;

    color:#fff !important;

    padding:12px 22px !important;

    border-radius:6px !important;

    font-size:11px !important;

    font-weight:700 !important;

    letter-spacing:3px !important;

    text-transform:uppercase !important;

    margin-bottom:25px !important;
}

/* Title */

.vx-industries-content h2{
    font-size:2rem !important;

    font-weight:800 !important;

    line-height:1.2 !important;

    color:#111 !important;

    margin-bottom:25px !important;
}

/* Paragraph */

.vx-industries-content p{
    color:#555 !important;

    font-size:1.05rem !important;

    line-height:2 !important;

    margin-bottom:25px !important;
}

/* Lists */

.vx-industries-content ul{
    list-style:none !important;
    padding:0 !important;
    margin:0 !important;
}

.vx-industries-content li{
    position:relative !important;

    padding-left:28px !important;

    margin-bottom:15px !important;

    color:#444 !important;

    font-weight:500 !important;
}

.vx-industries-content li::before{
    content:"✓" !important;

    position:absolute !important;

    left:0 !important;
    top:0 !important;

    color:#990b2c !important;

    font-weight:700 !important;
}

/* Mobile */

@media(max-width:991px){

    .vx-industries-content{
        padding:35px !important;
        margin-top:30px !important;
    }

    .vx-industries-content h2{
        font-size:1.5rem !important;
    }
}

@media(max-width:768px){

    .vx-industries-content{
        padding:25px !important;
        border-radius:25px !important;
    }

    .vx-industries-content h2{
        font-size:1.5rem !important;
    }

    .vx-industries-content p{
        font-size:.95rem !important;
        line-height:1.8 !important;
    }
}

/* =========================================
   BENEFITS CONTENT CARD
========================================= */

.vx-benefits-content{
    position:relative !important;

    background:#ffffff !important;

    padding:55px !important;

    border-left:6px solid #990b2c !important;

    border-radius:35px !important;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08) !important;

    overflow:hidden !important;

    height:100% !important;

    transition:.4s ease !important;
}

.vx-benefits-content:hover{
    transform:translateY(-6px) !important;

    box-shadow:
        0 25px 60px rgba(153,11,44,.15) !important;
}

/* Decorative Effect */

.vx-benefits-content::before{
    content:'' !important;

    position:absolute !important;

    top:-100px !important;
    left:-100px !important;

    width:250px !important;
    height:250px !important;

    background:
    radial-gradient(
        rgba(153,11,44,.08),
        transparent 70%
    ) !important;

    pointer-events:none !important;
}

/* Section Tag */

.vx-benefits-content .vx-section-tag{
    display:inline-block !important;

    background:#990b2c !important;

    color:#fff !important;

    padding:10px 22px !important;

    border-radius:6px !important;

    font-size:11px !important;

    font-weight:700 !important;

    letter-spacing:3px !important;

    text-transform:uppercase !important;

    margin-bottom:25px !important;
}

/* Title */

.vx-benefits-content h2{
    font-size:2rem !important;

    font-weight:800 !important;

    line-height:1.2 !important;

    color:#111 !important;

    margin-bottom:25px !important;
}

/* Text */

.vx-benefits-content p{
    color:#555 !important;

    font-size:1.05rem !important;

    line-height:2 !important;

    margin-bottom:25px !important;
}

/* Benefits List */

.vx-benefits-content ul{
    list-style:none !important;

    padding:0 !important;

    margin:0 !important;
}

.vx-benefits-content li{
    position:relative !important;

    padding-left:35px !important;

    margin-bottom:18px !important;

    color:#444 !important;

    font-size:1rem !important;

    font-weight:500 !important;
}

.vx-benefits-content li::before{
    content:"✓" !important;

    position:absolute !important;

    left:0 !important;
    top:0 !important;

    width:22px !important;
    height:22px !important;

    background:#990b2c !important;

    color:#fff !important;

    border-radius:50% !important;

    text-align:center !important;

    line-height:22px !important;

    font-size:12px !important;

    font-weight:700 !important;
}

/* Image */

.vx-benefits-image img{
    width:100% !important;

    border-radius:35px !important;

    box-shadow:
        0 20px 50px rgba(0,0,0,.12) !important;

    transition:.4s ease !important;
}

.vx-benefits-image img:hover{
    transform:scale(1.03) !important;
}

/* Mobile */

@media(max-width:991px){

    .vx-benefits-content{
        padding:35px !important;
        margin-top:30px !important;
    }

    .vx-benefits-content h2{
        font-size:1.5rem !important;
    }
}

@media(max-width:768px){

    .vx-benefits-content{
        padding:25px !important;
        border-radius:25px !important;
    }

    .vx-benefits-content h2{
        font-size:1.6rem !important;
    }

    .vx-benefits-content p{
        font-size:.95rem !important;
        line-height:1.8 !important;
    }
}

/* =========================================
   BENEFITS CONTENT CARD
========================================= */

.vx-benefits-content{
    position:relative !important;

    background:#ffffff !important;

    padding:55px !important;

    border-left:6px solid #990b2c !important;

    border-radius:35px !important;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08) !important;

    overflow:hidden !important;

    height:100% !important;

    transition:.4s ease !important;
}

.vx-benefits-content:hover{
    transform:translateY(-6px) !important;

    box-shadow:
        0 25px 60px rgba(153,11,44,.15) !important;
}

/* Decorative Effect */

.vx-benefits-content::before{
    content:'' !important;

    position:absolute !important;

    top:-100px !important;
    left:-100px !important;

    width:250px !important;
    height:250px !important;

    background:
    radial-gradient(
        rgba(153,11,44,.08),
        transparent 70%
    ) !important;

    pointer-events:none !important;
}

/* Section Tag */

.vx-benefits-content .vx-section-tag{
    display:inline-block !important;

    background:#990b2c !important;

    color:#fff !important;

    padding:10px 22px !important;

    border-radius:6px !important;

    font-size:11px !important;

    font-weight:700 !important;

    letter-spacing:3px !important;

    text-transform:uppercase !important;

    margin-bottom:25px !important;
}

/* Title */

.vx-benefits-content h2{
    font-size:2rem !important;

    font-weight:800 !important;

    line-height:1.2 !important;

    color:#111 !important;

    margin-bottom:25px !important;
}

/* Text */

.vx-benefits-content p{
    color:#555 !important;

    font-size:1.05rem !important;

    line-height:2 !important;

    margin-bottom:25px !important;
}

/* Benefits List */

.vx-benefits-content ul{
    list-style:none !important;

    padding:0 !important;

    margin:0 !important;
}

.vx-benefits-content li{
    position:relative !important;

    padding-left:35px !important;

    margin-bottom:18px !important;

    color:#444 !important;

    font-size:1rem !important;

    font-weight:500 !important;
}

.vx-benefits-content li::before{
    content:"✓" !important;

    position:absolute !important;

    left:0 !important;
    top:0 !important;

    width:22px !important;
    height:22px !important;

    background:#990b2c !important;

    color:#fff !important;

    border-radius:50% !important;

    text-align:center !important;

    line-height:22px !important;

    font-size:12px !important;

    font-weight:700 !important;
}

/* Image */

.vx-benefits-image img{
    width:100% !important;

    border-radius:35px !important;

    box-shadow:
        0 20px 50px rgba(0,0,0,.12) !important;

    transition:.4s ease !important;
}

.vx-benefits-image img:hover{
    transform:scale(1.03) !important;
}

/* Mobile */

@media(max-width:991px){

    .vx-benefits-content{
        padding:35px !important;
        margin-top:30px !important;
    }

    .vx-benefits-content h2{
        font-size:1.5rem !important;
    }
}

@media(max-width:768px){

    .vx-benefits-content{
        padding:25px !important;
        border-radius:25px !important;
    }

    .vx-benefits-content h2{
        font-size:1.5rem !important;
    }

    .vx-benefits-content p{
        font-size:.95rem !important;
        line-height:1.8 !important;
    }
}


/* =========================================
   CONTENT CARD STYLE
========================================= */

.vx-content-card{
    position:relative !important;

    background:#ffffff !important;

    padding:50px !important;

    border-left:6px solid #990b2c !important;

    border-radius:35px !important;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08) !important;

    overflow:hidden !important;

    height:100% !important;

    transition:.4s ease !important;
}

/* Hover */

.vx-content-card:hover{
    transform:translateY(-8px) !important;

    box-shadow:
        0 25px 60px rgba(153,11,44,.15) !important;
}

/* Decorative Glow */

.vx-content-card::before{
    content:'' !important;

    position:absolute !important;

    top:-120px !important;
    left:-120px !important;

    width:280px !important;
    height:280px !important;

    background:
    radial-gradient(
        rgba(153,11,44,.08),
        transparent 70%
    ) !important;

    pointer-events:none !important;
}

/* Section Tag */

.vx-content-card .vx-section-tag{
    display:inline-block !important;

    background:#990b2c !important;

    color:#fff !important;

    padding:12px 22px !important;

    border-radius:6px !important;

    font-size:11px !important;

    font-weight:700 !important;

    letter-spacing:4px !important;

    text-transform:uppercase !important;

    margin-bottom:25px !important;
}

/* Title */

.vx-content-card h2{
    font-size:2rem !important;

    font-weight:800 !important;

    line-height:1.2 !important;

    color:#111 !important;

    margin-bottom:25px !important;
}

/* Paragraph */

.vx-content-card p{
    color:#555 !important;

    font-size:1.05rem !important;

    line-height:2 !important;

    margin-bottom:20px !important;

    text-align:justify !important;
}

/* Mobile */

@media(max-width:991px){

    .vx-content-card{
        padding:35px !important;
        margin-bottom:30px !important;
    }

    .vx-content-card h2{
        font-size:1.5rem !important;
    }
}

@media(max-width:768px){

    .vx-content-card{
        padding:25px !important;

        border-left:5px solid #990b2c !important;

        border-radius:25px !important;
    }

    .vx-content-card h2{
        font-size:1.5rem !important;
    }

    .vx-content-card p{
        font-size:.95rem !important;

        line-height:1.8 !important;
    }
}

/* =========================================
   SECTORS CONTENT CARD
========================================= */

.vx-sectors-content{
    position:relative !important;

    background:#ffffff !important;

    padding:55px !important;

    border-left:6px solid #990b2c !important;

    border-radius:35px !important;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08) !important;

    overflow:hidden !important;

    height:100% !important;

    transition:.4s ease !important;
}

.vx-sectors-content:hover{
    transform:translateY(-6px) !important;

    box-shadow:
        0 25px 60px rgba(153,11,44,.15) !important;
}

/* Decorative Effect */

.vx-sectors-content::before{
    content:'' !important;

    position:absolute !important;

    top:-100px !important;
    left:-100px !important;

    width:240px !important;
    height:240px !important;

    background:
    radial-gradient(
        rgba(153,11,44,.08),
        transparent 70%
    ) !important;

    pointer-events:none !important;
}

/* Tag */

.vx-sectors-content .vx-section-tag{
    display:inline-block !important;

    background:#990b2c !important;

    color:#fff !important;

    padding:10px 22px !important;

    border-radius:6px !important;

    font-size:11px !important;

    font-weight:700 !important;

    letter-spacing:3px !important;

    text-transform:uppercase !important;

    margin-bottom:25px !important;
}

/* Title */

.vx-sectors-content h2{
    font-size:2rem !important;

    font-weight:800 !important;

    color:#111 !important;

    line-height:1.2 !important;

    margin-bottom:25px !important;
}

/* List */

.vx-sectors-list{
    list-style:none !important;

    padding:0 !important;

    margin:0 !important;
}

.vx-sectors-list li{
    position:relative !important;

    padding-left:38px !important;

    margin-bottom:18px !important;

    color:#444 !important;

    font-size:1.05rem !important;

    font-weight:500 !important;
}

.vx-sectors-list li::before{
    content:"✓" !important;

    position:absolute !important;

    left:0 !important;
    top:2px !important;

    width:24px !important;
    height:24px !important;

    background:#990b2c !important;

    color:#fff !important;

    border-radius:50% !important;

    text-align:center !important;

    line-height:24px !important;

    font-size:12px !important;

    font-weight:700 !important;
}

/* Mobile */

@media(max-width:991px){

    .vx-sectors-content{
        padding:35px !important;
        margin-top:30px !important;
    }

    .vx-sectors-content h2{
        font-size:1.5rem !important;
    }
}

@media(max-width:768px){

    .vx-sectors-content{
        padding:25px !important;

        border-left:5px solid #990b2c !important;

        border-radius:25px !important;
    }

    .vx-sectors-content h2{
        font-size:1.5rem !important;
    }

    .vx-sectors-list li{
        font-size:.95rem !important;
    }
}

.vx-sectors-image img{
    width:100% !important;
    border-radius:35px !important;
    box-shadow:0 20px 50px rgba(0,0,0,.12) !important;
    transition:.4s ease !important;
}

.vx-sectors-image img:hover{
    transform:scale(1.03) !important;
}

@media(max-width:991px){

    .vx-sectors-image{
        margin-top:30px !important;
    }

    .vx-sectors-image img{
        border-radius:25px !important;
    }
}

/* =========================================
   BENEFITS CONTENT CARD
========================================= */

.vx-benefits-content{
    position:relative !important;

    background:#fff !important;

    padding:55px !important;

    border-left:6px solid #990b2c !important;

    border-radius:35px !important;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08) !important;

    overflow:hidden !important;

    height:100% !important;

    transition:.4s ease !important;
}

.vx-benefits-content:hover{
    transform:translateY(-6px) !important;

    box-shadow:
    0 25px 60px rgba(153,11,44,.15) !important;
}

.vx-benefits-content::before{
    content:'' !important;

    position:absolute !important;

    top:-100px !important;
    left:-100px !important;

    width:240px !important;
    height:240px !important;

    background:
    radial-gradient(
        rgba(153,11,44,.08),
        transparent 70%
    ) !important;
}

.vx-benefits-content h2{
    font-size:2rem !important;

    font-weight:800 !important;

    color:#111 !important;

    line-height:1.2 !important;

    margin-bottom:25px !important;
}

.vx-benefits-image img{
    width:100% !important;

    border-radius:35px !important;

    box-shadow:
    0 20px 50px rgba(0,0,0,.12) !important;
}

@media(max-width:768px){

    .vx-benefits-content{
        padding:25px !important;
        border-radius:25px !important;
    }

    .vx-benefits-content h2{
        font-size:1.5rem !important;
    }
}

/* =========================================
   MODERN CTA SECTION
========================================= */

.vx-cta-section{
    padding:100px 0 !important;
    background:#f5f5f5 !important;
}

.vx-cta-section .text-center{

    position:relative !important;

    background:linear-gradient(
    135deg,
    #990b2c 0%,
    #7d0823 100%) !important;

    padding:70px 60px !important;

    border-radius:30px !important;

    overflow:hidden !important;

    box-shadow:
    0 25px 60px rgba(153,11,44,.25) !important;
}

/* Decorative Shapes */

.vx-cta-section .text-center::before{
    content:'' !important;

    position:absolute !important;

    width:260px !important;
    height:260px !important;

    top:-120px !important;
    right:-120px !important;

    background:rgba(255,255,255,.08) !important;

    border-radius:50% !important;
}

.vx-cta-section .text-center::after{
    content:'' !important;

    position:absolute !important;

    width:180px !important;
    height:180px !important;

    bottom:-80px !important;
    left:-80px !important;

    background:rgba(255,255,255,.06) !important;

    border-radius:50% !important;
}

/* Tag */

.vx-cta-section .vx-section-tag{

    display:inline-block !important;

    background:#ffffff !important;

    color:#990b2c !important;

    padding:10px 22px !important;

    border-radius:50px !important;

    font-size:12px !important;

    font-weight:700 !important;

    letter-spacing:3px !important;

    text-transform:uppercase !important;

    margin-bottom:25px !important;
}

/* Title */

.vx-cta-section h2{

    font-size:2rem !important;

    font-weight:800 !important;

    color:#ffffff !important;

    line-height:1.2 !important;

    margin-bottom:20px !important;
}

/* Description */

.vx-cta-section p{

    max-width:850px !important;

    margin:0 auto 35px auto !important;

    font-size:1.05rem !important;

    color:rgba(255,255,255,.9) !important;

    line-height:1.9 !important;
}

/* Button */

.vx-cta-section .vx-btn-primary{

    display:inline-block !important;

    padding:16px 38px !important;

    background:#ffffff !important;

    color:#990b2c !important;

    border-radius:50px !important;

    font-size:14px !important;

    font-weight:700 !important;

    text-transform:uppercase !important;

    text-decoration:none !important;

    transition:.4s ease !important;
}

.vx-cta-section .vx-btn-primary:hover{

    background:#111 !important;

    color:#fff !important;

    transform:translateY(-5px) !important;
}

/* Mobile */

@media(max-width:768px){

    .vx-cta-section .text-center{
        padding:45px 25px !important;
    }

    .vx-cta-section h2{
        font-size:1.5rem !important;
    }

    .vx-cta-section p{
        font-size:.95rem !important;
    }

    .vx-cta-section .vx-btn-primary{
        width:100% !important;
    }
}


/* =========================================
   CONTRACT SECTION
========================================= */

.vx-contract-section{
    padding:100px 0 !important;
    background:#f7f7f7 !important;
}

.vx-contract-section .col-lg-6:first-child{

    background:#ffffff !important;

    padding:50px !important;

    border-left:6px solid #990b2c !important;

  border-radius:35px !important;

    box-shadow:0 15px 40px rgba(0,0,0,.08) !important;

    position:relative !important;

    overflow:hidden !important;

    transition:.4s ease !important;
}

.vx-contract-section .col-lg-6:first-child:hover{

    transform:translateY(-8px) !important;

    box-shadow:0 25px 60px rgba(153,11,44,.15) !important;
}

/* Top Glow */

.vx-contract-section .col-lg-6:first-child::before{

    content:'' !important;

    position:absolute !important;

    top:-120px !important;
    left:-120px !important;

    width:260px !important;
    height:260px !important;

    background:radial-gradient(
        rgba(153,11,44,.08),
        transparent 70%
    ) !important;

    pointer-events:none !important;
}

/* Tag */

.vx-contract-section .vx-section-tag{

    display:inline-block !important;

    background:#990b2c !important;

    color:#ffffff !important;

    padding:12px 22px !important;

    border-radius:6px !important;

    font-size:11px !important;

    font-weight:700 !important;

    letter-spacing:3px !important;

    text-transform:uppercase !important;

    margin-bottom:25px !important;
}

/* Heading */

.vx-contract-section h2{

    font-size:2rem !important;

    font-weight:800 !important;

    line-height:1.2 !important;

    color:#111111 !important;

    margin-bottom:25px !important;
}

/* Paragraph */

.vx-contract-section p{

    font-size:1.05rem !important;

    line-height:1.9 !important;

    color:#555555 !important;

    margin-bottom:25px !important;

    text-align:justify !important;
}

/* List */

.vx-contract-section .vx-benefits-list{

    list-style:none !important;

    padding:0 !important;

    margin:0 !important;
}

.vx-contract-section .vx-benefits-list li{

    position:relative !important;

    padding-left:40px !important;

    margin-bottom:18px !important;

    font-size:1rem !important;

    font-weight:500 !important;

    color:#333333 !important;
}

/* Tick Icon */

.vx-contract-section .vx-benefits-list li::before{

    content:"✓" !important;

    position:absolute !important;

    left:0 !important;

    top:2px !important;

    width:24px !important;

    height:24px !important;

    background:#990b2c !important;

    color:#ffffff !important;

    border-radius:50% !important;

    text-align:center !important;

    line-height:24px !important;

    font-size:13px !important;

    font-weight:700 !important;
}

/* Image */

.vx-contract-section img{

    width:100% !important;

    border-radius:25px !important;

    box-shadow:0 20px 50px rgba(0,0,0,.12) !important;

    transition:.4s ease !important;
}

.vx-contract-section img:hover{

    transform:scale(1.03) !important;
}

/* Mobile */

@media(max-width:991px){

    .vx-contract-section .col-lg-6:first-child{

        padding:35px !important;

        margin-bottom:30px !important;

        border-radius:25px!important;
    }

    .vx-contract-section h2{

        font-size:1.5rem !important;
    }
}

@media(max-width:768px){

    .vx-contract-section{

        padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-contract-section .col-lg-6:first-child{

        padding:25px !important;
    }

    .vx-contract-section h2{

        font-size:1.5rem !important;
    }

    .vx-contract-section p{

        font-size:.95rem !important;
    }
}

/* =========================================
   HOTEL SERVICES SECTION
========================================= */

.vx-services-section{
    padding:100px 0 !important;
    background:#f8f8f8 !important;
}

.vx-heading{
    margin-bottom:60px !important;
}

.vx-heading .vx-section-tag{
    display:inline-block !important;
    color:#990b2c !important;
    font-size:12px !important;
    font-weight:700 !important;
    letter-spacing:4px !important;
    text-transform:uppercase !important;
    margin-bottom:12px !important;
}

.vx-heading h2{
    font-size:2rem !important;
    font-weight:800 !important;
    color:#111 !important;
    margin-bottom:15px !important;
}

.vx-heading p{
    max-width:700px !important;
    margin:auto !important;
    color:#666 !important;
    line-height:1.8 !important;
}

/* Cards */

.vx-service-card{

    background:#990b2c !important;

    padding:35px 30px !important;

    border-radius:20px !important;

    text-align:center !important;

    height:100% !important;

    transition:.4s ease !important;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08) !important;

    position:relative !important;

    overflow:hidden !important;
}

.vx-service-card::before{

    content:'' !important;

    position:absolute !important;

    top:-80px !important;
    right:-80px !important;

    width:180px !important;
    height:180px !important;

    background:rgba(255,255,255,.05) !important;

    border-radius:50% !important;
}

.vx-service-card:hover{

    transform:translateY(-10px) !important;

    background:#111 !important;

    box-shadow:
    0 20px 40px rgba(0,0,0,.18) !important;
}

.vx-service-card h3{

    color:#fff !important;

    font-size:1.25rem !important;

    font-weight:700 !important;

    margin-bottom:18px !important;

    line-height:1.4 !important;
}

.vx-service-card p{

    color:rgba(255,255,255,.90) !important;

    font-size:.95rem !important;

    line-height:1.9 !important;

    margin:0 !important;
}

/* Mobile */

@media(max-width:991px){

    .vx-services-section{
        padding:80px 0 !important;
    }

    .vx-heading h2{
        font-size:1.5rem !important;
    }

    .vx-service-card{
        padding:30px 25px !important;
    }
}

@media(max-width:768px){

    .vx-services-section{
        padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-heading h2{
        font-size:1.5rem !important;
    }

    .vx-service-card h3{
        font-size:1.15rem !important;
    }

    .vx-service-card p{
        font-size:.9rem !important;
    }
}

.vx-heading .vx-section-tag{
    color: white !important;
}

/* =========================================
   FAQ SECTION
========================================= */

.vx-faq-section{
    padding:100px 0 !important;
    background:#ffffff !important;
}

.vx-faq-section .accordion-item{
    border:none !important;
    margin-bottom:12px !important;
}

.vx-faq-section .accordion-button{

    background:#990b2c !important;

    color:#fff !important;

    font-size:15px !important;

    font-weight:600 !important;

    box-shadow:none !important;

    padding:18px 25px !important;
}

.vx-faq-section .accordion-button:not(.collapsed){
    background:#990b2c !important;
    color:#fff !important;
}

.vx-faq-section .accordion-button:focus{
    box-shadow:none !important;
}

.vx-faq-section .accordion-body{

    background:#f8f8f8 !important;

    padding:20px 25px !important;

    color:#555 !important;

    line-height:1.8 !important;

    border-left:4px solid #990b2c !important;
}

.vx-faq-section .accordion-button::after{
    filter:brightness(0) invert(1);
}

/* =========================================
   COMMON SECTION STYLING
========================================= */

.vx-sectors-section,
.vx-benefits-section,
.vx-contract-section{
    padding:100px 0 !important;
    background:#f7f7f7 !important;
}

/* =========================================
   CONTENT CARD
========================================= */

.vx-content-card{
    position:relative !important;

    background:#ffffff !important;

    padding:50px !important;

    border-left:6px solid #990b2c !important;

    border-radius:35px !important;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08) !important;

    overflow:hidden !important;

    transition:.4s ease !important;
}

.vx-content-card:hover{
    transform:translateY(-8px) !important;

    box-shadow:
    0 25px 60px rgba(153,11,44,.15) !important;
}

/* Glow */

.vx-content-card::before{
    content:'' !important;

    position:absolute !important;

    top:-120px !important;
    left:-120px !important;

    width:260px !important;
    height:260px !important;

    background:
    radial-gradient(
    rgba(153,11,44,.08),
    transparent 70%
    ) !important;

    pointer-events:none !important;
}

/* =========================================
   SECTION TAG
========================================= */

.vx-section-tag{
    display:inline-block !important;

    background:#990b2c !important;

    color:#fff !important;

    padding:12px 22px !important;

    border-radius:6px !important;

    font-size:11px !important;

    font-weight:700 !important;

    letter-spacing:3px !important;

    text-transform:uppercase !important;

    margin-bottom:25px !important;
}

/* =========================================
   HEADINGS
========================================= */

.vx-content-card h2,
.vx-benefits-section h2,
.vx-sectors-section h2,
.vx-contract-section h2{
    font-size:2rem !important;

    font-weight:800 !important;

    line-height:1.2 !important;

    color:#111 !important;

    margin-bottom:25px !important;
}

/* =========================================
   PARAGRAPH
========================================= */

.vx-content-card p,
.vx-benefits-section p,
.vx-sectors-section p,
.vx-contract-section p{
    color:#555 !important;

    font-size:1.05rem !important;

    line-height:1.9 !important;

    text-align:justify !important;
}

/* =========================================
   ICON LIST
========================================= */

.vx-icon-list,
.vx-benefits-list{
    list-style:none !important;

    padding:0 !important;

    margin:0 !important;
}

.vx-icon-list li,
.vx-benefits-list li{
    position:relative !important;

    padding-left:42px !important;

    margin-bottom:18px !important;

    color:#333 !important;

    font-size:1rem !important;

    font-weight:500 !important;
}

.vx-icon-list li i{
    position:absolute !important;

    left:0 !important;

    top:2px !important;

    width:26px !important;

    height:26px !important;

    line-height:26px !important;

    text-align:center !important;

    border-radius:50% !important;

    background:#990b2c !important;

    color:#fff !important;

    font-size:12px !important;
}

/* Tick List */

.vx-benefits-list li::before{
    content:"✓" !important;

    position:absolute !important;

    left:0 !important;

    top:2px !important;

    width:24px !important;

    height:24px !important;

    line-height:24px !important;

    text-align:center !important;

    border-radius:50% !important;

    background:#990b2c !important;

    color:#fff !important;

    font-size:12px !important;

    font-weight:700 !important;
}

/* =========================================
   IMAGE DESIGN
========================================= */

.vx-sectors-section img,
.vx-benefits-section img,
.vx-contract-section img{
    width:100% !important;

    border-radius:30px !important;

    box-shadow:
    0 20px 50px rgba(0,0,0,.12) !important;

    transition:.4s ease !important;

    object-fit:cover !important;
}

.vx-sectors-section img:hover,
.vx-benefits-section img:hover,
.vx-contract-section img:hover{
    transform:scale(1.03) !important;
}

/* =========================================
   SERVICES SECTION
========================================= */

.vx-services-section{
    padding:100px 0 !important;
    background:#fff !important;
}

.vx-service-card{
    background:#990b2c !important;

    color:#fff !important;

    padding:40px !important;

    border-radius:25px !important;

    text-align:center !important;

    height:100% !important;

    transition:.4s ease !important;
}

.vx-service-card:hover{
    transform:translateY(-10px) !important;

    background:#111 !important;
}

.vx-service-card i{
    font-size:40px !important;

    margin-bottom:20px !important;

    color:#fff !important;
}

.vx-service-card h4{
    font-size:1.3rem !important;

    font-weight:700 !important;

    margin-bottom:15px !important;
}

.vx-service-card p{
    color:#eee !important;
    text-align: center !important;
}

/* =========================================
   WHY CHOOSE US
========================================= */

.vx-why-section{
    padding:100px 0 !important;

    background:#000 !important;
}

.vx-why-section h2{
    color:#fff !important;

    text-align:center !important;

    margin-bottom:60px !important;
}

/* =========================================
   PROCESS SECTION
========================================= */

.vx-process-section{
    padding:100px 0 !important;

    background:#f7f7f7 !important;
}

.vx-process-card{
    background:#990b2c !important;

    color:#fff !important;

    padding:35px !important;

    border-radius:20px !important;

    height:100% !important;

    transition:.4s ease !important;
}

.vx-process-card:hover{
    transform:translateY(-10px) !important;
}

.vx-process-card i{
    font-size:45px !important;

    margin-bottom:20px !important;
}

.vx-process-card h4{
    color:#fff !important;
}

/* =========================================
   CTA SECTION
========================================= */
.vx-cta-section{
    padding:100px 0 !important;
    background:transparent !important;
}

.vx-cta-section h2{
    color:#fff !important;

    font-size:2rem !important;

    margin:25px 0 !important;
}

.vx-cta-section p{
    color:#ddd !important;
}

/* =========================================
   FAQ SECTION
========================================= */

.vx-faq-section{
    padding:100px 0 !important;

    background:#fff !important;
}

.vx-faq-section h2{
    text-align:center !important;

    margin-bottom:50px !important;
}

.accordion-button{
    background:#000 !important;

    color:#fff !important;

    font-weight:600 !important;
}

.accordion-button:not(.collapsed){
    background:#990b2c !important;

    color:#fff !important;
}

.accordion-body{
    background:#fff !important;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

    .vx-content-card{
        margin-bottom:40px !important;

        padding:35px !important;
    }

    .vx-content-card h2{
        font-size:1.5rem !important;
    }
}

@media(max-width:768px){

    .vx-services-section,
    .vx-sectors-section,
    .vx-benefits-section,
    .vx-contract-section,
    .vx-process-section,
    .vx-why-section,
    .vx-faq-section{
        padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-content-card{
        padding:25px !important;

        border-radius:25px !important;
    }

    .vx-content-card h2{
        font-size:1.5rem !important;
    }

    .vx-content-card p{
        font-size:.95rem !important;
    }

    .vx-cta-section h2{
        font-size:1.5rem !important;
    }
}

/* =========================================
   PROCESS SECTION
========================================= */

.vx-process-section{
    padding:100px 0 !important;
    background:#f8f9fc !important;
}

.vx-process-section .vx-heading{
    margin-bottom:60px !important;
}

.vx-process-section .vx-heading h2{
    font-size:2rem !important;
    font-weight:800 !important;
    color:#111 !important;
    margin-bottom:0 !important;
}

/* Process Card */

.vx-process-card{
    background:#ffffff !important;
    padding:35px 25px !important;
    border-radius:25px !important;
    text-align:center !important;
    height:100% !important;
    border:1px solid rgba(153,11,44,.08) !important;
    box-shadow:0 15px 40px rgba(0,0,0,.06) !important;
    transition:.4s ease !important;
    position:relative !important;
    overflow:hidden !important;
}

.vx-process-card::before{
    content:'' !important;
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    width:100% !important;
    height:4px !important;
    background:#990b2c !important;
}

.vx-process-card:hover{
    transform:translateY(-10px) !important;
    box-shadow:0 25px 60px rgba(153,11,44,.15) !important;
}

/* Icon */

.vx-process-card i{
    width:80px !important;
    height:80px !important;
    line-height:80px !important;
    font-size:32px !important;
    border-radius:50% !important;
    background:rgba(153,11,44,.1) !important;
    color:#990b2c !important;
    margin-bottom:20px !important;
    display:inline-block !important;
    transition:.4s ease !important;
}

.vx-process-card:hover i{
    background:#990b2c !important;
    color:#ffffff !important;
    transform:rotateY(180deg) !important;
}

/* Heading */

.vx-process-card h4{
    font-size:1.25rem !important;
    font-weight:700 !important;
    color:#111 !important;
    margin-bottom:15px !important;
    line-height:1.4 !important;
}

/* Text */

.vx-process-card p{
    font-size:.95rem !important;
    color:#666 !important;
    line-height:1.8 !important;
    margin-bottom:0 !important;
}

/* Mobile */

@media(max-width:991px){

    .vx-process-section{
        padding:80px 0 !important;
    }

    .vx-process-section .vx-heading h2{
        font-size:1.5rem !important;
    }

    .vx-process-card{
        padding:30px 20px !important;
    }
}

@media(max-width:768px){

    .vx-process-section{
         padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-process-section .vx-heading{
        margin-bottom:40px !important;
    }

    .vx-process-section .vx-heading h2{
        font-size:1.5rem !important;
    }

    .vx-process-card i{
        width:70px !important;
        height:70px !important;
        line-height:70px !important;
        font-size:28px !important;
    }

    .vx-process-card h4{
        font-size:1.1rem !important;
    }
}

.vx-cta-section{
    padding:100px 0 !important;
    background:#f8f9fc !important;
}

.vx-cta-box{
    background:linear-gradient(135deg,#990b2c,#b60d35) !important;
    padding:80px 50px !important;
    border-radius:30px !important;
    color:#fff !important;
    position:relative !important;
    overflow:hidden !important;
}

.vx-cta-box h2{
    font-size:2rem !important;
    font-weight:800 !important;
    color:#fff !important;
    margin:25px 0 !important;
}

.vx-cta-box p{
    color:rgba(255,255,255,.9) !important;
    margin-bottom:30px !important;
}

.vx-cta-buttons{
    display:flex !important;
    justify-content:center !important;
    gap:15px !important;
    flex-wrap:wrap !important;
}

.vx-contract-section{
    padding:100px 0 !important;
    background:#fff !important;
}

.vx-contract-content{
    background:#fff !important;
    padding:50px !important;
    border-left:6px solid #990b2c !important;
    border-radius:35px !important;
    box-shadow:0 15px 40px rgba(0,0,0,.08) !important;
}

.vx-contract-content h2{
    font-size:2rem !important;
    font-weight:800 !important;
    margin-bottom:25px !important;
}

.vx-contract-content img{
    border-radius:25px !important;
}

.vx-why-us{
    padding:100px 0 !important;
    background:white!important;
}


.vx-why-us .vx-heading h2{
    color:black !important;
    font-size:2rem !important;
    font-weight:800 !important;
}

.vx-section-heading p{
    text-align: center !important;
}

.vx-why-card{
    background:#990b2c !important;
    padding:35px !important;
    text-align:center !important;
    color:#fff !important;
    border-radius:20px !important;
    height:100% !important;
    transition:.4s ease !important;
}

.vx-why-card:hover{
    transform:translateY(-8px) !important;
}

.vx-why-card h4{
    color:#fff !important;
    font-size:1.2rem !important;
    font-weight:700 !important;
}

/* =========================================
   FIRE MARSHAL SECTORS SECTION
========================================= */

.vx-sectors-section{
    padding:100px 0 !important;
    background:#f7f7f7 !important;
}

/* Content Card */

.vx-sector-content{
    background:#ffffff !important;
    padding:50px !important;
    border-left:6px solid #990b2c !important;
    border-radius: 35px!important;
    box-shadow:0 15px 40px rgba(0,0,0,.08) !important;
    position:relative !important;
    overflow:hidden !important;
    transition:.4s ease !important;
}

.vx-sector-content:hover{
    transform:translateY(-8px) !important;
    box-shadow:0 25px 60px rgba(153,11,44,.15) !important;
}

/* Decorative Glow */

.vx-sector-content::before{
    content:'' !important;
    position:absolute !important;
    top:-100px !important;
    left:-100px !important;
    width:250px !important;
    height:250px !important;
    background:radial-gradient(
        rgba(153,11,44,.08),
        transparent 70%
    ) !important;
    pointer-events:none !important;
}

/* Heading */

.vx-sector-content h2{
    font-size:2rem !important;
    font-weight:800 !important;
    line-height:1.2 !important;
    color:#111111 !important;
    margin-bottom:30px !important;
}

/* List */

.vx-sector-list{
    list-style:none !important;
    padding:0 !important;
    margin:0 !important;
}

.vx-sector-list li{
    display:flex !important;
    align-items:center !important;
    gap:15px !important;
    margin-bottom:18px !important;
    font-size:1rem !important;
    font-weight:500 !important;
    color:#333333 !important;
}

.vx-sector-list li i{
    width:42px !important;
    height:42px !important;
    flex-shrink:0 !important;

    background:#990b2c !important;
    color:#ffffff !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    border-radius:50% !important;

    font-size:16px !important;

    transition:.3s ease !important;
}

.vx-sector-list li:hover i{
    transform:scale(1.1) !important;
}

/* Image */

.vx-sectors-section img{
    width:100% !important;
    border-radius:25px !important;
    box-shadow:0 20px 50px rgba(0,0,0,.12) !important;
    transition:.4s ease !important;
}

.vx-sectors-section img:hover{
    transform:scale(1.03) !important;
}

/* Mobile */

@media(max-width:991px){

    .vx-sector-content{
        padding:35px !important;
        margin-bottom:30px !important;
        border-radius:0 25px 25px 0 !important;
    }

    .vx-sector-content h2{
        font-size:1.5rem !important;
    }
}

@media(max-width:768px){

    .vx-sectors-section{
        padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-sector-content{
        padding:25px !important;
    }

    .vx-sector-content h2{
        font-size:1.5rem !important;
    }

    .vx-sector-list li{
        font-size:.95rem !important;
    }

    .vx-sector-list li i{
        width:36px !important;
        height:36px !important;
        font-size:14px !important;
    }
}


/* =========================================
   FAQ SECTION
========================================= */

.vx-faq-section{
    padding:100px 0 !important;
    background:#f7f7f7 !important;
}

.vx-faq-section .vx-heading{
    margin-bottom:50px !important;
}

.vx-faq-section .vx-heading h2{
    font-size:2rem !important;
    font-weight:800 !important;
    color:#111 !important;
    text-align:center !important;
}

/* Accordion */

#fireMarshalFAQ .accordion-item{
    border:none !important;
    margin-bottom:15px !important;
    border-radius:8px !important;
    overflow:hidden !important;
    box-shadow:0 8px 20px rgba(0,0,0,.08) !important;
}

/* Question */

#fireMarshalFAQ .accordion-button{
    background:#000000 !important;
    color:#ffffff !important;
    font-size:16px !important;
    font-weight:600 !important;
    padding:18px 25px !important;
    box-shadow:none !important;
}

/* Active Question */

#fireMarshalFAQ .accordion-button:not(.collapsed){
    background:#990b2c !important;
    color:#ffffff !important;
}

/* Remove Bootstrap Blue */

#fireMarshalFAQ .accordion-button:focus{
    box-shadow:none !important;
    border:none !important;
}

/* Plus / Minus Icon */

#fireMarshalFAQ .accordion-button::after{
    filter:brightness(0) invert(1);
}

/* Answer */

#fireMarshalFAQ .accordion-body{
    background:#ffffff !important;
    color:#555 !important;
    font-size:15px !important;
    line-height:1.9 !important;
    padding:25px !important;
    border-top:1px solid #eee !important;
}

/* Hover */

#fireMarshalFAQ .accordion-button:hover{
    background:#990b2c !important;
    color:#fff !important;
}

/* Mobile */

@media(max-width:768px){

    .vx-faq-section{
        padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-faq-section .vx-heading h2{
        font-size:1.5rem !important;
    }

    #fireMarshalFAQ .accordion-button{
        font-size:14px !important;
        padding:15px 18px !important;
    }

    #fireMarshalFAQ .accordion-body{
        font-size:14px !important;
        padding:20px !important;
    }
}

/* =========================================
   K9 SECTORS SECTION
========================================= */

.vx-sectors-section{
    padding:100px 0 !important;
    background:#f7f7f7 !important;
}

.vx-sector-content h2{
    font-size:2rem !important;
    font-weight:800 !important;
    color:#111 !important;
    margin-bottom:20px !important;
    line-height:1.2 !important;
}

.vx-sector-content p{
    font-size:1rem !important;
    color:#666 !important;
    line-height:1.8 !important;
    margin-bottom:30px !important;
}

.vx-sector-list{
    list-style:none !important;
    padding:0 !important;
    margin:0 !important;
}

.vx-sector-list li{
    display:flex !important;
    align-items:flex-start !important;
    gap:15px !important;
    margin-bottom:18px !important;
    font-size:1rem !important;
    font-weight:500 !important;
    color:#333 !important;
}

.vx-sector-list li i{
    width:40px !important;
    height:40px !important;
    min-width:40px !important;
    background:#990b2c !important;
    color:#fff !important;
    border-radius:8px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    font-size:16px !important;
}

.vx-sector-image img{
    width:100% !important;
    border-radius:20px !important;
    box-shadow:0 15px 40px rgba(0,0,0,.12) !important;
}

@media(max-width:991px){

    .vx-sector-content{
        margin-bottom:40px !important;
    }

    .vx-sector-content h2{
        font-size:1.5rem !important;
    }

}

@media(max-width:768px){

    .vx-sectors-section{
         padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-sector-content h2{
        font-size:1.6rem !important;
    }

}

/* =========================================
   K9 BENEFITS SECTION
========================================= */

.vx-benefits-section{
    padding:100px 0 !important;
    background:#ffffff !important;
}

.vx-benefits-image img{
    width:100% !important;
    border-radius:20px !important;
    box-shadow:0 15px 40px rgba(0,0,0,.12) !important;
}

.vx-benefits-content h2{
    font-size:2rem !important;
    font-weight:800 !important;
    color:#111 !important;
    margin-bottom:35px !important;
    line-height:1.2 !important;
}

.vx-benefit-item{
    display:flex !important;
    gap:18px !important;
    margin-bottom:22px !important;
}

.vx-benefit-icon{
    width:55px !important;
    height:55px !important;
    min-width:55px !important;
    background:#990b2c !important;
    color:#fff !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    border-radius:10px !important;
    font-size:20px !important;
}

.vx-benefit-item h4{
    font-size:1.1rem !important;
    font-weight:700 !important;
    margin-bottom:8px !important;
    color:#111 !important;
}

.vx-benefit-item p{
    margin:0 !important;
    color:#666 !important;
    line-height:1.7 !important;
}

@media(max-width:991px){

    .vx-benefits-image{
        margin-bottom:40px !important;
    }

    .vx-benefits-content h2{
        font-size:1.5rem !important;
    }

}

@media(max-width:768px){

    .vx-benefits-section{
        padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-benefits-content h2{
        font-size:1.5rem !important;
    }

}

/* =========================================
   K9 CTA SECTION
========================================= */

.vx-k9-cta-section{
    padding:100px 0 !important;
    background:#f7f7f7 !important;
}

.vx-k9-cta-box{
    background:linear-gradient(135deg,#990b2c,#b30f36) !important;
    padding:70px 50px !important;
    border-radius:25px !important;
    box-shadow:0 20px 60px rgba(153,11,44,.25) !important;
}

.vx-k9-cta-box .vx-section-tag{
    display:inline-block !important;
    background:#ffffff !important;
    color:#990b2c !important;
    padding:10px 20px !important;
    border-radius:6px !important;
    font-size:11px !important;
    font-weight:700 !important;
    letter-spacing:3px !important;
    text-transform:uppercase !important;
    margin-bottom:25px !important;
}

.vx-k9-cta-box h2{
    color:#ffffff !important;
    font-size:2rem !important;
    font-weight:800 !important;
    margin-bottom:20px !important;
    line-height:1.2 !important;
}

.vx-k9-cta-box p{
    color:rgba(255,255,255,.9) !important;
    font-size:1rem !important;
    line-height:1.9 !important;
    max-width:850px !important;
    margin:0 auto 30px !important;
}

.vx-k9-cta-buttons{
    display:flex !important;
    justify-content:center !important;
    gap:15px !important;
    flex-wrap:wrap !important;
}

.vx-k9-cta-buttons .vx-btn-primary{
    background:#ffffff !important;
    color:#990b2c !important;
}

.vx-k9-cta-buttons .vx-btn-primary:hover{
    background:#111 !important;
    color:#fff !important;
}

.vx-k9-cta-buttons .vx-btn-secondary{
    border:2px solid #fff !important;
    color:#fff !important;
    background:transparent !important;
}

.vx-k9-cta-buttons .vx-btn-secondary:hover{
    background:#fff !important;
    color:#990b2c !important;
}

@media(max-width:768px){

    .vx-k9-cta-section{
        padding:70px 0 !important;
    }

    .vx-k9-cta-box{
        padding:45px 25px !important;
    }

    .vx-k9-cta-box h2{
        font-size:1.5rem !important;
    }
}

/* =========================================
   K9 TESTIMONIALS
========================================= */

.vx-testimonials{
    padding:30px 0 !important;
    background:#f7f7f7 !important;
}

.vx-testimonials .vx-heading{
    margin-bottom:50px !important;
}

.vx-testimonials .vx-heading h2{
    font-size:2rem !important;
    font-weight:800 !important;
    color:#111 !important;
}

.vx-testimonial-card{
    background:#ffffff !important;
    padding:50px !important;
    text-align:center !important;
    border-radius:20px !important;
    box-shadow:0 15px 40px rgba(0,0,0,.08) !important;
    border-top:5px solid #990b2c !important;
}

.vx-testimonial-card i{
    font-size:40px !important;
    color:#990b2c !important;
    margin-bottom:20px !important;
}

.vx-testimonial-card p{
    font-size:1.05rem !important;
    line-height:2 !important;
    color:#555 !important;
    margin-bottom:25px !important;
    font-style:italic !important;
}

.vx-testimonial-card h5{
    font-size:1.1rem !important;
    font-weight:700 !important;
    color:#111 !important;
    margin-bottom:5px !important;
}

.vx-testimonial-card span{
    color:#990b2c !important;
    font-size:.95rem !important;
    font-weight:600 !important;
}

@media(max-width:768px){

    .vx-testimonials{
        padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-testimonials .vx-heading h2{
        font-size:1.5rem !important;
    }

    .vx-testimonial-card{
        padding:30px 25px !important;
    }
}
.carousel-indicators button{
    width:12px !important;
    height:12px !important;
    border-radius:50% !important;
    background:#990b2c !important;
}

.vx-testimonial-card{
    background:#fff !important;
    padding:50px !important;
    border-radius:20px !important;
    text-align:center !important;
    box-shadow:0 15px 40px rgba(0,0,0,.08) !important;
}

.vx-heading p{
    max-width:700px !important;
    margin:0 auto !important;
    text-align:center !important;
    color:#666 !important;
    line-height:1.8 !important;
}

.vx-cta-section p{
    text-align:center !important;
}


.vx-why-choose-section .row{
    row-gap: 20px !important;
}

.vx-why-choose-section .col-lg-4{
    margin-bottom: 20px !important;
}

.vx-services-section .row{
    row-gap: 30px !important;
}

.vx-services-section .col-lg-4{
    margin-bottom: 0 !important;
}

.vx-content-card-section{
    padding:80px 0;
    background:#f8f8f8;
}

.vx-content-card{
    background:#ffffff;
    padding:60px;
    border-radius:30px;
    border-left:8px solid #990b2c;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.vx-content-card h2{
    font-size:2rem;
    font-weight:700;
    color:#990b2c;
    margin-bottom:35px;
    line-height:1.2;
}

.vx-content-card p{
    font-size:1.2rem;
    line-height:2;
    color:#555;
    margin-bottom:25px;
}

.vx-content-card p:last-child{
    margin-bottom:0;
}

@media(max-width:768px){

    .vx-content-card{
        padding:35px 25px;
        border-radius:20px;
    }

    .vx-content-card h2{
        font-size:1.5rem;
    }

    .vx-content-card p{
        font-size:1rem;
        line-height:1.8;
    }

}
/* =========================
   FINAL CTA SECTION
========================= */

.vx-final-cta-section{
    padding:100px 0;
    background:linear-gradient(
        135deg,
        #990b2c 0%,
        #7d0823 100%
    );
    position:relative;
    overflow:hidden;
}

.vx-final-cta-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.15);
    pointer-events:none;
}

.vx-final-content{
    position:relative;
    z-index:2;
}

.vx-final-content .vx-section-tag{
    display:inline-block;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    color:#fff;
    padding:8px 18px;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
    border-radius:30px;
}

.vx-final-content h2{
    font-size:2rem;
    font-weight:800;
    color:#fff;
    line-height:1.2;
    margin-bottom:25px;
}

.vx-final-content p{
    font-size:16px;
    line-height:1.9;
    color:rgba(255,255,255,.85);
    margin-bottom:20px;
}

/* =========================
   CONTACT DETAILS
========================= */

.vx-contact-details{
    margin-top:40px;
}

.vx-contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:25px;
}

.vx-contact-item i{
    width:55px;
    height:55px;
    background:#fff;
    color:#990b2c;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    flex-shrink:0;
}

.vx-contact-item strong{
    display:block;
    color:#fff;
    font-size:18px;
    margin-bottom:5px;
}

.vx-contact-item p{
    margin:0;
    color:rgba(255,255,255,.85);
    font-size:15px;
}

/* =========================
   QUOTE FORM
========================= */

.vx-quote-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
    position:relative;
    overflow:hidden;
    z-index:2;
}

.vx-quote-form::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#990b2c;
}

.vx-quote-form h3{
    font-size:28px;
    font-weight:700;
    color:#111;
    margin-bottom:25px;
    text-align:center;
}

.vx-quote-form form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.vx-quote-form input,
.vx-quote-form select,
.vx-quote-form textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:10px;
    padding:14px 18px;
    font-size:15px;
    color:#333;
    background:#fff;
    transition:.3s ease;
}

.vx-quote-form input:focus,
.vx-quote-form select:focus,
.vx-quote-form textarea:focus{
    border-color:#990b2c;
    outline:none;
    box-shadow:0 0 0 4px rgba(153,11,44,.08);
}

.vx-quote-form textarea{
    resize:none;
}

.vx-quote-form button{
    background:linear-gradient(
        135deg,
        #990b2c,
        #c81445
    );
    color:#fff;
    border:none;
    padding:16px 30px;
    border-radius:10px;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:.3s ease;
    cursor:pointer;
}

.vx-quote-form button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(153,11,44,.25);
}

/* =========================
   MOBILE
========================= */

@media (max-width:991px){

    .vx-final-content{
        margin-bottom:50px;
    }

    .vx-final-content h2{
        font-size:1.5rem;
    }

    .vx-quote-form{
        padding:30px;
    }

}

@media (max-width:768px){

    .vx-final-cta-section{
        padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-final-content h2{
        font-size:1.5rem;
    }

    .vx-contact-item{
        gap:12px;
    }

    .vx-contact-item i{
        width:45px;
        height:45px;
        font-size:16px;
    }

    .vx-quote-form{
        padding:25px;
    }

    .vx-quote-form h3{
        font-size:24px;
    }

}


/* CLOSE PROTECTION BENEFITS */

.vx-cp-benefits .col-lg-5{
    display:none !important;
}

.vx-cp-benefits .col-lg-7{
    width:100% !important;
    max-width:100% !important;
    flex:0 0 100% !important;
}

.vx-cp-benefits .vx-benefits-content{
    max-width:1200px;
    margin:auto;
}

.vx-cp-benefits .vx-benefits-content > p{
    max-width:900px;
    margin-bottom:50px;
}

.vx-cp-benefits .vx-benefits-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.vx-cp-benefits .vx-benefit-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    background:#fff;
    padding:30px;
    border-radius:18px;
    border-left:5px solid #990b2c;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.vx-cp-benefits .vx-benefit-item:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.vx-cp-benefits .vx-benefit-item i{
    width:65px;
    height:65px;
    min-width:65px;
    background:#990b2c;
    color:#fff;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.vx-cp-benefits .vx-benefit-item h4{
    font-size:20px;
    margin-bottom:10px;
    color:#111;
    font-weight:700;
}

.vx-cp-benefits .vx-benefit-item p{
    margin:0;
    color:#666;
    line-height:1.8;
}

@media(max-width:768px){

    .vx-cp-benefits .vx-benefits-list{
        grid-template-columns:1fr;
    }

    .vx-cp-benefits .vx-benefit-item{
        padding:25px;
    }

}

.vx-feature-icon{
    margin-bottom:20px;
    text-align:center;
}

.vx-feature-icon i{
    font-size:35px !important;
    color:#fff;
    line-height:1;
    display:inline-block;
}


/* =========================
   CLEANING INTRO SECTION
========================= */

.vx-cleaning-intro-section{
    padding:100px 0;
    background:#f8f8f8;
    overflow:hidden;
}

.vx-cleaning-intro-content{
    padding-right:30px;
}

.vx-cleaning-tag{
    display:inline-block;
    background:linear-gradient(
        90deg,
        #990b2c 0%,
        #c81445 100%
    );
    color:#fff;
    padding:10px 22px;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    border-radius:6px;
    margin-bottom:25px;
}

.vx-cleaning-intro-content h2{
    font-size:2rem;
    font-weight:800;
    line-height:1.15;
    color:#111;
    margin-bottom:25px;
    text-transform:uppercase;
}

.vx-cleaning-intro-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

/* =========================
   FEATURE LIST
========================= */

.vx-cleaning-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:35px;
}

.vx-cleaning-feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    background:#fff;
    padding:15px 18px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    transition:.4s ease;
}

.vx-cleaning-feature-item:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(153,11,44,.12);
}

.vx-cleaning-feature-item i{
    width:38px;
    height:38px;
    background:#990b2c;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    flex-shrink:0;
}

.vx-cleaning-feature-item span{
    font-size:15px;
    font-weight:600;
    color:#111;
}

/* =========================
   IMAGE
========================= */

.vx-cleaning-intro-image{
    position:relative;
}

.vx-cleaning-intro-image img{
    width:100%;
    border-radius:12px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

/* =========================
   TABLET
========================= */

@media (max-width:991px){

    .vx-cleaning-intro-section{
        padding:80px 0;
    }

    .vx-cleaning-intro-content{
        padding-right:0;
        margin-bottom:50px;
    }

    .vx-cleaning-intro-content h2{
        font-size:1.5rem;
    }

}

@media (max-width:767px){

    .vx-cleaning-intro-section{
        padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-cleaning-intro-content h2{
        font-size:1.5rem;
    }

    .vx-cleaning-intro-content p{
        font-size:15px;
        line-height:1.8;
    }

    .vx-cleaning-features{
        grid-template-columns:1fr;
    }

    .vx-cleaning-feature-item{
        padding:14px 15px;
    }

}


.vx-cleaning-intro-content{
    background:#fff;
    padding:60px;
    border-radius: 30px;
    border-left:8px solid #990b2c;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}



/* optional hover effect */
.vx-cleaning-intro-content:hover{
    transform:translateY(-5px);
    transition:.4s ease;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* =========================
   CLEANING BENEFITS
========================= */

.vx-benefits-section{
    padding:100px 0;
    background:#f7f7f7;
}

.vx-benefits-wrapper{
    background:#fff;
    padding:70px;
    border-left:8px solid #990b2c;
    border-radius:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
}



.vx-benefits-wrapper h2{
    font-size:2rem;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.vx-benefits-intro{
    font-size:17px;
    color:#666;
    line-height:1.9;
    max-width:900px;
    margin-bottom:40px;
}

.vx-benefits-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.vx-benefit-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    background:#fafafa;
    border:1px solid #eee;
    padding:25px;
    border-radius:15px;
    transition:.4s ease;
}

.vx-benefit-item:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 30px rgba(153,11,44,.10);
}

.vx-benefit-icon{
    width:60px;
    height:60px;
    min-width:60px;
    background:#990b2c;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.vx-benefit-icon i{
    color:#fff;
    font-size:24px;
}

.vx-benefit-item h4{
    font-size:20px;
    font-weight:700;
    color:#111;
    margin-bottom:10px;
}

.vx-benefit-item p{
    margin:0;
    color:#666;
    line-height:1.8;
}



/* Mobile */

@media(max-width:991px){

    .vx-benefits-wrapper{
        padding:50px 35px;
    }

    .vx-benefits-wrapper h2{
        font-size:1.5rem;
    }

    .vx-benefits-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:767px){

    .vx-benefits-wrapper{
        padding:35px 25px;
    }

    .vx-benefits-wrapper h2{
        font-size:1.5rem;
    }

}


.vx-content-card-section{
    padding:100px 0 !important;
    background:#f7f7f7 !important;
}

.vx-content-card{
    background:#fff !important;
    padding:70px !important;
    border-left:8px solid #990b2c !important;
    border-radius:35px!important;
    box-shadow:0 15px 40px rgba(0,0,0,.08) !important;
    position:relative !important;
    overflow:hidden !important;
}



.vx-content-card .vx-section-tag{
    display:inline-block !important;
    background:#990b2c !important;
    color:#fff !important;
    padding:10px 22px !important;
    border-radius:6px !important;
    font-size:12px !important;
    font-weight:700 !important;
    letter-spacing:3px !important;
    text-transform:uppercase !important;
    margin-bottom:25px !important;
}

.vx-content-card h2{
    font-size:2rem !important;
    font-weight:800 !important;
    color:#111 !important;
    line-height:1.2 !important;
    margin-bottom:25px !important;
}

.vx-content-card p{
    font-size:17px !important;
    line-height:1.9 !important;
    color:#555 !important;
    margin-bottom:20px !important;
}

.vx-mini-card{
    height:100% !important;
    background:#fafafa !important;
    border:1px solid #eee !important;
    border-radius:15px !important;
    padding:30px 25px !important;
    display:flex !important;
    align-items:center !important;
    gap:18px !important;
    transition:.4s ease !important;
}

.vx-mini-card:hover{
    transform:translateY(-6px) !important;
    border-color:#990b2c !important;
    box-shadow:0 15px 35px rgba(153,11,44,.10) !important;
}

.vx-mini-card i{
    width:60px !important;
    height:60px !important;
    min-width:60px !important;
    background:#990b2c !important;
    color:#fff !important;
    border-radius:12px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    font-size:24px !important;
}

.vx-mini-card h4{
    font-size:22px !important;
    font-weight:700 !important;
    color:#111 !important;
    margin:0 !important;
    line-height:1.4 !important;
}

@media(max-width:991px){

    .vx-content-card{
        padding:50px 35px !important;
    }

    .vx-content-card h2{
        font-size:1.5rem !important;
    }

    .vx-mini-card h4{
        font-size:18px !important;
    }
}

@media(max-width:767px){

    .vx-content-card-section{
         padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-content-card{
        padding:35px 25px !important;
    }

    .vx-content-card h2{
        font-size:1.5rem !important;
    }

    .vx-content-card p{
        font-size:15px !important;
    }

    .vx-mini-card{
        flex-direction:column !important;
        text-align:center !important;
        gap:15px !important;
    }

    .vx-mini-card i{
        width:55px !important;
        height:55px !important;
        min-width:55px !important;
        font-size:20px !important;
    }

    .vx-mini-card h4{
        font-size:17px !important;
    }
}

.vx-contact-item a{
    color:inherit !important;
    text-decoration:none !important;
}

.vx-contact-item a:hover{
    color:grey !important;
}

/* =========================
   MOBILE STATS SECTION
========================= */

@media (max-width:768px){

    .vx-stats-bar{
        padding:30px 0 !important;
    }

    .vx-stats-bar .container{
        padding-left:15px !important;
        padding-right:15px !important;
    }

    .vx-stats-bar .row{
        display:flex !important;
        flex-wrap:wrap !important;
        gap:12px !important;
        margin:0 !important;
    }

    .vx-stats-bar .col-lg-3,
    .vx-stats-bar .col-md-3,
    .vx-stats-bar .col-6{
        width:calc(50% - 6px) !important;
        flex:0 0 calc(50% - 6px) !important;
        max-width:calc(50% - 6px) !important;
        padding:0 !important;
    }

    .vx-stat-card{
        padding:20px 12px !important;
        min-height:auto !important;
        border-radius:16px !important;
    }

    .vx-stat-card i{
        font-size:28px !important;
        margin-bottom:10px !important;
    }

    .vx-stat-number{
        font-size:28px !important;
        line-height:1 !important;
        margin-bottom:8px !important;
    }

    .vx-stat-title{
        font-size:13px !important;
        line-height:1.4 !important;
    }

}


@media (max-width:991px){

    .vx-mobile-header{
        display:block !important;
        background:#fff;
        position:relative;
        z-index:9999;
    }

    .vx-mobile-top{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:15px 20px;
        border-bottom:1px solid #eee;
    }

    .vx-mobile-logo img{
        height:50px;
    }

    .vx-mobile-toggle{
        background:none;
        border:none;
        font-size:26px;
        color:#990b2c;
        cursor:pointer;
    }

    .vx-mobile-menu{
        display:none;
        background:#111;
        padding:15px;
    }

    .vx-mobile-menu.active{
        display:block;
    }

    .vx-mobile-menu ul{
        list-style:none;
        margin:0;
        padding:0;
    }

    .vx-mobile-menu li{
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .vx-mobile-menu a,
    .vx-mobile-dropdown-btn{
        color:#fff;
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:14px 0;
        text-decoration:none;
        font-weight:600;
        cursor:pointer;
    }

    .vx-mobile-submenu{
        display:none;
        padding-left:15px !important;
        padding-bottom:10px !important;
    }

    .vx-mobile-submenu li{
        border:none;
    }

    .vx-mobile-submenu a{
        font-size:14px;
        color:#ddd;
        padding:8px 0;
    }

    .vx-mobile-dropdown.active .vx-mobile-submenu{
        display:block;
    }

}


/* =========================
   MOBILE HEADER
========================= */

.vx-mobile-header{
    display:none;
}

@media (max-width:991px){

    /* Hide Desktop Header */
    .main-header,
    .header-wrapper,
    .desktop-header,
    .navbar-wrapper,
    .main-navigation{
        display:none !important;
    }

    /* Mobile Header */
    .vx-mobile-header{
        display:block !important;
        background:#ffffff !important;
        position:sticky !important;
        top:0 !important;
        z-index:9999 !important;
        box-shadow:0 5px 20px rgba(0,0,0,.08) !important;
    }

    .vx-mobile-top{
        display:flex !important;
        align-items:center !important;
        justify-content:space-between !important;
        padding:15px 20px !important;
    }

    .vx-mobile-logo img{
        height:55px !important;
        width:auto !important;
        display:block !important;
    }

    .vx-mobile-toggle{
        width:45px !important;
        height:45px !important;
        border:none !important;
        background:#990b2c !important;
        color:#fff !important;
        border-radius:8px !important;
        cursor:pointer !important;
        font-size:20px !important;
    }

    /* Overlay */

    .vx-mobile-overlay{
        position:fixed !important;
        top:0 !important;
        left:0 !important;
        width:100% !important;
        height:100% !important;
        background:rgba(0,0,0,.65) !important;
        opacity:0 !important;
        visibility:hidden !important;
        transition:.4s ease !important;
        z-index:99998 !important;
    }

    .vx-mobile-overlay.active{
        opacity:1 !important;
        visibility:visible !important;
    }

    /* Menu Panel */

    .vx-mobile-menu{
        position:fixed !important;
        top:0 !important;
        right:-100% !important;
        width:320px !important;
        max-width:90% !important;
        height:100vh !important;
        background:#111111 !important;
        overflow-y:auto !important;
        transition:.4s ease !important;
        z-index:99999 !important;
        padding:25px !important;
    }

    .vx-mobile-menu.active{
        right:0 !important;
    }

    /* Close */

    .vx-mobile-close{
        display:flex !important;
        align-items:center !important;
        justify-content:space-between !important;
        margin-bottom:20px !important;
        padding-bottom:15px !important;
        border-bottom:1px solid rgba(255,255,255,.08) !important;
    }

    .vx-mobile-close span{
        color:#ffffff !important;
        font-size:18px !important;
        font-weight:700 !important;
    }

    .vx-mobile-close-btn{
        width:42px !important;
        height:42px !important;
        border:none !important;
        background:#990b2c !important;
        color:#ffffff !important;
        border-radius:50% !important;
        cursor:pointer !important;
        font-size:18px !important;
    }

    /* Menu */

    .vx-mobile-menu ul{
        margin:0 !important;
        padding:0 !important;
        list-style:none !important;
    }

    .vx-mobile-menu li{
        margin:0 !important;
        padding:0 !important;
        border-bottom:1px solid rgba(255,255,255,.08) !important;
    }

    .vx-mobile-menu a,
    .vx-mobile-dropdown-btn{
        display:flex !important;
        justify-content:space-between !important;
        align-items:center !important;
        color:#ffffff !important;
        text-decoration:none !important;
        font-size:15px !important;
        font-weight:600 !important;
        padding:14px 0 !important;
        cursor:pointer !important;
    }

    /* Dropdown */

    .vx-mobile-dropdown-btn i{
        color:#990b2c !important;
        transition:.3s ease !important;
    }

    .vx-mobile-dropdown.active .vx-mobile-dropdown-btn i{
        transform:rotate(45deg) !important;
    }

    .vx-mobile-submenu{
        display:none !important;
        padding-left:15px !important;
        padding-bottom:10px !important;
    }

    .vx-mobile-dropdown.active .vx-mobile-submenu{
        display:block !important;
    }

    .vx-mobile-submenu li{
        border:none !important;
    }

    .vx-mobile-submenu a{
        color:#cccccc !important;
        font-size:14px !important;
        font-weight:400 !important;
        padding:10px 0 !important;
        line-height:1.5 !important;
    }

    .vx-mobile-submenu a:hover{
        color:#ffffff !important;
        padding-left:10px !important;
    }

    /* Scrollbar */

    .vx-mobile-menu::-webkit-scrollbar{
        width:5px !important;
    }

    .vx-mobile-menu::-webkit-scrollbar-thumb{
        background:#990b2c !important;
        border-radius:10px !important;
    }

}

/* =========================
   MOBILE FULL WIDTH FIX
========================= */

@media (max-width:991px){

    html,
    body{
        width:100% !important;
        max-width:100% !important;
        overflow-x:hidden !important;
        margin:0 !important;
        padding:0 !important;
    }

    .container,
    .container-fluid{
        width:100% !important;
        max-width:100% !important;
        padding-left:15px !important;
        padding-right:15px !important;
        margin-left:auto !important;
        margin-right:auto !important;
    }

    .row{
        margin-left:0 !important;
        margin-right:0 !important;
    }

    [class*="col-"]{
        padding-left:10px !important;
        padding-right:10px !important;
    }

    section{
        width:100% !important;
        max-width:100% !important;
        overflow:hidden !important;
    }

    img{
        max-width:100% !important;
        height:auto !important;
        display:block !important;
    }

    iframe,
    video{
        max-width:100% !important;
    }

    /* Common Elementor Fix */

    .elementor-section,
    .elementor-container,
    .elementor-column,
    .elementor-widget-wrap{
        max-width:100% !important;
    }

}



/* Hide Mobile Menu on Desktop & Tablet */

.vx-mobile-header,
.vx-mobile-menu,
.vx-mobile-overlay{
    display:none !important;
}

/* Show only on Mobile */

@media (max-width:767px){

    .vx-mobile-header{
        display:block !important;
    }

    .vx-mobile-overlay{
        display:block !important;
    }

    .vx-mobile-menu{
        display:block !important;
    }

}
@media (max-width:767px){

    .top-bar,
    #headerWrapper{
        display:none !important;
    }

}

/* =========================
   STICKY MOBILE HEADER
========================= */

@media (max-width:991px){

    .vx-mobile-header{
        position:fixed !important;
        top:0 !important;
        left:0 !important;
        width:100% !important;
        z-index:999999 !important;
        background:#ffffff !important;
        box-shadow:0 5px 20px rgba(0,0,0,.08) !important;
    }

    .vx-mobile-top{
        min-height:80px !important;
        display:flex !important;
        align-items:center !important;
        justify-content:space-between !important;
        padding:12px 20px !important;
    }

    .vx-mobile-logo img{
        height:55px !important;
        width:auto !important;
    }

    /* Prevent page content hiding behind header */

    body{
        padding-top:80px !important;
    }

}



.vx-careers-section{
    padding:100px 0;
    background:#f8f8f8;
}

.vx-careers-content h2{
    font-size:2rem;
    font-weight:800;
    margin-bottom:30px;
    color:#111;
}

.vx-careers-content p{
    font-size:15px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

.vx-career-alert{
    background:linear-gradient(135deg,#990b2c,#b30d34);
    padding:35px;
    border-radius:12px;
    color:#fff;
    margin-top:40px;
}

.vx-career-alert h4{
    font-size:26px;
    margin-bottom:15px;
    color:#fff;
}

.vx-career-alert p{
    color:#fff;
    margin-bottom:15px;
}

.vx-career-contact-card{
    background:#111;
    padding:20px !important;
    border-radius:15px;
    position:sticky;
    top:120px;
   padding-right: 20px;
}

.vx-career-contact-card h3{
    color:#fff;
    margin-bottom:20px;
    font-size:22px;
   
}

.vx-career-contact-card p{
    color:#ddd;
    line-height:1.8;
    font-size: 15px;
}

.vx-contact-row{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}

.vx-contact-row i{
    color:#990b2c;
    font-size:18px;
}

.vx-contact-row a,
.vx-contact-row span{
    color:#fff;
    text-decoration:none;
}

.vx-career-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 30px;
    background:#990b2c;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.vx-career-btn:hover{
    background:#b30d34;
    color:#fff;
}

@media(max-width:991px){

    .vx-careers-section{
        padding:70px 0;
    }

    .vx-careers-content h2{
        font-size:36px;
    }

    .vx-career-contact-card{
        margin-top:40px;
        position:relative;
        top:auto;
    }

}


.vx-career-content-section{
    padding:80px 0 !important;
}

.vx-career-content h2{
    font-size:2rem !important;
    font-weight:800 !important;
    margin-bottom:25px !important;
}

.vx-career-content h3{
    font-size:28px !important;
    font-weight:700 !important;
    margin:35px 0 15px !important;
    color:#111 !important;
}

.vx-career-content p{
    font-size:15px !important;
    line-height:1.9 !important;
    color:#666 !important;
    margin-bottom:20px !important;
}

.vx-evp-features{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:20px !important;
    margin-top:40px !important;
}

.vx-evp-box{
    display:flex !important;
    align-items:center !important;
    gap:15px !important;
    padding:18px 20px !important;
    background:#fff !important;
    border-left:4px solid #990b2c !important;
    box-shadow:0 5px 20px rgba(0,0,0,.08) !important;
    border-radius:8px !important;
}

.vx-evp-box i{
    color:#990b2c !important;
    font-size:24px !important;
}

.vx-evp-box span{
    font-weight:600 !important;
    color:#222 !important;
}

@media(max-width:767px){

    .vx-career-content h2{
        font-size:1.5rem !important;
    }

    .vx-career-content h3{
        font-size:1.5rem !important;
    }

    .vx-evp-features{
        grid-template-columns:1fr !important;
    }

}


.vx-policy-card{
    background:#fff !important;
    padding:30px !important;
    border-radius:10px !important;
    margin:30px 0 !important;
    box-shadow:0 5px 25px rgba(0,0,0,.08) !important;
}

.vx-policy-card h3{
    font-size:25px !important;
    margin-bottom:20px !important;
    font-weight:700 !important;
}

.vx-policy-card ul{
    margin:0 !important;
    padding-left:20px !important;
}

.vx-policy-card ul li{
    margin-bottom:12px !important;
    line-height:1.8 !important;
    color:#555 !important;
}

.vx-policy-steps{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:20px !important;
}

.vx-step-box{
    background:#f8f8f8 !important;
    padding:25px !important;
    border-left:4px solid #990b2c !important;
    border-radius:8px !important;
}

.vx-step-box span{
    display:inline-block !important;
    width:45px !important;
    height:45px !important;
    line-height:45px !important;
    text-align:center !important;
    background:#990b2c !important;
    color:#fff !important;
    border-radius:50% !important;
    font-weight:700 !important;
    margin-bottom:15px !important;
}

.vx-step-box h4{
    font-size:18px !important;
    margin-bottom:10px !important;
}

.vx-step-box p{
    font-size:14px !important;
    margin:0 !important;
}

.vx-policy-alert{
    background:linear-gradient(135deg,#990b2c,#c1143f) !important;
    padding:30px !important;
    border-radius:10px !important;
    color:#fff !important;
    margin-top:30px !important;
}

.vx-policy-alert h4{
    color:#fff !important;
    margin-bottom:15px !important;
    font-size:24px !important;
}

.vx-policy-alert p{
    color:#fff !important;
    margin:0 !important;
}

@media(max-width:768px){

    .vx-policy-steps{
        grid-template-columns:1fr !important;
    }

}

.vx-step-box{
    background:#f8f8f8 !important;
    padding:25px !important;
    border-left:4px solid #990b2c !important;
    border-radius:8px !important;
    transition:all .35s ease !important;
    position:relative !important;
    overflow:hidden !important;
    cursor:pointer !important;
}

.vx-step-box::before{
    content:'' !important;
    position:absolute !important;
    top:0 !important;
    left:-100% !important;
    width:100% !important;
    height:100% !important;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    ) !important;
    transition:.6s !important;
}

.vx-step-box:hover{
    transform:translateY(-8px) !important;
    background:#ffffff !important;
    box-shadow:0 15px 35px rgba(153,11,44,.15) !important;
    border-left-color:#c1143f !important;
}

.vx-step-box:hover::before{
    left:100% !important;
}

.vx-step-box:hover span{
    transform:scale(1.1) rotate(8deg) !important;
    background:#c1143f !important;
}

.vx-step-box span{
    transition:all .35s ease !important;
}

.vx-step-box:hover h4{
    color:#990b2c !important;
}

.vx-step-box h4{
    transition:.3s ease !important;
}


.vx-training-grid{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:20px !important;
    margin-top:25px !important;
}

.vx-training-box{
    background:#f8f8f8 !important;
    padding:25px !important;
    border-radius:10px !important;
    text-align:center !important;
    transition:.35s ease !important;
}

.vx-training-box i{
    font-size:34px !important;
    color:#990b2c !important;
    margin-bottom:15px !important;
}

.vx-training-box h4{
    font-size:18px !important;
    margin-bottom:10px !important;
    font-weight:700 !important;
}

.vx-training-box:hover{
    transform:translateY(-8px) !important;
    box-shadow:0 15px 35px rgba(153,11,44,.15) !important;
}

.vx-policy-list{
    margin:0 !important;
    padding-left:20px !important;
}

.vx-policy-list li{
    margin-bottom:12px !important;
    line-height:1.8 !important;
    color:#555 !important;
}

@media(max-width:768px){

    .vx-training-grid{
        grid-template-columns:1fr !important;
    }
    .vx-policy-card h3{
        font-size: 1.5rem;
    }

}


.vx-testimonials-section{
    padding:80px 0 !important;
}

.vx-testimonial-grid{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:25px !important;
    margin-top:40px !important;
}

.vx-testimonial-card{
    background:#fff !important;
    padding:30px !important;
    border-radius:12px !important;
    box-shadow:0 8px 30px rgba(0,0,0,.08) !important;
    position:relative !important;
    transition:.35s ease !important;
    border-top:4px solid #990b2c !important;
}

.vx-testimonial-card:hover{
    transform:translateY(-8px) !important;
    box-shadow:0 15px 40px rgba(153,11,44,.15) !important;
}

.vx-quote-icon{
    width:55px !important;
    height:55px !important;
    background:#990b2c !important;
    color:#fff !important;
    border-radius:50% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    margin-bottom:20px !important;
}

.vx-quote-icon i{
    font-size:20px !important;
}

.vx-testimonial-card p{
    line-height:1.9 !important;
    color:#666 !important;
    margin-bottom:25px !important;
}

.vx-testimonial-author h4{
    font-size:18px !important;
    margin-bottom:5px !important;
    font-weight:700 !important;
}

.vx-testimonial-author span{
    color:#990b2c !important;
    font-size:14px !important;
}

.vx-employee-message{
    margin-top:50px !important;
    padding:35px !important;
    background:linear-gradient(135deg,#990b2c,#c1143f) !important;
    border-radius:12px !important;
    color:#fff !important;
}

.vx-employee-message h3{
    color:#fff !important;
    margin-bottom:20px !important;
}

.vx-employee-message ul{
    margin:0 !important;
    padding-left:20px !important;
}

.vx-employee-message ul li{
    margin-bottom:12px !important;
    color:#fff !important;
}

@media(max-width:768px){

    .vx-testimonial-grid{
        grid-template-columns:1fr !important;
    }

}

.vx-testimonial-grid{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:25px !important;
    margin-top:40px !important;
}

.vx-testimonial-card{
    background:#fff !important;
    padding:35px !important;
    border-radius:12px !important;
    border-top:5px solid #990b2c !important;
    box-shadow:0 8px 25px rgba(0,0,0,.08) !important;
    transition:.35s ease !important;
}

.vx-testimonial-card:hover{
    transform:translateY(-8px) !important;
    box-shadow:0 15px 35px rgba(153,11,44,.15) !important;
}

.vx-testimonial-card p{
    font-size:16px !important;
    line-height:1.9 !important;
    color:#555 !important;
    font-style:italic !important;
    margin-bottom:25px !important;
}

.vx-testimonial-author{
    border-top:1px solid #eee !important;
    padding-top:20px !important;
}

.vx-testimonial-author h4{
    font-size:22px !important;
    font-weight:700 !important;
    margin-bottom:5px !important;
}

.vx-testimonial-author span{
    color:#990b2c !important;
    font-weight:600 !important;
}

.vx-employee-message{
    margin-top:50px !important;
    padding:35px !important;
    border-radius:12px !important;
    background:linear-gradient(135deg,#990b2c,#c1143f) !important;
}

.vx-employee-message h3{
    color:#fff !important;
    margin-bottom:20px !important;
}

.vx-employee-message ul{
    margin:0 !important;
    padding-left:20px !important;
}

.vx-employee-message li{
    color:#fff !important;
    margin-bottom:12px !important;
}

@media(max-width:768px){

    .vx-testimonial-grid{
        grid-template-columns:1fr !important;
    }
   

}

.vx-testimonials-content h2{
    font-size:2rem !important;
    line-height:1.1 !important;
    letter-spacing:-1px !important;
    margin-bottom:20px !important;
}

.vx-testimonials-content p{
    font-size:15px !important;
    line-height:1.8 !important;
    color:#555 !important;
    letter-spacing:0 !important;
    word-spacing:0 !important;
    text-align:justify !important;
    margin-bottom:25px !important;
}


/*======================================
CONTACT PAGE
======================================*/

.vx-contact-page-section{
    padding:100px 0 !important;
}

.vx-contact-info-card{
    background:#fff !important;
    padding:35px !important;
    border-radius:20px !important;
    position:relative !important;
    overflow:hidden !important;
    box-shadow:0 15px 40px rgba(0,0,0,.08) !important;
    border-top:5px solid #990b2c !important;
}

.vx-contact-info-card h2{
    font-size:28px !important;
    font-weight:800 !important;
    line-height:1.2 !important;
    margin:20px 0 !important;
}

.vx-contact-info-card p{
    color:#666 !important;
    line-height:1.8 !important;
    margin-bottom:30px !important;
}

.vx-contact-info{
    margin-top:30px !important;
}

.vx-contact-item{
    display:flex !important;
    align-items:flex-start !important;
    gap:20px !important;
    margin-bottom:30px !important;
}

.vx-contact-item i{
    width:55px !important;
    height:55px !important;
    background:#990b2c !important;
    color:#fff !important;
    border-radius:50% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    font-size:18px !important;
    flex-shrink:0 !important;
}

.vx-contact-item h5{
    margin-bottom:8px !important;
    font-size:20px !important;
    font-weight:700 !important;
}

.vx-contact-item a,
.vx-contact-item span{
    color:white !important;
    text-decoration:none !important;
    font-size:16px !important;
}

/*======================================
CONTACT FORM
======================================*/

.vx-contact-form-card{
    background:linear-gradient(135deg,#111,#1c1c1c) !important;
    padding:50px !important;
    border-radius:20px !important;
    box-shadow:0 15px 40px rgba(0,0,0,.15) !important;
    border-top:5px solid #990b2c !important;
}

.vx-contact-form-card h3{
    color:#fff !important;
    font-size:36px !important;
    font-weight:700 !important;
    margin-bottom:30px !important;
}

.vx-contact-form-card input,
.vx-contact-form-card select,
.vx-contact-form-card textarea{
    width:100% !important;
    background:rgba(255,255,255,.08) !important;
    border:1px solid rgba(255,255,255,.1) !important;
    color:#fff !important;
    padding:16px 20px !important;
    border-radius:12px !important;
    margin-bottom:20px !important;
    outline:none !important;
}

.vx-contact-form-card input::placeholder,
.vx-contact-form-card textarea::placeholder{
    color:#ccc !important;
}

.vx-contact-form-card select{
    color:#ccc !important;
}

.vx-contact-form-card textarea{
    min-height:180px !important;
    resize:none !important;
}

.vx-contact-form-card button{
    background:linear-gradient(135deg,#990b2c,#c1143f) !important;
    color:#fff !important;
    border:none !important;
    padding:16px 40px !important;
    border-radius:10px !important;
    font-weight:700 !important;
    transition:.4s ease !important;
}

.vx-contact-form-card button:hover{
    transform:translateY(-3px) !important;
    box-shadow:0 10px 25px rgba(153,11,44,.35) !important;
}

/*======================================
OFFICE LOCATIONS
======================================*/

.vx-office-section{
    padding:10px 0 !important;
}

.vx-office-card{
    background:#fff !important;
    padding:40px !important;
    border-radius:15px !important;
    text-align:center !important;
    box-shadow:0 10px 30px rgba(0,0,0,.08) !important;
    border-top:4px solid #990b2c !important;
    height:100% !important;
    transition:.4s ease !important;
}

.vx-office-card:hover{
    transform:translateY(-8px) !important;
}

.vx-office-card h4{
    font-size:24px !important;
    font-weight:700 !important;
    margin-bottom:15px !important;
}

.vx-office-card p{
    color:#666 !important;
    line-height:1.8 !important;
}

/*======================================
WHY CONTACT VECTROX
======================================*/

.vx-contact-benefits{
    padding:0 0 100px !important;
}

.vx-benefit-box{
    background:#fff !important;
    padding:25px !important;
    border-radius:15px !important;
    text-align:center !important;
    box-shadow:0 10px 30px rgba(0,0,0,.08) !important;
    transition:.4s ease !important;
    height:100% !important;
}

.vx-benefit-box:hover{
    transform:translateY(-8px) !important;
    border-top:4px solid #990b2c !important;
}

.vx-benefit-box h4{
    font-size:22px !important;
    font-weight:700 !important;
    margin-bottom:15px !important;
}

.vx-benefit-box p{
    color:#666 !important;
}

/*======================================
MAP
======================================*/

.vx-map-section{
    line-height:0 !important;
    margin-bottom: 30px;
}

.vx-map-section iframe{
    width:100% !important;
    height:500px !important;
}

/*======================================
EMERGENCY CTA
======================================*/

.vx-emergency-cta{
    padding:100px 0 !important;
    background:linear-gradient(135deg,#990b2c,#7a001f) !important;
    text-align:center !important;
}

.vx-emergency-cta h2{
    color:#fff !important;
    font-size:22px !important;
    font-weight:800 !important;
    margin-bottom:20px !important;
}

.vx-emergency-cta p{
    color:rgba(255,255,255,.9) !important;
    max-width:800px !important;
    margin:0 auto 30px !important;
    line-height:1.8 !important;
}

.vx-cta-btn{
    display:inline-block !important;
    background:#fff !important;
    color:#990b2c !important;
    padding:16px 40px !important;
    border-radius:10px !important;
    text-decoration:none !important;
    font-weight:700 !important;
    transition:.4s ease !important;
}

.vx-cta-btn:hover{
    transform:translateY(-3px) !important;
}

/*======================================
MOBILE
======================================*/

@media(max-width:768px){

    .vx-contact-page-section,
    .vx-office-section,
    .vx-emergency-cta{
        padding:60px 0 !important;
    }

    .vx-contact-info-card,
    .vx-contact-form-card{
        padding:30px !important;
    }

    .vx-contact-info-card h2{
        font-size:1.5rem !important;
    }

    .vx-contact-form-card h3{
        font-size:28px !important;
    }

    .vx-emergency-cta h2{
        font-size:1.5rem !important;
    }

    .vx-map-section iframe{
        height:350px !important;
    }
}



.language-switcher{
    display: none !important;
}



.hero-content p{
    color: #ffffff !important;
    text-align: right;
    font-weight: 500;
}

/* Mobile View */
@media (max-width: 767px){
    .hero-content p{
        text-align: center !important;
    }
}

.footer-contact li a{
    color: #bdbdbd;
    text-decoration:none !important;
    transition:all .3s ease !important;
}

.footer-contact li a:hover{
    color:#A30D2D !important;
}

.footer-contact li i{
    margin-right:10px !important;
}

.footer-contact li{
    display:flex !important;
    align-items:center !important;
    gap:10px !important;
}



.vx-corporate-benefits{
    padding:100px 0 !important;
    background:#f8f9fc !important;
}

.vx-benefits-header{
    max-width:900px !important;
    margin:0 auto 60px !important;
}

.vx-benefits-header h2{
    font-size:2rem !important;
    font-weight:800 !important;
    color:#111 !important;
    margin:20px 0 !important;
}



.vx-benefits-header p{
    font-size:17px !important;
    line-height:1.9 !important;
    color:#666 !important;
}

.vx-benefit-card{
    background:#fff !important;
    padding:35px !important;
    border-radius:20px !important;
    height:100% !important;
    border-top:4px solid #A30D2D !important;
    box-shadow:0 10px 35px rgba(0,0,0,.08) !important;
    transition:.4s ease !important;
}

.vx-benefit-card:hover{
    transform:translateY(-10px) !important;
    box-shadow:0 20px 45px rgba(0,0,0,.15) !important;
}

.vx-benefit-card i{
    width:70px !important;
    height:70px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    border-radius:50% !important;
    background:#A30D2D !important;
    color:#fff !important;
    font-size:28px !important;
    margin-bottom:20px !important;
}

.vx-benefit-card h5{
    font-size:22px !important;
    font-weight:700 !important;
    margin-bottom:15px !important;
    color:#111 !important;
}

.vx-benefit-card p{
    margin:0 !important;
    color:#666 !important;
    line-height:1.8 !important;
}

@media(max-width:768px){

    .vx-corporate-benefits{
       padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-benefits-header h2{
        font-size:1.5rem !important;
    }

    .vx-contract-header p{
        text-align: center !important;
    }

}

.vx-benefit-card{
    background:#fff !important;
    padding:25px !important;
    border-radius:18px !important;
    border-top:4px solid #A30D2D !important;
    box-shadow:0 8px 25px rgba(0,0,0,.08) !important;
    transition:.4s ease !important;
    height:100% !important;
}

.vx-benefit-card i{
    width:60px !important;
    height:60px !important;
    font-size:24px !important;
    margin-bottom:15px !important;
}

.vx-benefit-card h5{
    font-size:18px !important;
    font-weight:700 !important;
    margin-bottom:10px !important;
    line-height:1.4 !important;
}

.vx-benefit-card p{
    font-size:15px !important;
    line-height:1.8 !important;
    margin:0 !important;
}

.vx-benefit-card:hover{
    transform:translateY(-6px) !important;
}


.vx-contract-management{
    padding:100px 0 !important;
    background:#f8f9fc !important;
}



.vx-contract-header{
    max-width:900px !important;
    margin:0 auto 50px !important;
}

.vx-contract-header h2{
    font-size:2rem !important;
    font-weight:800 !important;
    color:#111 !important;
    margin:20px 0 !important;
}

.vx-contract-header p{
    font-size:17px !important;
    color:#666 !important;
    line-height:1.9 !important;
    text-align: center !important;
}
.vx-overview-header p{
     text-align: center !important;
}


.vx-benefits-header p{
    text-align: center !important;
}

.vx-management-card{
    background:#fff !important;
    padding:30px !important;
    border-radius:20px !important;
    border-top:4px solid #A30D2D !important;
    height:100% !important;
    box-shadow:0 10px 30px rgba(0,0,0,.06) !important;
    transition:.4s ease !important;
}

.vx-management-card:hover{
    transform:translateY(-8px) !important;
    box-shadow:0 20px 40px rgba(0,0,0,.12) !important;
}

.vx-management-card i{
    width:65px !important;
    height:65px !important;
    background:#A30D2D !important;
    color:#fff !important;
    border-radius:50% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    font-size:24px !important;
    margin-bottom:20px !important;
}

.vx-management-card h5{
    font-size:20px !important;
    font-weight:700 !important;
    margin-bottom:12px !important;
    color:#111 !important;
}

.vx-management-card p{
    color:#666 !important;
    line-height:1.8 !important;
    margin:0 !important;
}

@media(max-width:768px){

    .vx-contract-management{
       padding-top: 30px !important;
       padding-bottom: 30px !important;
    }

    .vx-contract-wrapper{
       
    }

    .vx-contract-header h2{
        font-size:1.5rem !important;
    }

}

@media (max-width:768px){

    .vx-cta-section{
        padding:40px 15px !important;
    }
.vx-testimonial-card p{
    text-align: center !important;
}
    

}


@media (max-width:768px){

    .vx-corporate-content{
        text-align:center !important;
    }

    .vx-corporate-content h1{
        text-align:center !important;
        margin-left:auto !important;
        margin-right:auto !important;
    }



    .vx-corporate-tag{
        margin:0 auto 20px !important;
        display:table !important;
    }

  

    .vx-corporate-buttons{
        justify-content:center !important;
    }


       .vx-corporate-list,
    .vx-corporate-list li{
        text-align:left !important;
    }
}

/* MOBILE ONLY */

@media (max-width:768px){

    .vx-stats-bar{
        padding:40px 0 !important;
    }

    .vx-stats-bar .row{
        row-gap:12px !important;
    }

    .vx-stat{
        padding:20px 15px !important;
        min-height:auto !important;
        text-align:center !important;
    }

    .vx-stat i{
        font-size:26px !important;
        margin-bottom:10px !important;
    }

    .vx-stat h4{
        font-size:18px !important;
        line-height:1 !important;
        margin-bottom:8px !important;
        text-align:center !important;
    }

    .vx-stat p{
        font-size:13px !important;
        line-height:1.5 !important;
        margin:0 !important;
        text-align:center !important;
    }

    .vx-stat-content{
        text-align:center !important;
    }

    .vx-stats-bar .col-6{
        padding:6px !important;
    }

}

@media (max-width: 768px){

    /* Center all section tags */
    .vx-section-tag,
    .vx-corporate-tag,
    .vx-service-tag,
    .vx-benefits-tag,
    .vx-intro-card .vx-section-tag,
    .vx-contract-content .vx-section-tag,
    .vx-industries-content .vx-section-tag,
    .vx-corporate-content .vx-section-tag{
        display: table !important;
        margin: 0 auto 20px !important;
        text-align: center !important;
       
    }


}

/* MOBILE VIEW ONLY */
@media (max-width: 768px){

    /* Center all headings */
    .vx-corporate-content h1,
    .vx-corporate-content h2,
    .vx-intro-content h2,
    .vx-responsibility-content h2,
    .vx-benefits-content h2,
    .vx-contract-content h2,
    .vx-industries-content h2,
    .vx-cta-content h2,
    .vx-services-content h2,
    .vx-about-content h2,
    .vx-section-title,
    h1,
    h2{
        text-align:center !important;
        font-size:1.5rem !important;
        line-height:1.2 !important;
        margin-left:auto !important;
        margin-right:auto !important;
    }

    /* Center all section tags */
    .vx-section-tag{
        display:table !important;
        margin:0 auto 20px !important;
        text-align:center !important;
    }

}

.vx-concierge-overview{
    padding:50px 0;
    background:#f8f9fb;
}

.vx-overview-header{
    max-width:900px;
    margin:0 auto 70px;
}

.vx-overview-header h2{
    font-size:2rem;
    font-weight:800;
    margin:20px 0;
    color:#111;
}

.vx-overview-header p{
    font-size:1.1rem;
    line-height:1.8;
    color:#666;
}

.vx-concierge-process{
    position:relative;
    max-width:1000px;
    margin:0 auto;
}

.vx-concierge-process::before{
    content:'';
    position:absolute;
    left:40px;
    top:0;
    width:3px;
    height:100%;
    background:#990b2c;
}

.vx-process-item{
    position:relative;
    display:flex;
    gap:35px;
    margin-bottom:50px;
}

.vx-process-number{
    width:80px;
    height:80px;
    min-width:80px;
    border-radius:50%;
    background:#990b2c;
    color:#fff;
    font-size:1.5rem;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
}

.vx-process-content{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    width:100%;
    transition:.4s;
}

.vx-process-content:hover{
    transform:translateX(10px);
}

.vx-process-content h4{
    font-size:1.5rem;
    font-weight:700;
    margin-bottom:15px;
}

.vx-process-content p{
    margin:0;
    color:#666;
    line-height:1.8;
}

@media(max-width:768px){

    .vx-overview-header h2{
        font-size:1.5rem;
    }

    .vx-concierge-process::before{
        left:25px;
    }

    .vx-process-item{
        gap:20px;
    }

    .vx-process-number{
        width:50px;
        height:50px;
        min-width:50px;
        font-size:1rem;
    }

    .vx-process-content{
        padding:20px;
    }
}


.vx-concierge-benefits-full{
    padding:50px 0;
    background:#f8f9fb;
}

.vx-benefits-header{
    max-width:900px;
    margin:0 auto 60px;
}

.vx-benefits-header h2{
    font-size:2rem;
    font-weight:800;
    color:#111;
    margin:20px 0;
}

.vx-benefits-header p{
    font-size:1.1rem;
    color:#666;
    line-height:1.9;
}

.vx-benefit-box{
    position:relative;
    background:#fff;
    padding:30px 20px;
    border-radius:25px;
    height:100%;
    border-top:5px solid #990b2c;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:all .4s ease;
}

.vx-benefit-box:hover{
    transform:translateY(-10px);
}

.vx-benefit-number{
    font-size:2rem;
    font-weight:800;
    color:#990b2c;
    opacity:.15;
    line-height:1;
    margin-bottom:20px;
}

.vx-benefit-box h4{
    font-size:1.4rem;
    font-weight:700;
    margin-bottom:15px;
    color:#111;
}

.vx-benefit-box p{
    margin:0;
    color:#666;
    line-height:1.8;
}

@media(max-width:768px){

    .vx-concierge-benefits-full{
        padding:70px 0;
    }

    .vx-benefits-header h2{
        font-size:1.5rem;
    }

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

    .vx-benefit-number{
        font-size:2.5rem;
    }
}


.vx-contract-operations-full{
    padding:50px 0;
    background:#f8f9fb;
}

.vx-contract-header{
    max-width:900px;
    margin:0 auto 60px;
}

.vx-contract-header h2{
    font-size:2rem;
    font-weight:800;
    color:#111;
    margin:20px 0;
}

.vx-contract-header p{
    font-size:1.1rem;
    line-height:1.9;
    color:#666;
}

.vx-operation-card{
    background:#fff;
    border-radius:25px;
    padding:30px 15px;
    text-align:center;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    border-top:5px solid #990b2c;
    transition:all .4s ease;
}

.vx-operation-card:hover{
    transform:translateY(-10px);
}

.vx-operation-step{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#990b2c;
    color:#fff;
    font-size:1.5rem;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.vx-operation-card h4{
    font-size:1.3rem;
    font-weight:700;
    margin-bottom:15px;
}

.vx-operation-card p{
    color:#666;
    margin:0;
    line-height:1.8;
}

.vx-management-features{
    margin-top:50px;
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
}

.vx-feature-pill{
    background:#fff;
    padding:12px 22px;
    border-radius:50px;
    border:1px solid rgba(153,11,44,0.15);
    font-weight:600;
    color:#111;
    transition:.3s;
}

.vx-feature-pill:hover{
    background:#990b2c;
    color:#fff;
}

@media(max-width:768px){

    .vx-contract-operations-full{
        padding:70px 0;
    }

    .vx-contract-header h2{
        font-size:1.5rem;
    }

    .vx-operation-card{
        padding:25px 20px;
    }

    .vx-feature-pill{
        width:100%;
        text-align:center;
    }

}

.vx-construction-overview-new{
    padding:50px 0;
    background:#f8f9fb;
}

.vx-construction-box{
    max-width:1000px;
    margin:auto;
    text-align:center;
    background:#fff;
    padding:70px;
    border-radius:30px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
    position:relative;
}

.vx-construction-box::before{
    content:'';
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:120px;
    height:5px;
    background:#A30D2D;
}

.vx-construction-box h2{
    font-size:2rem;
    font-weight:800;
    color:#111;
    margin:20px 0;
    line-height:1.3;
}

.vx-divider{
    width:80px;
    height:3px;
    background:#A30D2D;
    margin:25px auto;
}

.vx-construction-box p{
    font-size:16px;
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.vx-construction-points{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-top:40px;
}

.vx-construction-points span{
    padding:12px 22px;
    background:#f5f5f5;
    border-radius:50px;
    font-weight:600;
    color:#111;
    border:1px solid #eee;
    transition:.3s;
}

.vx-construction-points span:hover{
    background:#A30D2D;
    color:#fff;
}

@media(max-width:768px){

    .vx-construction-box{
        padding:40px 25px;
    }

    .vx-construction-box h2{
        font-size:1.5rem !important;
    }

    .vx-construction-points span{
        width:100%;
        text-align:center;
    }

}

.vx-concierge-showcase{
    padding:50px 0;
    background:#f8f9fb;
}

.vx-showcase-card{
    max-width:1000px;
    margin:auto;
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
    text-align:center;
}

.vx-showcase-card h2{
    font-size:2rem;
    font-weight:800;
    margin:20px 0 30px;
}

.vx-showcase-image{
    margin-bottom:35px;
}

.vx-showcase-image img{
    width:100%;
    max-height:450px;
    object-fit:cover;
    border-radius:20px;
}

.vx-showcase-card p{
    max-width:850px;
    margin:0 auto 35px;
    line-height:1.9;
    color:#666;
}

.vx-check-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:40px;
}

.vx-check-item{
    background:#f8f9fb;
    padding:16px 20px;
    border-left:4px solid #A30D2D;
    border-radius:10px;
    text-align:left;
    font-weight:500;
}

.vx-check-item::before{
    content:"✓ ";
    color:#A30D2D;
    font-weight:700;
}

@media(max-width:768px){

    .vx-showcase-card{
        padding:25px;
    }

    .vx-showcase-card h2{
        font-size:1.5rem;
    }

    .vx-check-grid{
        grid-template-columns:1fr;
    }

    .vx-showcase-image img{
        max-height:280px;
    }
}

.vx-split-content-section{
    padding:50px 0;
}

.vx-split-content-section h2{
    font-size:2rem;
    font-weight:800;
    margin:20px 0 40px;
    max-width:700px;
}

.vx-split-content{
    display:grid;
    grid-template-columns:1.4fr .8fr;
    gap:50px;
    align-items:center;
    margin-bottom:50px;
}

.vx-content-left p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.vx-content-right img{
    width:100%;
    height:320px;
    object-fit:cover;
    object-position: top;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.vx-responsibility-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.vx-point{
    padding:16px 20px;
    background:#f8f9fb;
    border-left:4px solid #A30D2D;
    border-radius:12px;
    font-weight:500;
    position:relative;
    padding-left:45px;
}

.vx-point::before{
    content:"✓";
    position:absolute;
    left:18px;
    color:#A30D2D;
    font-weight:700;
}

@media(max-width:768px){

    .vx-split-content{
        grid-template-columns:1fr;
        gap:25px;
    }

    .vx-content-right{
        order:-1;
    }

    .vx-content-right img{
        height:250px;
    }

    .vx-split-content-section h2{
        font-size:1.5rem;
        text-align:center;
    }

    .vx-responsibility-points{
        grid-template-columns:1fr;
    }

}

.vx-point{
    padding:16px 20px;
    background:#f8f9fb;
    border-left:4px solid #A30D2D;
    border-radius:12px;
    font-weight:500;
    position:relative;
    padding-left:45px;
    overflow:hidden;
    transition:all .35s ease;
    cursor:pointer;
}

.vx-point::before{
    content:"✓";
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#A30D2D;
    font-weight:700;
    transition:all .35s ease;
}

.vx-point::after{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.25),
        transparent
    );
    transition:.6s;
}

.vx-point:hover{
    background:#A30D2D;
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(163,13,45,.25);
}

.vx-point:hover::before{
    color:#fff;
    transform:translateY(-50%) scale(1.15);
}

.vx-point:hover::after{
    left:100%;
}

.vx-site-security-overview{
    padding:100px 0;
    background:#f8f9fb;
}

.vx-site-overview-grid{
    display:grid;
    grid-template-columns:1.3fr .7fr;
    gap:60px;
    align-items:center;
    margin-bottom:50px;
}

.vx-site-tag{
    display:inline-block;
    background:#A30D2D;
    color:#fff;
    padding:10px 20px;
    border-radius:6px;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.vx-site-overview-content h2{
    font-size:2rem;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
    color:#111;
}

.vx-site-overview-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
}

.vx-site-overview-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.vx-site-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.vx-site-feature-item{
    background:#fff;
    padding:22px;
    text-align:center;
    border-radius:14px;
    font-weight:600;
    border-top:4px solid #A30D2D;
    transition:.35s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.vx-site-feature-item:hover{
    background:#A30D2D;
    color:#fff;
    transform:translateY(-6px);
}

@media(max-width:991px){

    .vx-site-overview-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .vx-site-overview-image{
        order:-1;
    }

    .vx-site-overview-content h2{
        font-size:1.5rem;
        text-align:center;
    }

    .vx-site-tag{
        display:table;
        margin:0 auto 20px;
        text-align:center;
    }

    .vx-site-feature-grid{
        grid-template-columns:1fr;
    }

    .vx-site-overview-image img{
        height:300px;
    }
}

@media(max-width:768px){

    .vx-site-security-overview{
        padding:70px 0;
    }

    .vx-site-overview-content h2{
        font-size:1.5rem;
    }

    .vx-site-overview-content p{
        text-align:justify;
    }
    .vx-cta-section p{
        text-align: center !important;
    }
}

.vx-magazine-layout{
    padding:100px 0;
}

.vx-magazine-layout h2{
    font-size:2.2rem;
    font-weight:800;
    margin:20px 0 40px;
    max-width:750px;
}

.vx-magazine-content{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;
    align-items:start;
    margin-bottom:40px;
}

.vx-magazine-image img{
    width:100%;
    height:380px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.vx-magazine-text p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.vx-magazine-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.vx-magazine-point{
    background:#fff;
    border-left:4px solid #A30D2D;
    padding:18px 20px;
    border-radius:12px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.vx-magazine-point::before{
    content:"✓";
    color:#A30D2D;
    font-weight:700;
    margin-right:10px;
}

.vx-magazine-point:hover{
    background:#A30D2D;
    color:#fff;
    transition:.3s;
}

.vx-magazine-point:hover::before{
    color:#fff;
}

@media(max-width:991px){

    .vx-magazine-content{
        grid-template-columns:1fr;
    }

    .vx-magazine-image img{
        height:280px;
    }

    .vx-magazine-points{
        grid-template-columns:1fr;
    }

    .vx-magazine-layout h2{
        font-size:1.5rem;
    }
}

.vx-construction-benefits-pro{
    padding:100px 0;
    background:#f8f9fb;
}

.vx-construction-benefits-pro .vx-section-tag{
    display:table;
    margin:0 auto 20px;
}

.vx-construction-benefits-pro h2{
    text-align:center;
    font-size:2.4rem;
    font-weight:800;
    margin-bottom:20px;
}

.vx-benefits-intro{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
    color:#666;
    line-height:1.9;
}

.vx-benefits-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.vx-benefit-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    position:relative;
    overflow:hidden;
    border-top:4px solid #A30D2D;
    transition:.4s ease;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.vx-benefit-card span{
    font-size:3rem;
    font-weight:800;
    color:rgba(163,13,45,.15);
    display:block;
    margin-bottom:15px;
    line-height:1;
}

.vx-benefit-card h4{
    margin:0;
    font-size:1.25rem;
    font-weight:700;
    color:#111;
}

.vx-benefit-card:hover{
    transform:translateY(-8px);
    background:#A30D2D;
}

.vx-benefit-card:hover span{
    color:rgba(255,255,255,.2);
}

.vx-benefit-card:hover h4{
    color:#fff;
}

@media(max-width:768px){

    .vx-construction-benefits-pro{
        padding:70px 0;
    }

    .vx-benefits-grid{
        grid-template-columns:1fr;
    }

    .vx-construction-benefits-pro h2{
        font-size:1.5rem;
    }

    .vx-benefit-card{
        padding:25px;
    }

    .vx-benefit-card span{
        font-size:2.2rem;
    }

}

.vx-advantage-section{
    padding:100px 0;
    background:#fff;
}

.vx-advantage-header{
    max-width:850px;
    margin:0 auto 50px;
    text-align:center;
}

.vx-advantage-header h2{
    font-size:2.2rem;
    font-weight:800;
    color:#111;
    margin:20px 0;
}

.vx-advantage-header p{
    color:#666;
    line-height:1.8;
}

.vx-advantage-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.vx-advantage-item{
    display:flex;
    align-items:center;
    gap:18px;
    padding:20px 25px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:14px;
    transition:all .35s ease;
    position:relative;
}

.vx-advantage-item span{
    min-width:52px;
    height:52px;
    border-radius:50%;
    background:#A30D2D;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:700;
}

.vx-advantage-item h4{
    margin:0;
    font-size:1rem;
    font-weight:600;
    color:#111;
    line-height:1.5;
}

.vx-advantage-item:hover{
    transform:translateY(-5px);
    border-color:#A30D2D;
    box-shadow:0 15px 35px rgba(163,13,45,.12);
}

.vx-advantage-item:hover span{
    background:#111;
}
.vx-advantage-header p{
    text-align: center;
}
@media(max-width:991px){

    .vx-advantage-grid{
        grid-template-columns:1fr;
    }

    .vx-advantage-header h2{
        font-size:1.5rem;
    }

}

@media(max-width:768px){

    .vx-advantage-section{
        padding:70px 0;
    }

    .vx-advantage-header{
        margin-bottom:35px;
    }

    .vx-advantage-header h2{
        font-size:1.5rem;
    }

    .vx-advantage-item{
        padding:16px 18px;
    }

    .vx-advantage-item span{
        min-width:42px;
        height:42px;
        font-size:13px;
    }

    .vx-advantage-item h4{
        font-size:.9rem;
    }

}


/*=====================================
   CLOSE PROTECTION RISKS SECTION
=====================================*/

.vx-risk-solutions-section{
    padding:100px 0;
    background:#ffffff;
    position:relative;
}

.vx-risk-header{
    max-width:850px;
    margin:0 auto 60px;
}

.vx-risk-header h2{
    font-size:2.3rem;
    font-weight:700;
    margin:20px 0;
}

.vx-risk-header p{
    font-size:1.05rem;
    color:#666;
    line-height:1.8;
    text-align: center !important;    
}

.vx-risk-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.vx-risk-card{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:20px;
    padding:30px;
    transition:.4s ease;
    height:100%;
    position:relative;
    overflow:hidden;
}

.vx-risk-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:#A30D2D;
    transform:scaleY(0);
    transition:.4s ease;
}

.vx-risk-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.vx-risk-card:hover::before{
    transform:scaleY(1);
}

.vx-risk-card i{
    font-size:2rem;
    color:#A30D2D;
    margin-bottom:20px;
}

.vx-risk-card h4{
    font-size:1.15rem;
    font-weight:700;
    margin-bottom:12px;
}

.vx-risk-card p{
    margin:0;
    color:#666;
    line-height:1.7;
    font-size:.95rem;
}

.vx-risk-cta .vx-btn-primary{
    background-color: black;
    color: white;
}

.vx-risk-cta{
    margin-top:50px;
}

@media(max-width:991px){

    .vx-risk-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .vx-risk-header h2{
        font-size:1.5rem;
    }
}

@media(max-width:767px){

    .vx-risk-solutions-section{
        padding:70px 0;
    }

    .vx-risk-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .vx-risk-header h2{
        font-size:1.5rem;
    }

    .vx-risk-card{
        padding:22px;
    }
}

/*==================================
    EVENT TYPES SECTION
===================================*/

.vx-event-types-section{
    padding:100px 0;
    background:#fff;
}

.vx-event-types-header{
    max-width:850px;
    margin:0 auto 60px;
}

.vx-event-types-header h2{
    font-size:2.3rem;
    font-weight:700;
    margin:20px 0;
}

.vx-event-types-header p{
    color:#666;
    line-height:1.8;
}

.vx-event-types-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.vx-event-type-card{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    transition:.4s ease;
}

.vx-event-type-card:hover{
    transform:translateY(-8px);
    border-color:#A30D2D;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.vx-event-type-card span{
    display:inline-flex;
    width:55px;
    height:55px;
    align-items:center;
    margin-left: 55px;
    justify-content:center;
    border-radius:50%;
    background:#A30D2D;
    color:#fff;
    font-weight:700;
    margin-bottom:18px;
}
@media(max-width:767px){
.vx-event-type-card span{
    margin: auto;
}

}




.vx-event-type-card h4{
    font-size:1.05rem;
    font-weight:600;
    margin:0;
}

.vx-event-type-card p{
    margin-top:10px;
    margin-bottom:0;
    font-size:0.9rem;
    line-height:1.6;
    color:#666;
}

.vx-event-type-card{
    min-height:220px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

@media(max-width:991px){

    .vx-event-types-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .vx-event-types-header h2{
        font-size:1.5rem;
    }
}

@media(max-width:767px){

    .vx-event-types-section{
        padding:70px 0;
    }

    .vx-event-types-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .vx-event-types-header h2{
        font-size:1.5rem;
    }

    .vx-event-type-card{
        padding:22px;
    }
}

/*====================================
    HOTEL RESPONSIBILITIES SECTION
====================================*/

.vx-hotel-duty-section{
    padding:100px 0;
    background:#fff;
}

.vx-hotel-duty-header{
    max-width:850px;
    margin:0 auto 60px;
}

.vx-hotel-duty-header h2{
    font-size:2.3rem;
    font-weight:700;
    margin:20px 0;
}

.vx-hotel-duty-header p{
    color:#666;
    line-height:1.8;
}

.vx-hotel-duty-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.vx-hotel-duty-card{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:18px;
    padding:30px 25px;
    text-align:center;
    transition:.4s ease;
}

.vx-hotel-duty-card:hover{
    transform:translateY(-8px);
    border-color:#A30D2D;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.vx-duty-number{
    width:55px;
    height:55px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#A30D2D;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.vx-hotel-duty-card h4{
    font-size:1.1rem;
    margin-bottom:12px;
    font-weight:700;
}

.vx-hotel-duty-card p{
    margin:0;
    color:#666;
    font-size:.95rem;
    line-height:1.7;
}

@media(max-width:991px){

    .vx-hotel-duty-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .vx-hotel-duty-header h2{
        font-size:1.5rem;
    }
}

@media(max-width:767px){

    .vx-hotel-duty-section{
        padding:70px 0;
    }

    .vx-hotel-duty-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .vx-hotel-duty-header h2{
        font-size:1.5rem;
    }

    .vx-hotel-duty-card{
        padding:22px;
    }
}

/*====================================
   RETAIL SECTOR SHOWCASE
====================================*/

.vx-retail-sectors-showcase{
    padding:100px 0;
    background:#fff;
}

.vx-retail-showcase-header{
    max-width:850px;
    margin:0 auto 60px;
}

.vx-retail-showcase-header h2{
    font-size:2.3rem;
    font-weight:700;
    margin:20px 0;
}

.vx-retail-showcase-header p{
    color:#666;
    line-height:1.8;
    text-align: center !important;
}

.vx-retail-sector-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.vx-retail-sector-card{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.4s ease;
}

.vx-retail-sector-card:hover{
    transform:translateY(-8px);
    border-color:#A30D2D;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.vx-retail-sector-card i{
    font-size:2.2rem;
    color:#A30D2D;
    margin-bottom:20px;
}

.vx-retail-sector-card h4{
    font-size:1.15rem;
    font-weight:700;
    margin-bottom:12px;
}

.vx-retail-sector-card p{
    color:#666;
    line-height:1.7;
    margin:0;
    font-size:.95rem;
}

@media(max-width:991px){

    .vx-retail-sector-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .vx-retail-showcase-header h2{
        font-size:1.5rem;
    }
}

@media(max-width:767px){

    .vx-retail-sectors-showcase{
        padding:70px 0;
    }

    .vx-retail-sector-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .vx-retail-showcase-header h2{
        font-size:1.5rem;
    }

    .vx-retail-sector-card{
        padding:25px 20px;
    }
}


/*===================================
    WAREHOUSE THREATS SECTION
===================================*/

.vx-warehouse-threats-section{
    padding:100px 0;
    background:#fff;
}

.vx-warehouse-threats-header{
    max-width:850px;
    margin:0 auto 60px;
}

.vx-warehouse-threats-header h2{
    font-size:2.3rem;
    font-weight:700;
    margin:20px 0;
}

.vx-warehouse-threats-header p{
    color:#666;
    line-height:1.8;
    text-align: center !important;
}

.vx-threats-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.vx-threat-card{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.4s ease;
}

.vx-threat-card:hover{
    transform:translateY(-10px);
    border-color:#A30D2D;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.vx-threat-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:rgba(163,13,45,.08);
    display:flex;
    align-items:center;
    justify-content:center;
}

.vx-threat-icon i{
    font-size:1.8rem;
    color:#A30D2D;
}

.vx-threat-card h4{
    font-size:1.1rem;
    font-weight:700;
    margin-bottom:12px;
}

.vx-threat-card p{
    color:#666;
    font-size:.95rem;
    line-height:1.7;
    margin:0;
}

@media(max-width:991px){

    .vx-threats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .vx-warehouse-threats-header h2{
        font-size:1.5rem;
    }
}

@media(max-width:767px){

    .vx-warehouse-threats-section{
        padding:70px 0;
    }

    .vx-threats-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .vx-warehouse-threats-header h2{
        font-size:1.5rem;
    }

    .vx-threat-card{
        padding:25px 20px;
    }
}


/*====================================
    FIRE INDUSTRIES SECTION
====================================*/

.vx-fire-industries-section{
    padding:100px 0;
    background:#fff;
}

.vx-fire-industries-header{
    max-width:850px;
    margin:0 auto 60px;
}

.vx-fire-industries-header h2{
    font-size:2.3rem;
    font-weight:700;
    margin:20px 0;
}

.vx-fire-industries-header p{
    color:#666;
    line-height:1.8;
    text-align: center;
}

.vx-fire-industries-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.vx-fire-industry-card{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.vx-fire-industry-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#A30D2D;
    transform:scaleX(0);
    transition:.4s ease;
}

.vx-fire-industry-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.vx-fire-industry-card:hover::before{
    transform:scaleX(1);
}

.vx-fire-industry-card i{
    font-size:2.2rem;
    color:#A30D2D;
    margin-bottom:18px;
}

.vx-fire-industry-card h4{
    font-size:1.15rem;
    font-weight:700;
    margin-bottom:12px;
}

.vx-fire-industry-card p{
    color:#666;
    line-height:1.7;
    font-size:.95rem;
    margin:0;
}

@media(max-width:991px){

    .vx-fire-industries-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .vx-fire-industries-header h2{
        font-size:1.5rem;
    }

}

@media(max-width:767px){

    .vx-fire-industries-section{
        padding:70px 0;
    }

    .vx-fire-industries-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .vx-fire-industries-header h2{
        font-size:1.5rem;
    }

    .vx-fire-industry-card{
        padding:25px 20px;
    }

}


/*====================================
      K9 DEPLOYMENT SECTION
====================================*/

.vx-k9-deployment-section{
    padding:100px 0;
    background:#fff;
}

.vx-k9-deployment-header{
    max-width:850px;
    margin:0 auto 60px;
}

.vx-k9-deployment-header h2{
    font-size:2.3rem;
    font-weight:700;
    margin:20px 0;
}

.vx-k9-deployment-header p{
    color:#666;
    line-height:1.8;
    text-align: center;
}

.vx-k9-deployment-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.vx-k9-sector-card{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.4s ease;
    position:relative;
}

.vx-k9-sector-card:hover{
    transform:translateY(-8px);
    border-color:#A30D2D;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.vx-k9-sector-card i{
    font-size:2.3rem;
    color:#A30D2D;
    margin-bottom:18px;
}

.vx-k9-sector-card h4{
    font-size:1.15rem;
    font-weight:700;
    margin-bottom:12px;
}

.vx-k9-sector-card p{
    margin:0;
    color:#666;
    line-height:1.7;
    font-size:.95rem;
}

@media(max-width:991px){

    .vx-k9-deployment-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .vx-k9-deployment-header h2{
        font-size:1.5rem;
    }

}

@media(max-width:767px){

    .vx-k9-deployment-section{
        padding:70px 0;
    }

    .vx-k9-deployment-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .vx-k9-deployment-header h2{
        font-size:1.5rem;
    }

    .vx-k9-sector-card{
        padding:25px 20px;
    }

}

/*===================================
   KEY HOLDING INDUSTRIES
===================================*/

.vx-keyholding-industries-section{
    padding:100px 0;
    background:#fff;
}

.vx-keyholding-header{
    max-width:850px;
    margin:0 auto 60px;
}

.vx-keyholding-header h2{
    font-size:2.3rem;
    font-weight:700;
    margin:20px 0;
}

.vx-keyholding-header p{
    color:#666;
    line-height:1.8;
}

.vx-keyholding-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.vx-keyholding-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:30px;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:18px;
    transition:.4s ease;
}

.vx-keyholding-card:hover{
    transform:translateY(-8px);
    border-color:#A30D2D;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.vx-keyholding-card i{
    font-size:2rem;
    color:#A30D2D;
    min-width:50px;
    margin-top:5px;
}

.vx-keyholding-card h4{
    font-size:1.15rem;
    font-weight:700;
    margin-bottom:8px;
}

.vx-keyholding-card p{
    margin:0;
    color:#666;
    line-height:1.7;
    font-size:.95rem;
}

@media(max-width:991px){

    .vx-keyholding-grid{
        grid-template-columns:1fr;
    }

    .vx-keyholding-header h2{
        font-size:1.5rem;
    }

}

@media(max-width:767px){

    .vx-keyholding-industries-section{
        padding:70px 0;
    }

    .vx-keyholding-header h2{
        font-size:1.5rem;
    }

    .vx-keyholding-card{
        padding:22px;
        gap:15px;
    }

    .vx-keyholding-card i{
        font-size:1.6rem;
    }

}

/*====================================
    MOBILE PATROL COVERAGE SECTION
====================================*/

.vx-patrol-coverage-section{
    padding:100px 0;
    background:#fff;
}

.vx-patrol-header{
    max-width:850px;
    margin:0 auto 60px;
}

.vx-patrol-header h2{
    font-size:2.3rem;
    font-weight:700;
    margin:20px 0;
}

.vx-patrol-header p{
    color:#666;
    line-height:1.8;
}

.vx-patrol-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.vx-patrol-card{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.vx-patrol-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:#A30D2D;
    transform:scaleX(0);
    transition:.4s ease;
}

.vx-patrol-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.vx-patrol-card:hover::before{
    transform:scaleX(1);
}

.vx-patrol-card i{
    font-size:2.2rem;
    color:#A30D2D;
    margin-bottom:18px;
}

.vx-patrol-card h4{
    font-size:1.15rem;
    font-weight:700;
    margin-bottom:12px;
}

.vx-patrol-card p{
    margin:0;
    color:#666;
    font-size:.95rem;
    line-height:1.7;
}

@media(max-width:991px){

    .vx-patrol-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .vx-patrol-header h2{
        font-size:1.5rem;
    }

}

@media(max-width:767px){

    .vx-patrol-coverage-section{
        padding:70px 0;
    }

    .vx-patrol-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .vx-patrol-header h2{
        font-size:1.5rem;
    }

    .vx-patrol-card{
        padding:25px 20px;
    }

}

/*==================================
    TRAFFIC INDUSTRIES SECTION
===================================*/

.vx-traffic-industries-section{
    padding:100px 0;
    background:#fff;
}

.vx-traffic-industries-header{
    max-width:850px;
    margin:0 auto 60px;
}

.vx-traffic-industries-header h2{
    font-size:2.3rem;
    font-weight:700;
    margin:20px 0;
}

.vx-traffic-industries-header p{
    color:#666;
    line-height:1.8;
    text-align: center;
}

.vx-traffic-flow-wrapper{
    max-width:900px;
    margin:0 auto;
    position:relative;
}

.vx-traffic-flow-wrapper::before{
    content:'';
    position:absolute;
    left:35px;
    top:0;
    width:3px;
    height:100%;
    background:#A30D2D;
    opacity:.15;
}

.vx-traffic-flow-item{
    display:flex;
    gap:25px;
    margin-bottom:35px;
    position:relative;
}

.vx-flow-icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:50%;
    background:#A30D2D;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
}

.vx-flow-icon i{
    color:#fff;
    font-size:1.5rem;
}

.vx-flow-content{
    flex:1;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:18px;
    padding:25px 30px;
    transition:.4s ease;
}

.vx-flow-content:hover{
    transform:translateX(8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border-color:#A30D2D;
}

.vx-flow-content h4{
    margin-bottom:10px;
    font-size:1.2rem;
    font-weight:700;
}

.vx-flow-content p{
    margin:0;
    color:#666;
    line-height:1.7;
}

@media(max-width:767px){

    .vx-traffic-industries-section{
        padding:70px 0;
    }

    .vx-traffic-industries-header h2{
        font-size:1.5rem;
    }

    .vx-flow-icon{
        width:55px;
        height:55px;
        min-width:55px;
    }

    .vx-traffic-flow-wrapper::before{
        left:26px;
    }

    .vx-flow-content{
        padding:18px;
    }

    .eyebrow{
    text-align: center;
}
}
@media (max-width: 767px){

    .btn.btn-contact{
        display: table;
        margin: 20px auto 0;
        text-align: center;
    }

}
@media (max-width: 767px) {

    .section-tag,
    .vx-section-tag {
        display: inline-block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .container,
    .vx-heading,
    .vx-section-heading,
    .vx-benefits-header,
    .vx-overview-header {
        text-align: center;
    }

}

.section-tag,
.vx-section-tag{
    margin-bottom: 30px !important; /* Space below tag */
}

h2{
    margin-bottom: 25px !important; /* Space below heading */
}

@media (max-width: 767px){

    .service-highlight .row{
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .service-highlight .col-6{
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

}
@media (max-width: 767px) {

    .security-services-grid{
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        justify-content: center !important;
    }

    .security-services-grid a,
    .security-services-grid .service-item,
    .security-services-grid span{
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
    }


    
}

/* Mobile & Tablet */

@media (max-width: 991px) {

    .hs-policy-box ul{
        padding-left: 20px !important;
        text-align: left !important;
    }

    .hs-policy-box ul li{
        text-align: left !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        display: list-item !important;
        margin-bottom: 12px;
    }

}

@media (max-width: 991px){

    .quality-policy-box{
        text-align: left !important;
    }

    .quality-policy-box ul{
        width: 100%;
        padding-left: 22px !important;
        margin: 20px 0 !important;
        text-align: left !important;
        list-style-position: outside !important;
    }

    .quality-policy-box ul li{
        display: list-item !important;
        text-align: left !important;
        margin-bottom: 12px !important;
        padding-left: 0 !important;
        line-height: 1.8;
    }

}

@media (max-width: 991px){

    .csr-list{
        text-align: left !important;
        padding-left: 20px !important;
        margin-left: 0 !important;
    }

    .csr-list li{
        display: list-item !important;
        text-align: left !important;
        margin-bottom: 10px !important;
        line-height: 1.8;
    }

}

@media (max-width: 991px){

    .env-section{
        text-align: left !important;
    }

    .env-section ul{
        padding-left: 25px !important;
        margin: 15px 0 !important;
        text-align: left !important;
        width: 100%;
    }

    .env-section ul li{
        display: list-item !important;
        text-align: left !important;
        line-height: 1.8 !important;
        margin-bottom: 10px !important;
    }

}

@media (max-width: 991px){

    .env-section h3,
    .env-intro-box h3{
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        display: flex !important;
        gap: 10px;
        margin-bottom: 20px !important;
    }

}

@media (max-width: 991px){

    .env-section h3{
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        gap: 8px;
        width: 100%;
    }

    .env-section h3 i{
        margin: 0 !important;
    }

}

@media (max-width: 991px){

    .env-section{
        text-align: center !important;
    }

    .env-section h3{
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

}

@media (max-width: 991px){

    .quality-intro-box h3,
    .quality-policy-box h3,
    .quality-commitment-box h3{
        font-size: 24px !important;
        line-height: 1.3 !important;
        text-align: center !important;
        width: 100%;
        margin: 0 auto 20px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px;
    }

    .quality-intro-box h3 i,
    .quality-policy-box h3 i,
    .quality-commitment-box h3 i{
        margin: 0 !important;
    }

}

@media (max-width: 991px){

    .quality-intro-box h3,
    .quality-policy-box h3,
    .quality-commitment-box h3{
        font-size: 24px !important;
        line-height: 1.3 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px;
    }

}

@media (max-width: 991px){

    .quality-policy-box{
        text-align: left !important;
    }

    .quality-policy-box ul{
        padding-left: 22px !important;
        margin: 15px 0 !important;
        text-align: left !important;
    }

    .quality-policy-box ul li{
        display: list-item !important;
        text-align: left !important;
        line-height: 1.8 !important;
        margin-bottom: 12px !important;
    }

}
@media (max-width: 991px){

    .quality-policy-box,
    .quality-policy-box ul,
    .quality-policy-box ul li{
        text-align: left !important;
    }

    .quality-policy-box ul{
        display: block !important;
        padding-left: 25px !important;
        margin-left: 0 !important;
    }

    .quality-policy-box ul li{
        display: list-item !important;
    }

}
.equality-policy-box ul li{
    text-align: left;
}

.pension-policy-box ul li{
    text-align: left;
}
.drug-policy-box ul li{
    text-align: left;
}
.slavery-policy-box ul li{
    text-align: left;
}
.loneworker-policy-box li{
    text-align: left;
}
.privacy-card ul li{
    text-align: left;
}

/* =========================================
   MOBILE & TABLET FIXES
========================================= */

@media (max-width: 991px) {

    /* SECTION TAGS */
    .section-tag{
        display: table !important;
        margin: 0 auto 20px !important;
        text-align: center !important;
    }

    /* PAGE HEADINGS */
    h1,
    h2{
        text-align: center !important;
    }

    /* CARD HEADINGS */
    h3{
        text-align: center !important;
        font-size: 24px !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
    }

    /* ICON + HEADING CENTER */
    h3 i{
        display: block !important;
        margin: 0 auto 12px !important;
        text-align: center !important;
    }

    /* PARAGRAPHS */
    p{
        text-align: center;
    }

    /* LISTS LEFT ALIGN */
    ul{
        text-align: left !important;
        padding-left: 22px !important;
        margin-top: 15px !important;
    }

    ul li{
        text-align: left !important;
        display: list-item !important;
        line-height: 1.8 !important;
        margin-bottom: 10px !important;
    }

    /* BOOTSTRAP ROW SPACING */
   

    /* FEEDBACK PAGE */
    .feedback-info-card,
    .feedback-form-card{
        margin-bottom: 25px;
    }

    /* FORM BUTTON */
    .feedback-btn{
        width: 100%;
    }

    /* ALL CARDS */
    .quality-intro-box,
    .quality-policy-box,
    .quality-commitment-box,
    .csr-section,
    .env-section,
    .hs-policy-box,
    .about-content-card{
        text-align: center;
    }

    /* LISTS INSIDE CARDS */
    .quality-policy-box ul,
    .csr-list,
    .env-section ul,
    .hs-policy-box ul{
        text-align: left !important;
        padding-left: 22px !important;
    }

    .quality-policy-box ul li,
    .csr-list li,
    .env-section ul li,
    .hs-policy-box ul li{
        text-align: left !important;
    }

}

.patrol-list li{
    text-align: left;
}

/* =========================================
   CTA SECTION - MOBILE & TABLET FIX
========================================= */

@media (max-width: 991px){

    .vx-final-cta-section{
        padding: 50px 0px !important;
        text-align: center !important;
        overflow: hidden !important;
    }

    .vx-final-cta-section .row{
        flex-direction: column !important;
        row-gap: 30px !important;
    }

    .vx-final-content{
        text-align: center !important;
    }

    .vx-final-content .vx-section-tag{
        display: inline-block !important;
        margin: 0 auto 15px !important;
    }

    .vx-final-content h2{
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }

    .vx-final-content p{
        text-align: center !important;
        font-size: 15px !important;
        line-height: 1.8 !important;
        margin-bottom: 15px !important;
    }

    .vx-contact-details{
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .vx-contact-details .contact-item{
        justify-content: center !important;
    }

    .col-lg-5.offset-lg-1,
    .col-lg-6{
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .vx-final-cta-form,
    .vx-quote-form,
    .vx-contact-form{
        width: 100% !important;
        margin-top: 20px !important;
    }

    .vx-final-cta-section input,
    .vx-final-cta-section select,
    .vx-final-cta-section textarea{
        width: 100% !important;
    }

    .vx-final-cta-section .btn,
    .vx-final-cta-section button{
        width: 100% !important;
    }
}
@media (max-width: 991px){

    .vx-contact-details{
        width: 100% !important;
        text-align: left !important;
    }

    .vx-contact-item{
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        text-align: left !important;
        gap: 15px !important;
        margin-bottom: 25px !important;
    }

    .vx-contact-item i{
        flex-shrink: 0;
        margin-top: 4px !important;
    }

    .vx-contact-item div{
        width: 100% !important;
        text-align: left !important;
    }

    .vx-contact-item strong{
        display: block !important;
        text-align: left !important;
    }

    .vx-contact-item p,
    .vx-contact-item a{
        text-align: left !important;
    }

    .vx-final-content p{
        text-align: center !important;
    }

}

@media (max-width: 991px){

    .footer-links{
        text-align: center !important;
        padding-left: 0 !important;
        margin: 0 auto !important;
        list-style: none !important;
    }

    .footer-links li{
        text-align: center !important;
        margin-bottom: 10px !important;
    }

    .footer-links li a{
        display: inline-block !important;
        text-align: center !important;
    }

}


@media (max-width: 991px){

    .hero .row.align-items-center{
        display: flex !important;
        flex-direction: column !important;
    }

    /* Hero Content */
    .hero .col-lg-7{
        order: 1 !important;
        width: 100% !important;
    }

    /* Quote Form */
    .hero .col-lg-5{
        order: 2 !important;
        width: 100% !important;
        margin-top: 30px !important;
    }

}

.service-card a{
    color: #ffffff !important;
    text-decoration: none !important;
}



/* =========================================
 bg images for all services both desktop and mobile view
========================================= */

/* ==================================================
   CORPORATE OFFICE SECURITY HERO BANNER
================================================== */

#corporate-hero{
    position: relative;
    background: url('images/bg/corporate-office-security.webp') center center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay */
#corporate-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

/* Content Above Overlay */
#corporate-hero .container{
    position: relative;
    z-index: 2;
}

/* ==================================================
   MOBILE HERO BANNER
================================================== */

@media (max-width: 767px){

    #corporate-hero{
        background: url('images/bg/corporate-office-security1.webp') center center/cover no-repeat;
    }

}

/* ==================================================
   CONCIERGE SECURITY HERO BANNER
================================================== */

#concierge-hero{
    position: relative;
    background: url('images/bg/concierge-security.webp') center center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay */
#concierge-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

/* Content Above Overlay */
#concierge-hero .container{
    position: relative;
    z-index: 2;
}

/* ==================================================
   MOBILE HERO BANNER
================================================== */

@media (max-width: 767px){

    #concierge-hero{
        background: url('images/bg/concierge-security1.webp') center center/cover no-repeat;
    }

}

/* ==================================================
   CONSTRUCTION SECURITY HERO BANNER
================================================== */

#construction-hero{
    position: relative;
    background: url('images/bg/construction-security.webp') center center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay */
#construction-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

/* Content Above Overlay */
#construction-hero .container{
    position: relative;
    z-index: 2;
}

/* ==================================================
   MOBILE HERO BANNER
================================================== */

@media (max-width: 767px){

    #construction-hero{
        background: url('images/bg/construction-security1.webp') center center/cover no-repeat;
    }

}

/* ==================================================
   EVENT SECURITY HERO BANNER
================================================== */

#event-hero{
    position: relative;
    background: url('images/bg/event-security.webp') center center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay */
#event-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

/* Content Above Overlay */
#event-hero .container{
    position: relative;
    z-index: 2;
}

/* ==================================================
   MOBILE HERO BANNER
================================================== */

@media (max-width: 767px){

    #event-hero{
        background: url('images/bg/event-security1.webp') center center/cover no-repeat;
    }

}

/* ==================================================
   HOTEL SECURITY HERO BANNER
================================================== */

#hotel-hero{
    position: relative;
    background: url('images/bg/hotel-security.webp') center center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay */
#hotel-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

/* Content Above Overlay */
#hotel-hero .container{
    position: relative;
    z-index: 2;
}

/* ==================================================
   MOBILE HERO BANNER
================================================== */

@media (max-width: 767px){

    #hotel-hero{
        background: url('images/bg/hotel-security1.webp') center center/cover no-repeat;
    }

}

/* ==================================================
   RETAIL SECURITY HERO BANNER
================================================== */

#retail-hero{
    position: relative;
    background: url('images/bg/retail-security.webp') center center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay */
#retail-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

/* Content Above Overlay */
#retail-hero .container{
    position: relative;
    z-index: 2;
}

/* ==================================================
   MOBILE HERO BANNER
================================================== */

@media (max-width: 767px){

    #retail-hero{
        background: url('images/bg/retail-security1.webp') center center/cover no-repeat;
    }

}

/* ==================================================
   INDUSTRIAL & WAREHOUSE SECURITY HERO BANNER
================================================== */

#industrial-hero{
    position: relative;
    background: url('images/bg/industrial-security.webp') center center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay */
#industrial-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

/* Content Above Overlay */
#industrial-hero .container{
    position: relative;
    z-index: 2;
}

/* ==================================================
   MOBILE HERO BANNER
================================================== */

@media (max-width: 767px){

    #industrial-hero{
        background: url('images/bg/industrial-security1.webp') center center/cover no-repeat;
    }

}

/* ==================================================
   FIRE MARSHAL HERO BANNER
================================================== */

#fire-marshal-hero{
    position: relative;
    background: url('images/bg/fire-marshal.webp') center center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay */
#fire-marshal-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

/* Content Above Overlay */
#fire-marshal-hero .container{
    position: relative;
    z-index: 2;
}

/* ==================================================
   MOBILE HERO BANNER
================================================== */

@media (max-width: 767px){

    #fire-marshal-hero{
        background: url('images/bg/fire-marshal1.webp') center center/cover no-repeat;
    }

}

/* ==================================================
   K9 SECURITY HERO BANNER
================================================== */

#k9-hero{
    position: relative;
    background: url('images/bg/k9-security.webp') center center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay */
#k9-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

/* Content Above Overlay */
#k9-hero .container{
    position: relative;
    z-index: 2;
}

/* ==================================================
   MOBILE HERO BANNER
================================================== */

@media (max-width: 767px){

    #k9-hero{
        background: url('images/bg/k9-security1.webp') center center/cover no-repeat;
    }

}

/* ==================================================
   KEY HOLDING HERO BANNER
================================================== */

#key-holding-hero{
    position: relative;
    background: url('images/bg/key-holding.webp') center center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay */
#key-holding-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

/* Content Above Overlay */
#key-holding-hero .container{
    position: relative;
    z-index: 2;
}

/* ==================================================
   MOBILE HERO BANNER
================================================== */

@media (max-width: 767px){

    #key-holding-hero{
        background: url('images/bg/key-holding1.webp') center center/cover no-repeat;
    }

}

/* ==================================================
   MOBILE PATROLS HERO BANNER
================================================== */

#mobile-patrol-hero{
    position: relative;
    background: url('images/bg/mobile-patrol.webp') center center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay */
#mobile-patrol-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

/* Content Above Overlay */
#mobile-patrol-hero .container{
    position: relative;
    z-index: 2;
}

/* ==================================================
   MOBILE HERO BANNER
================================================== */

@media (max-width: 767px){

    #mobile-patrol-hero{
        background: url('images/bg/mobile-patrol1.webp') center center/cover no-repeat;
    }

}

/* ==================================================
   TRAFFIC MARSHALS HERO BANNER
================================================== */

#traffic-marshal-hero{
    position: relative;
    background: url('images/bg/traffic-marshals.webp') center center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay */
#traffic-marshal-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

/* Content Above Overlay */
#traffic-marshal-hero .container{
    position: relative;
    z-index: 2;
}

/* ==================================================
   MOBILE HERO BANNER
================================================== */

@media (max-width: 767px){

    #traffic-marshal-hero{
        background: url('images/bg/traffic-marshals1.webp') center center/cover no-repeat;
    }

}

/* ==================================================
   CLOSE PROTECTION HERO BANNER
================================================== */

#close-protection-hero{
    position: relative;
    background: url('images/bg/close-protection.webp') center center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay */
#close-protection-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

/* Content Above Overlay */
#close-protection-hero .container{
    position: relative;
    z-index: 2;
}

/* ==================================================
   MOBILE HERO BANNER
================================================== */

@media (max-width: 767px){

    #close-protection-hero{
        background: url('images/bg/close-protection1.webp') center center/cover no-repeat;
    }

}

/* ==================================================
   CLEANING SERVICES HERO BANNER
================================================== */

#cleaning-services-hero{
    position: relative;
    background: url('images/bg/cleaning-services.webp') center center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay */
#cleaning-services-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.75) 100%
    );
    z-index: 1;
}

/* Content Above Overlay */
#cleaning-services-hero .container{
    position: relative;
    z-index: 2;
}

/* ==================================================
   MOBILE HERO BANNER
================================================== */

@media (max-width: 767px){

    #cleaning-services-hero{
        background: url('images/bg/cleaning-services1.webp') center center/cover no-repeat;
    }

}



.vx-careers-content p{
    text-align: justify;
}




@media (max-width: 767px){

    p{
        text-align: center !important;

    }
    .vx-faq-section .accordion-body{
        text-align: left;
    }

}
    #contact_li a{
        color: black !important;
    }
    #contact_lii span{
         color: black !important;
    }



.about-feature-card p, .security-feature-box p, .csr-card p, .env-card p, .quality-card p,.equality-card p,
.pension-card p, .drug-card p, .slavery-card p, .loneworker-card p, .vx-service-box p, .vx-benefit-box p, .vx-operation-card p,
.vx-operation-card, .vx-related-card p, .vx-event-type-card p,.vx-why-card p, .vx-event-types-header p,.vx-hotel-duty-card p, .vx-retail-sector-card p, .vx-process-card p
,.vx-threat-card p, .vx-fire-industry-card p,.vx-k9-sector-card p, .vx-keyholding-header p,.vx-patrol-header p,.vx-patrol-card p,.vx-office-card p {
    text-align: center !important;
}

.vx-risk-card p{
    text-align: left;
}

/* =========================================
   FOOTER IMPROVEMENTS
========================================= */

.site-footer{
    padding-top:80px !important;
}

.footer-logo{
    margin-bottom:25px !important;
  
}

.footer-logo img{
    max-width:220px !important;
    height:auto !important;
}

.footer-about{
    line-height:1.9 !important;
    max-width:360px !important;
    margin-bottom:25px !important;
}

.footer-social{
    margin-top:25px !important;
}

.footer-social a{
    display:inline-flex !important; 
    align-items:center !important;
    justify-content:center !important;

    width:35px !important;
    height:35px !important;

    margin-right:10px !important;

    border-radius:50% !important;

    background:rgba(255,255,255,0.08) !important;

    transition:all .3s ease !important;
}

.footer-social a:hover{
    background:#a30d2d !important;
    transform:translateY(-3px) !important;
}

.footer-links{
    margin:0 !important;
    padding:0 !important;
    list-style:none !important;
}

.footer-links li{
    margin-bottom:12px !important;
}

.footer-links li a{
    color:#ffffff !important;
    text-decoration:none !important;
    transition:all .3s ease !important;
}

.footer-links li a:hover{
    color:#a30d2d !important;
    padding-left:6px !important;
}

.footer-contact{
    margin:0 !important;
    padding:0 !important;
    list-style:none !important;
}

.footer-contact li{
    display:flex !important;
    align-items:flex-start !important;
    gap:12px !important;

    margin-bottom:15px !important;
}

.footer-contact li i{
    color:#a30d2d !important;
    margin-top:4px !important;
}

.footer-contact li a{
    color:#ffffff !important;
    text-decoration:none !important;
}

.footer-contact li a:hover{
    color:#a30d2d !important;
}

.site-footer h4{
    margin-bottom:25px !important;
    position:relative !important;
}

.site-footer h4::after{
    content:'' !important;

    position:absolute !important;
    left:0 !important;
    bottom:-8px !important;

    width:40px !important;
    height:3px !important;

    background:#a30d2d !important;
}

.footer-bottom{
    margin-top:50px !important;
    padding:20px 0 !important;

    border-top:1px solid rgba(255,255,255,0.08) !important;
}

.copyright{
    text-align:center !important;
    width:100% !important;
}

/* MOBILE */

@media(max-width:767px){

    .site-footer{
        text-align:center !important;
    }

    .footer-about{
        max-width:100% !important;
    }

    .site-footer h4::after{
        left:50% !important;
        transform:translateX(-50%) !important;
    }

    .footer-contact li{
        justify-content:center !important;
    }
    .footer-logo{
    margin-bottom:25px !important;
    margin-left: 60px !important;
}

}

.top-bar-right a{
    display: none;
}
.top-bar-left{
    padding-left: 400px;
}

/* Mobile View Only */
@media (max-width: 767px) {
    .services-section p,
    .about-section p {
        text-align: center  !important;
    }
     .vx-testimonials-content p{
        text-align: center !important;
    }
      .patrol-section p {
        text-align: left !important;
    }
     .services-section p{
        padding: 0 8px !important;
    }
}
/* Mobile View Only */
@media (max-width: 767px) {
    .inner-content > .container > p {
        text-align: center !important;
    }
}
/* Mobile View Only */
@media (max-width: 767px) {
    .values-box .value-item > p {
        text-align: center !important;
    }
}
/* Mobile View Only */
@media (max-width: 767px) {
    .security-commitment-box > p {
        text-align: center !important;
    }
}
/* Mobile View Only */
@media (max-width: 767px) {
    .csr-commitment > p {
        text-align: center !important;
    }
}
/* Mobile View Only */
@media (max-width: 767px) {
    .env-commitment > p {
        text-align: center !important;
    }
}
/* Mobile View Only */
@media (max-width: 767px) {
    .hs-commitment-box > p {
        text-align: center !important;
    }
}
/* Mobile View Only */
@media (max-width: 767px) {
    .quality-commitment-box > p {
        text-align: center !important;
    }
}
/* Mobile View Only */
@media (max-width: 767px) {
    .equality-commitment-box > p {
        text-align: center !important;
    }
}
/* Mobile View Only */
@media (max-width: 767px) {
    .pension-commitment-box > p {
        text-align: center !important;
    }
}
/* Mobile View Only */
@media (max-width: 767px) {
    .drug-commitment-box > p {
        text-align: center !important;
    }
}
/* Mobile View Only */
@media (max-width: 767px) {
    .slavery-commitment-box > p {
        text-align: center !important;
    }
}
/* Mobile View Only */
@media (max-width: 767px) {
    .loneworker-commitment-box > p {
        text-align: center !important;
    }
}
/* Mobile View Only */
@media (max-width: 767px) {
    .gallery-section .gallery-intro {
        text-align: center !important;
    }
}
/* Mobile View Only */
@media (max-width: 767px) {
    .faq-intro {
        text-align: center !important;
    }
}
/* Mobile View Only */
@media (max-width: 767px) {
    .vx-services-cta > p {
        text-align: center !important;
    }
}
/* Mobile View Only */
@media (max-width: 767px) {
    .vx-hotel-duty-header > p {
        text-align: center !important;
    }
}

/* Mobile View Only */
@media (max-width: 767px) {
    .vx-contact-row {
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .vx-contact-row span {
        text-align: left !important;
    }
}

/* Mobile View Only */
@media (max-width: 767px) {
    .vx-contact-item {
        display: flex;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .vx-contact-item > div {
        text-align: left !important;
    }

    .vx-contact-item strong,
    .vx-contact-item p {
        text-align: left !important;
    }
}


/* ==========================
   METALLIC SHINE
========================== */

.footer-logo{
    position:relative !important;
    display:inline-block !important;
    overflow:hidden !important;
}

.footer-logo img{
    position:relative;
    z-index:2;
}

.footer-logo::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    105deg,
    transparent 35%,
    rgba(255,255,255,.85) 48%,
    rgba(255,255,255,.15) 52%,
    transparent 65%
    );

    transform:translateX(-180%);

         animation:metalShine 6s linear infinite;

    z-index:5;

    pointer-events:none;

}

@keyframes metalShine{

    100%{
        transform:translateX(220%);
    }

}
/* ==========================
   FOOTER LOGO MOBILE FIX
========================== */

@media (max-width: 991px){

    .site-footer .col-lg-3,
    .site-footer .col-md-6,
    .site-footer .footer-logo{
        text-align:center !important;
    }

    .site-footer .footer-logo{
        width:100% !important;
        display:flex !important;
        justify-content:center !important;
        align-items:center !important;
        margin:0 auto 25px !important;
    }

    .site-footer .footer-logo img{
        display:block !important;
        width:220px !important;
        max-width:100% !important;
        margin:0 auto !important;
    }

}

.vx-office-section .row.g-4{
    display: none !important;
}