
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Open Sans", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #106eea;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #222222;
  /* The default color of the main navmenu links */
  --nav-hover-color: #106eea;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #222222;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #106eea;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f9ff;
  --surface-color: #ffffff;
}

/* .dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
} */

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: #000000;
  background-color: var(--background-color);
  font-family: 'AlbertSans-Regular';
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

span {
  color: #45133A;
}

p {
  font-size: 18px;
  color: #FFFFFF;
}

h1 {
  font-size: 37px;
  font-family: 'AlbertSans-Bold';
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

h2,
h3,
h4,
h5,
h6 {
  color: #FFFFFF;
  font-family: 'AlbertSans-Bold';
  font-weight: 700;

}

h2 {
  font-size: 38px;
  text-transform: uppercase;


}

@font-face {
  font-family: AlbertSans-Regular;
  src: url(../font/AlbertSans-Regular.ttf);
}

@font-face {
  font-family: AlbertSans-Medium;
  src: url(../font/AlbertSans-Medium.ttf);
}

@font-face {
  font-family: AlbertSans-Bold;
  src: url(../font/AlbertSans-Bold.ttf);
}

@font-face {
  font-family: AlbertSans-ExtraBold;
  src: url(../font/AlbertSans-ExtraBold.ttf);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color:#1B1B1B;
}

.navmenu ul {
  margin: 0;
}

.navmenu ul li {
  list-style: none;
}

.navmenu ul li a {
  background-color: #B31010;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 8px;
  font-size: 20px;
}

.header .logo img {
  max-height: 72px;
  padding: 10px 0px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #B31010;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(#8E2167), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 75vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/Banner.jpg) top left;
  background-size: cover;
}

.hero:before {
  content: "";
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 5.47%, #000000 162%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.hero .container {
  position: relative;
}


.hero h2{
  margin-bottom: 15px;
}

.hero p {
  padding-top: 0px;
  color: white;
  line-height: 40px;
  max-width: 100%;
  font-size: 26px;
  margin: 0;
}
.welcome{
  margin: 15px 0;
  padding: 20px 0;
}

.welcome::before {
  content: "";
  display: flex;
  width: 10px;
  height: 100%;
  border-left: 4px solid #B31010;
  padding-right: 21px;
}


@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

#installation,
#executed,
#perimeter,
#detection,
#installation-second,
#installation-th{
  background-color: #1B1B1B;
}

#installation-second{
  background-image:url(../img/Img_BG.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#security
 {
  background-color: #000000;
}


#intrusion {
  background-color: #000000;
}

.a1from{
  background-color: #000000;
}

.sub-title{
  text-transform: none;
}

.section-heading {
  position: relative;
  display: inline-block;
  text-transform: none;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -3px; /* space below text */
  left: 0;
  width: 50px;   /* underline width */
  height: 2px;   /* underline thickness */
  background-color: #c1272d; /* red line */
}


#yoursecurity{
  background-image: url('../img/Brochure.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.btn-get-started{
  background-color: #B31010;
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 8px;
    font-size: 20px;

}

.installation-content{
  gap: 10px;
}


.right-arrow-executed {
  position: absolute;
  top: -13%;
  right: 0;
}
.left-arrow-executed {
  position: absolute;
  right: 4%;
  top: -13%;
}


.icons img {
  width: 28px;
  margin-right: 10px;
}


.prestigious-box {
  width: 100%;
  margin: 10px;
}

