@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #0f5c9f;
}

.new-hero {
  /* background: url('../img/new-hero.jpg') center center/cover no-repeat; */
  background: #fff;
  /* background: linear-gradient(135deg, #0f5c9f, #c1d3e5); */
  min-height: 50vh;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  margin: 0px 0 0 0;
  padding: 60px 0;
  /* border-bottom: 1px solid #ddd; */
}

/* .new-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
} */

.new-hero .container-fluid {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 0 auto;
}

.new-hero h1 {
    font-size: 60px;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
  width: 100%;
  text-transform: uppercase;
}

/* .new-hero h1 span:nth-child(odd) {
  color: #fff; 
}

.new-hero h1 span:nth-child(even) {
  color: #0f5c9f; 
} */

.new-hero h1 span {
  color: #0f5c9f; 
}

.new-hero button {
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 24px;
  transition: 0.3s ease;
}

.new-hero button {
  background-color: #0f5c9f;
  border-color: #0f5c9f;
  color: #fff;
}

.new-hero button:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.business-icon {
    width: 70%;
    margin: 0 auto;
    display: block;
}

.features-cards, .clients {
    background: linear-gradient(102.01deg, #eff4fd 0.3%, #f6f2ff 106.31%);
}

.swiper-pagination {
    display: none;
}

.feature-box {
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-box i {
  font-size: 42px;
  margin-bottom: 20px;
  display: inline-block;
  color: #fff;
}

.feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.feature-box p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Hover effect */
.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* Background Color Variants */
.feature-box.orange {
  background: linear-gradient(135deg, #ff9966, #ff5e62);
}

.feature-box.blue {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
}

.feature-box.green {
  background: linear-gradient(135deg, #56ab2f, #a8e063);
}

.feature-box.red {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.footer-logo {
    max-height: 70px !important;
}

.footer {
    background: #000;
    color: #fff;
}

.navmenu a {
  text-transform: uppercase;
}

.navmenu a, .navmenu a:focus {
  font-family: "Roboto Condensed", sans-serif;
}

.top-bar {
  background-color: #0f5c9f;
  color: #fff;
  font-size: 14px;
  padding: 15px 25px;
}

.top-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* left aligned */
}

.top-bar .phone {
    font-size: 30px;
    font-weight: 600;
}

.hero-video {
  padding: 0;   
  background: transparent;
}

.hero-video video {
    width: 100%;
    height: auto;
    /* object-fit: cover; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.flip-box {
  background-color: transparent;
  width: 100%;
  height: 580px;
  perspective: 1000px;
  margin-bottom: 20px;
  text-align: center;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s ease-in-out;
}

.flip-box.flipped .flip-box-inner {
  transform: rotateY(180deg);
}

/* Common face styles */
.flip-box-front,
.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #0f5c9f;
  color: #fff;
}

/* Front face */
.flip-box-front {
  transform: rotateY(0deg);
  z-index: 2;
}

/* Back face */
.flip-box-back {
  transform: rotateY(180deg);
  z-index: 1;
}

/* Buttons */
.back-box {
  position: absolute;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.back-box:hover {
  background: rgba(255, 255, 255, 0.2);
}

.front-box {
  position: absolute;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.front-box:hover {
  background: rgba(255, 255, 255, 0.2);
}

.flip-box h3 {
  color: #fff;
}

.flip-box-front, .flip-box-back-inner {
    padding: 1rem;
}

.graybg {
      background: linear-gradient(102.01deg, #eff4fd 0.3%, #f6f2ff 106.31%);
}

.looking-apparel {
  padding: 30px 0;
}

.looking-apparel h2 {
  color: #0f5c9f;
  margin: 0 0 20px 0;
  font-size: 3rem;
}

.looking-apparel h4 {
    width: 60%;
    margin: 0 auto 40px auto;
    color: #000;
    font-size: 1.2rem;
    font-weight: 500;
}

.brands-logo {
  text-align: center;
}

.brands-logo h2 {
  margin-bottom: 21px;
}

.brands-logo h4 {
    width: 60%;
    margin: 0 auto 40px auto;
    color: #000;
    font-size: 1.2rem;
    font-weight: 500;
}

.brands-logo img {
  width: 70%;
  margin: 0 auto 40px auto;
}

.accordion-item {
  text-align: left;
}

.accordion-item {
    border: 2px solid #0f5c9f !important;
    margin-bottom: 1rem;
    border-radius: 10px !important;
}

.accordion-button {
  border-radius: 7px !important;
  font-size: 1.1rem;
  color: #0f5c9f;
  font-weight: 900;
  text-transform: uppercase;
}

.accordion-header {
  margin: 0 !important;
}

.boost-your-company {
  padding: 30px 0;
}

.boost-your-company h2 {
  font-size: 3rem;
}

.boost-your-company .short-des {
    text-align: center;
    width: 100%;
    margin: 25px auto 40px auto;
    font-size: 1.2rem;
    font-weight: 500;
}

.boost-your-company .accordion {
  width: 60%;
  margin: 0 auto 0 auto;
}

.accordion-button:not(.collapsed) {
    background-color: #0f5c9f;
    color: #fff;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1);
}

.accordion-button:focus {
  box-shadow: none;
}

.benefits-of-cctv {
  padding: 30px 0;
}

.benefits-of-cctv h2 {
  font-size: 3rem;
  
}

.flip-box-front img {
  width: 100%;
}

.home-form-sec {
 background: #0056b3;
}

.home-form-sec h2 {
  color: #fff;
  font-size: 3rem;
}

.home-form-sec h4 {
  color: #fff !important;
  font-weight: 400;
  font-size: 1.1rem;
  width: 80%;
  margin: 0 auto 20px auto;
}

.home-form-sec form .form-control {
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #ccc;
}

.btn-primary {
    background: #0f5c9f;
    color: #fff;
    border-color: #0f5c9f;
    border-radius: 25px;
    padding: 0.7rem 3rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.home-form-sec form .btn-primary:hover {
  background-color: #000;
}

.home-form-sec form {
  border-radius: 15px;
  padding: 2.2rem 1.25rem 1.6rem 1.25rem;
  background-color: #fff;
}

.btn-secondary {
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 24px;
    transition: 0.3s ease;
}

.btn-secondary.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: #0f5c9f;
}
/*video player css*/
.hero-video {
  position: relative;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* Buttons */
.play-btn {
  position: absolute;
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  z-index: 10;
}

/* Center play button */
/*.play-btn.center {*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  width: 90px;*/
/*  height: 90px;*/
/*  font-size: 38px;*/
/*  transform: translate(-50%, -50%);*/
/*  animation: pulse 2s infinite;*/
/*}*/

.play-btn.center {
    /* top: 50%; */
    /* left: 50%; */
    width: 70px;
    height: 70px;
    font-size: 38px;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    bottom: 30px;
    right: 120px;
    background: rgba(255, 0, 0, 0.6);
}

.play-btn.center:hover {
  background: rgba(255, 0, 0, 0.6);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Small volume button */
.play-btn.small {
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  font-size: 30px;
  opacity: 0.85;
  animation: pulse 2s infinite;
}

.play-btn.small:hover {
  opacity: 1;
  background: rgba(0,0,0,0.7);
}

/* Pulse animation */
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}


#audioPlayer2 {
  /*display: none;*/
  text-align: center;
}

#audioPlayer2 audio {
  width: 100%;
  max-width: 380px; /* adjust as per design */
  background: #ffffff;
  border-radius: 50px; /* rounded button look */
  padding: 8px 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  outline: none;
  border: 1px solid #e6e6e6;
}

/* Optional hover effect for subtle depth */
#audioPlayer2 audio:hover {
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  transform: scale(1.01);
  transition: all 0.3s ease;
}


/* Hidden / Show */
.hidden { opacity: 0; pointer-events: none; }
.show { opacity: 1; pointer-events: auto; transition: opacity 0.5s ease; }

/* Fade out center play button */
.fade-out { opacity: 0; pointer-events: none; transition: opacity 0.5s ease; }



/**/
.home-new-sec {
  padding: 10px 0;
}

.home-new-sec .card {
  height: 100%;
}

.hns-video {
  position: relative;
}

.hns-video video {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: 0;
}




/*home-new-sec*/
.home-new-sec {
  padding: 10px 0;
}

.home-new-sec .card {
  height: 100%;
}

.hns-video {
  position: relative;
}

.hns-main-video video {
    position: relative;
    box-sizing: border-box;
    width: 100%;
}

.hns-main-video {
position: relative;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.hnscard {
  /* background: #000; */
  border: 0;
}

.hns-main-video #playButton2 {
     position: absolute;
    right: 67px;
    bottom: 14px;
    margin: auto;
    width: 40px;
    height: 40px;
    font-size: 26px;
}

.hns-main-video .play-btn.small {
    bottom: 14px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    opacity: 0.85;
    animation: pulse 2s infinite;
}

.left-card {
  padding: 25px;
  text-align: center;
  background: #0f5c9f;
  color: #fff;
}

.left-card * {
color: #fff;
}

.left-card .btn {
    background-color: #fff;
    border-color: #fff;
    color: #0f5c9f;
}

.bi-mic {
   color: #0f5c9f;

}

.left-card .btn {
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 24px;
    transition: 0.3s ease;
    margin: 40px 0 0 0;
    text-transform: uppercase;
}

.home-new-sec .col-xl-4 {
  margin-bottom: 20px;
}

.left-card h2 {
    min-height: 100px;
    font-size: 1.7rem;
    text-transform: uppercase;
}

#monitor {
	background: #000; 
	position: relative;
	border-top: 3px solid #888; 
	margin: 1%;
	padding: 2% 2% 4% 2%; 
	border-radius: 10px; 
	border-bottom-left-radius: 50% 2%; 
	border-bottom-right-radius: 50% 2%; 
	transition: margin-right 1s;
}

#monitor:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 3%;
	left: 36%;
	height: .5%; 
	width: 28%;
	background: #ddd; 
	border-radius: 50%; 
	box-shadow: 0 0 3px 0 white; 
}

#monitorscreen {
	position: relative;
  background-color: #777;
	background-size: cover; 
	background-position: top center;
	height: 0; 
	padding-bottom: 56.25%; 
	position: relative;
	overflow: hidden;
}


@media all and (min-width: 960px) {
	#monitor {
		-webkit-animation: tvflicker .2s infinite alternate; 
		-moz-animation:    tvflicker .5s infinite alternate; 
		-o-animation:      tvflicker .5s infinite alternate; 
		animation:         tvflicker .5s infinite alternate; 
	}

	/* @-webkit-keyframes tvflicker {
	  0%   { box-shadow: 0 0 100px 0 rgba(200,235,255,0.4); }
	  100% { box-shadow: 0 0 95px 0 rgba(200,230,255,0.45); }
	}
	@-moz-keyframes tvflicker {
	  0%   { box-shadow: 0 0 100px 0 rgba(225,235,255,0.4); }
	  100% { box-shadow: 0 0 60px 0 rgba(200,220,255,0.6); }
	}
	@-o-keyframes tvflicker {
	  0%   { box-shadow: 0 0 100px 0 rgba(225,235,255,0.4); }
	  100% { box-shadow: 0 0 60px 0 rgba(200,220,255,0.6); }
	}
	@keyframes tvflicker {
	  0%   { box-shadow: 0 0 100px 0 rgba(225,235,255,0.4); }
	  100% { box-shadow: 0 0 60px 0 rgba(200,220,255,0.6); }
	} */

  @-webkit-keyframes tvflicker {
  0%   { box-shadow: 0 0 100px 0 rgba(64, 203, 248, 0.4); }  /* #40cbf8 */
  100% { box-shadow: 0 0 95px 0 rgba(46, 115, 140, 0.45); }  /* #2e738c */
}

@-moz-keyframes tvflicker {
  0%   { box-shadow: 0 0 100px 0 rgba(64, 203, 248, 0.4); }
  100% { box-shadow: 0 0 60px 0 rgba(46, 115, 140, 0.6); }
}

@-o-keyframes tvflicker {
  0%   { box-shadow: 0 0 100px 0 rgba(64, 203, 248, 0.4); }
  100% { box-shadow: 0 0 60px 0 rgba(46, 115, 140, 0.6); }
}

@keyframes tvflicker {
  0%   { box-shadow: 0 0 100px 0 rgba(64, 203, 248, 0.4); }
  100% { box-shadow: 0 0 60px 0 rgba(46, 115, 140, 0.6); }
}

}




    .custom-audio-player {
      display: flex;
      align-items: center;
      gap: 15px;
      background: #ffffff;
      border-radius: 50px;
      padding: 7px 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      border: 1px solid #e6e6e6;
      max-width: 500px;
      margin: 20px auto;
      font-family: Arial, sans-serif;
      color: #000;
    }

    /* Play/Pause Button */
    .play-pause-btn {
      width: 39px;
      height: 39px;
      border-radius: 50%;
      border: 3px solid #0f5c9f;
      background: transparent;
      color: #0f5c9f;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      cursor: pointer;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .play-pause-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 0 20px rgba(15,92,159,0.25);
    }

    /* Progress container */
    .progress-container {
      flex: 1;
      display: flex;
      align-items: center;
    }

    /* Seekbar base */
    .progress-container input[type="range"] {
      width: 100%;
      height: 6px;
      border-radius: 3px;
      outline: none;
      -webkit-appearance: none;
      appearance: none;
      background: linear-gradient(to right, #0f5c9f 0%, #ddd 0%);
    }

    /* Range thumb */
    .progress-container input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #0f5c9f;
      cursor: pointer;
    }

    .progress-container input[type="range"]::-moz-range-thumb {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #0f5c9f;
      cursor: pointer;
    }

    #currentTime, #duration {
      font-size: 14px;
      color: #333;
      min-width: 40px;
      text-align: center;
    }
    
    .custom-audio-player .bi {
        color: #0f5c9f !important;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }
    
.flip-box-list {
     list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 100%;
   /* max-width: 250px;*/
    text-align: left;
}

.fbl-big {
  /* max-width: 310px; */
}

.flip-box-list li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 0.6em;
  color: #fff; /* or your text color */
  font-size: 16px;
}