.card-custom {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.installation-th-img img{
  width: 100%;
}


.perimeter-title {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
}

.perimeter-title::after {
  content: "";
  position: absolute;
  bottom: -10px; /* distance from text */
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #B31010;
  border-radius: 2px;
}

.red-button-mobile a{
  color: #fff;
  background-color: #B31010;
  padding: 10px 20px;
  margin-left: -17px;
}

.blue-button-mobile a{
  color: #fff;
  background-color: #374395;
  padding: 10px 20px;
  margin-left: -17px;

}

.green-button-mobile a{
  color: #fff;
  background-color: #008735;
  padding: 10px 20px;
  margin-left: -17px;

}

.yellow-button-mobile a{
  color: #fff;
  background-color: #E3AD15;
  padding: 10px 20px;
  margin-left: -17px;

}


/* Center dots at bottom */
.slick-dots {
  position: absolute;
  bottom: 20px; /* adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  background-color: black;
  padding: 6px 14px;
  border-radius: 30px;
  display: flex !important;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  z-index: 10;
}

/* Remove button default styles */
.slick-dots li {
  margin: 0;
  height: 23px;
}
.slick-dots li button {
  font-size: 0;
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

/* Custom dot styling */
.custom-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background-color: white;
  transition: background-color 0.3s ease;
}

/* Active dot red */
.slick-dots li.slick-active .custom-dot {
  background-color: red;
}

/* Make sure slider container is relative for dot positioning */
.insta-main {
  position: relative;
}












#executed .card-custom {
  margin: 15px;
}

#detection .card-custom {
  margin: 15px;
}

#perimeter .card-custom {
  margin: 15px;
}

.card-img {
  height: 100%;
  object-fit: cover;
}

.card{
  border: none;
}

.card-img-overlay {
  position: absolute;
  top: 79%;
  left: 0;
  width: 100%;
  background: #000000B2;
  color: white;
  padding: 20px;
  transition: 0.8s ease;
  border-radius: unset;
}

.card-title {
  margin-bottom: 10px;
  opacity: 1;
}

.card-text {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.8s ease;
}


.card-img-overlay:hover .card-title {
  margin-top: 20px;
}

.card-custom:hover .card-img-overlay {
  top: 0%;
  transition: 0.8s ease;
}

.card-custom:hover .card-text {
  opacity: 1;
  transform: translateY(0);
}


.information {
  background-color: #C62127;
}

#unicopromise{
  position: relative;
}

.unicopromise{
  background-color: #FFFFFF;
}

.unicopromise h2{
  color: #B31010;
}

.red-button{
  position: absolute;
    top: 19%;
    bottom: 0%;
    left: 13%;
}

.red-button::after{
  content: '';
  position: absolute;
  top: 5%;
  left: 96%;
  height: 1px;
  width: 133px;
  background-color: #B31010;
  margin-left: 5px;
}

.red-button::before {
  content: '';
  position: absolute;
  top: 5%;
  left: calc(92% + 150px);
  height: 118px;
  width: 1px;
  background-color:#B31010;
}

.blue-button{
  position: absolute;
  top: 18%;
  right: 14%;
  bottom: 0;
}

.blue-button::after {
  content: '';
    position: absolute;
    top: 6%;
    right: 96%;
    width: 48px;
    height: 1px;
    background-color: #2e3e94;
    margin-right: 5px;
}

.blue-button::before {
  content: '';
  position: absolute;
  top: 11%;
  right: calc(100% + 40px);
  height: 56px;
  width: 1px;
  background-color: #2e3e94;
  transform: translateY(-50%);
}

.green-button{
  position: absolute;
  bottom: 23%;
  left: 13%;
}

.green-button::after {
  content: '';
    position: absolute;
    top: 43%;
    left: 98%;
    height: 1px;
    width: 94px;
    background-color: #008735;
    margin-left: 5px;
}

.yellow-button{
  position: absolute;
    bottom: 23%;
    right: 13%;
}

.yellow-button::before {
  content: '';
  position: absolute;
  bottom: 50%;
  right: 126%;
  height: 128px;
  width: 1px;
  background-color: #E3AD15;
}


.yellow-button::after {
  content: '';
    position: absolute;
    top: calc(-14% + 39px);
    left: -26%;
    width: 84px;
    height: 1px;
    background-color: #E3AD15;
}

.red-button a{
  background-color: #B31010;
  padding: 10px 20px;
  margin-left: -17px;
  color: #fff;
}