.flip-box-list li::before {
  content: "\f058"; /* Font Awesome icon - circle check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* solid style */
  color: #fff; /* icon color (change as needed) */
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 1.1em;
}

.flip-box-2-txt p {
    text-align: left;
}

.flip-box-2-txt p strong {
    display: block;
    text-decoration: underline;
    margin: 0 0 4px 0;
}

/*responsive css*/

@media (max-width: 1660px) {
  .business-icon {
    width: 100%;
    margin: 0 auto;
    display: block;
}
}

@media (max-width: 992px) {
  .header {
    padding-top: 0;
  }

  .top-bar .phone {
    font-size: 20px;
    font-weight: 600;
  }

  .header .logo img {
    max-height: 70px;
    margin-right: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .header .header-container {
    margin-left: 0;
    margin-right: 0;
    padding: 10px 5px 10px 15px;
}

.new-hero h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
}

.business-icon {
    width: 100%;
    margin: 40px auto 0 auto;
    display: block;
}

.looking-apparel h2 {
    font-size: 30px;
}
.looking-apparel p {
    font-size: 18px;
}

.looking-apparel h4 {
    width: 100%;
    margin: 0 auto 20px auto;
    color: #000;
    font-size: 1.05rem;
    font-weight: 500;
}

.brands-logo h2 {
    margin-bottom: 21px;
    font-size: 30px;
}

.brands-logo h4 {
    width: 100%;
    margin: 0 auto 40px auto;
    color: #000;
    font-size: 1.08rem;
    font-weight: 500;
}

.brands-logo img {
    width: 100%;
    margin: 0 auto 20px auto;
}

.boost-your-company h2 {
    font-size: 30px;
}

.boost-your-company .short-des {
    text-align: center;
    width: 100%;
    margin: 20px auto 20px auto;
    font-size: 1.05rem;
    font-weight: 500;
}

.home-form-sec {
  padding: 30px 0 !important;
}

.boost-your-company .accordion {
    width: 100%;
    margin: 0 auto 0 auto;
}

.benefits-of-cctv h2 {
    font-size: 30px;
}

.benefits-of-cctv h2.mb-5 {
    margin-bottom: 20px !important;
}

.home-form-sec h2 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 0 !important;
}

.home-form-sec h4 {
    margin: 0 auto 20px auto;
}

.home-form-sec h4 {
    margin: 0 auto 20px auto;
    width: 100%;
    font-size: 1.05rem;
}

.play-btn.center {
    /* top: 50%; */
    /* left: 50%; */
    width: 50px;
    height: 50px;
    font-size: 30px;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    bottom: 25px;
    right: 85px;
    margin: auto;
}

.play-btn.small {
    bottom: 25px;
    right: 20px;
    width: 50px;
    height: 50px;
}

.left-card h2 {
    min-height: inherit;
}

section, .section {
    padding: 30px 0;

}


@media (max-width: 991px) {
    .sm-flip-card {
    height: 370px;
}

.res-none {
    display: none;
}

.back-box {
    position: relative;
    margin: 50px auto 0 auto;
}

}

@media (max-width: 430px) {

}

@media (max-width: 390px) {

}

@media (max-width: 360px) {
  
}

@media (max-width: 320px) {
   
}