.red-button a:hover{
  text-decoration: underline;
}

.blue-button a:hover{
  text-decoration: underline;
}

.green-button a:hover{
  text-decoration: underline;
}

.yellow-button a:hover{
  text-decoration: underline;
}

.blue-button a{
  background-color: #374395;
  padding: 10px 20px;
  margin-left: -17px;
  color: #fff;
}

.green-button a{
  background-color: #008735;
  padding: 10px 20px;
  margin-left: -17px;
  color: #fff;
}

.yellow-button a{
  background-color: #E3AD15;
  padding: 10px 20px;
  margin-left: -17px;
  color: #fff;
}

.number {
  position: relative;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  display: flex;
  padding-top: 10px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: -23px;
}

.number a {
  margin: 0;
  padding: 30px 0px;
  color: #ffffff !important;
}

.fix-interested-button {
  position: fixed;
  right: -8px;
  top: 50%;
  transform: translate(100%, 100%) rotate(-90deg);
  transform-origin: left 40px;
}

.btn-get-stky {
  background-color: #B31010;
  text-transform: uppercase;
  color: #ffffff;
  padding: 10px 30px;
  font-size: 18px;
  border-radius: 10px 10px 0 0;
}

.yoursecurity-main {
  width: 80%;
  margin: 0 auto;
}
.phoneicon img{
  max-width: 50px;
}

/* iPad Pro */
@media screen and (max-width: 1199.98px) {
  .hero {
    min-height: 30vh;
  }

  .hero p {
    padding-top: 0;
    font-size: 22px;
    line-height: normal;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 34px;
  }

  .welcome {
    margin: 10px 0;
    padding: 10px 0;
  }

  .card-img-overlay {
    padding: 10px;
  }


  p,
  a {
    font-size: 20px;
    line-height: 1.3;

  }

  .left-arrow {
    bottom: 13%;
    left: 46%;
  }

  .right-arrow {
    bottom: 13%;
    right: 45%;
  }

  .about_blog p {
    padding-bottom: 0px;
  }


}

/* iPad Mini */
@media screen and (max-width: 991.98px) {

  .hero h1 {
    font-size: 32px;
  }

  .hero {
    min-height: 40vh;
  }

  .welcome {
    margin: 10px 0;
    padding: 10px 0;
  }

  .welcome::before {
    padding-left: 10px;
  }

  .card-img-overlay {
    padding: 10px;
  }

  p,
  a {
    font-size: 16px;
  }

  .left-arrow-executed {
    right: 6%;
  }

  .hero p {
    font-size: 20px;
    line-height: normal;
  }

  h2 {
    font-size: 30px;
  }


  section {
    padding: 30px 0;
  }

  .hero h3 {
    font-size: 30px;
  }

  .icontext {
    margin-bottom: 10px;
  }

  .iconnumber {
    margin-top: 10px;
  }

.yoursecurity-main {
  width: 70%;
}

}

/* Mobile */
@media screen and (max-width:767.98px) {

  .navmenu ul li a,
  .btn-get-stky {
    padding: 10px 15px;
    font-size: 16px;
  }

  section {
    padding: 30px 0;
  }

  h2 {
    font-size: 24px;
  }

  .hero {
    background: url(../img/Mobile Banner.jpg);
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 15px;
  }

  h3 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  p,
  a {
    font-size: 15px;
  }


  .header .logo img {
    max-height: 50px;
  }

  .hero p {
    margin: 0;
    line-height: 18.6px;
    padding-bottom: 10px;
  }

  .card {
    margin-top: 10px;
  }

  .card-custom:hover .card-img-overlay {
    top: 0%;
  }



  .iconnumber {
    margin-top: 10px;
  }


  .yoursecurity-main {
    width: 100%;
  }

  .assessment-main {
    width: 100%;
  }

  .welcome {
    margin: 10px 0;
    padding: 10px 0;
  }

  .welcome::before {
    padding-left: 0px;
  }

  .zcwf_title h2 {
    font-size: 24px !important;
  }

  .zcwf_lblLeft .zcwf_col_fld input[type=text] {

    font-size: 15px !important;
  }

  .zcwf_lblLeft .zcwf_col_fld_slt {
    font-size: 15px !important;
  }

  .left-arrow-executed {
    right: 11%;
    top: -13%;
  }
 .installation-content{
  margin-top: 10px;
 }

}

/* Screen size 125% */
@media screen and (max-width: 1500px) {
  .red-button::before {
    top: 5%;
    left: calc(87% + 150px);
    height: 96px;
}
.red-button::after{
  width: 119px;
}

.blue-button::before {
  top: 9%;
  height: 35px;
}
.green-button::after {
  width: 47px;
}
.yellow-button::after {
  left: -9%;
  width: 34px;
}
.yellow-button::before {
  right: 109%;
  height: 128px;
}

.yellow-button {
  right: 8%;
}
.red-button {
  left: 8%;
}
.blue-button {
  right: 9%;
  bottom: 0;
}
.green-button {
  left: 8%;
}

}


/* Screen size 110% */
@media only screen and (max-width: 1399px) and (min-width: 1300px) {
  .red-button::before {
    top: 5%;
    left: calc(87% + 150px);
    height: 97px;
}
.red-button::after{
  width: 119px;
}

.blue-button::before {
  top: 9%;
  height: 35px;
}
.green-button::after {
  width: 47px;
}
.yellow-button::after {
  left: -9%;
  width: 34px;
}
.yellow-button::before {
  right: 109%;
  height: 128px;
}

.yellow-button {
  right: 13%;
}
.red-button {
  left: 13%;
}
.blue-button {
  right: 14%;
}
.green-button {
  left: 13%;
}
}

/* Screen size 90% */
@media screen and (max-width: 1750px) and (min-width: 1550px){

  .red-button::before {
    top: 5%;
    left: calc(87% + 150px);
    height: 132px;
}
.red-button::after{
  width: 119px;
}

.blue-button::before {
  top: 11%;
        height: 58px;
}
.green-button::after {
  width: 105px;
}
.yellow-button::after {
  left: -9%;
  width: 34px;
}
.yellow-button::before {
  right: 109%;
  height: 128px;
}

.yellow-button {
  right: 20%;
}
.red-button {
  left: 16%;
}
.blue-button {
  right: 18%;
}
.green-button {
  left: 16%;
}
}

/* Screen size 80% */
@media screen and (max-width: 1950px) and (min-width: 1750px){

.red-button::before {
  top: 5%;
  left: calc(87% + 150px);
  height: 132px;
}

.red-button::after{
  width: 119px;
}

.blue-button::before {
  top: 11%;
  height: 58px;
}

.green-button::after {
  width: 105px;
}

.yellow-button::after {
  left: -9%;
  width: 34px;
}

.yellow-button::before {
  right: 109%;
  height: 132px;
}

.yellow-button {
  right: 23%;
}

.red-button {
  left: 20%;
}

.blue-button {
  right: 22%;
}

.green-button {
  left: 20%;
}
}

/* Screen size 75% */
@media screen and (max-width: 2150px) and (min-width: 1949px){
  .red-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 96%;
    height: 1px;
    width: 133px;
    background-color: #B31010;
    margin-left: 5px;
  }
  .red-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 125px);
    height: 118px;
    width: 1px;
    background-color: #B31010;
  }
  .red-button {
    position: absolute;
    top: 20%;
    bottom: unset;
    left: 22%;
  }
  .green-button {
    position: absolute;
    bottom: 23%;
    left: 23%;
  }
  .blue-button {
    position: absolute;
    top: 18%;
    right: 23%;
    bottom: 0;
  }
  .yellow-button {
    position: absolute;
    bottom: 23%;
    right: 22%;
  }
}