@charset "utf-8";
/* CSS Document */
/* hikvision-dvr.css  —  MOBILE-FIRST STYLES FOR THE SECTIONS ABOVE */
@font-face {
    font-family: 'OratorStdMedium';
    src: url('../../fonts/OratorStdMedium.eot');
    src: url('../../fonts/OratorStdMedium.eot') format('embedded-opentype'),
         url('../../fonts/OratorStdMedium.woff2') format('woff2'),
         url('../../fonts/OratorStdMedium.woff') format('woff'),
         url('../../fonts/OratorStdMedium.ttf') format('truetype'),
         url('../../fonts/OratorStdMedium.svg#OratorStdMedium') format('svg');
}
/* General Styling */

body 
	{
		margin: 0;
		padding: 0;
		color: #fff;
		background-color: #000;
		font-family:'Open Sans Condensed', sans-serif;
		letter-spacing:1.5px;
		font-size: 75%;
		line-height: 1.4;
		width: 100%;
	}



/* ~~ This fixed width container surrounds all other divs ~~ */

.container {
    min-height: 100vh; /* Full viewport height minus header margin */
    display: flex;
    flex-direction: column;
	background-color: #ffffff;
	margin-top: 0;
	
}

/*--------New Hero Section --------------------------------------------------------------*/

.hdd-hero-section {
  position: relative;
  width: 100%;
  height: 100%; /* Adjust based on visual preference */
  background-image: url('../Images/hard-drive/dvr-cctv-footage.webp'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* If image focus is on left, put text on right */
  padding: 3% 0%;
  color: #ffffff;
  margin-top: 100px;
}

.hdd-hero-overlay {
  width: 75%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.hdd-hero-text-panel {
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.4); /* Slight dark tint under blur */
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  color: #ffffff;
  text-align: left;
}

.hdd-hero-text-panel h1 {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1.2;
	font-family: OratorStdMedium;
	letter-spacing: -3px;
}
.hdd-hero-text-panel h2 {
  font-size: 24px;
  margin-bottom: 16px;
  line-height: 1.2;
  font-family: Candara;
  color: #07B2F5;
}

.hdd-hero-text-panel p {
  font-size: 17px;
  margin-bottom: 24px;
}

.hero-cta-buttons {
  display: flex;
  gap: 16px;
}

.hero-cta-buttons .cta-button {
  background-color: #F36D26;
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.hero-cta-buttons .cta-button:hover {
  background-color: #d45312;
}

.hero-cta-buttons .cta-button.alt {
  background-color: #ffffff;
  color: #F36D26;
}

.hero-cta-buttons .cta-button.alt:hover {
  background-color: #eee;
}
@media (max-width: 863px) {
.hdd-hero-text-panel p {
  font-size: 16px;
}
}
@media (max-width: 809px) {
.hdd-hero-text-panel h1 {
  font-size: 36px;
}

.hdd-hero-text-panel p {
  font-size: 16px;
}
}
@media (max-width: 768px) {
.hdd-hero-section {
  margin-top: 95px;
}
}
@media (max-width: 725px) {
	.hdd-hero-overlay {
  width: 80%;
}
.hdd-hero-text-panel h1 {
  font-size: 30px;
}

.hdd-hero-text-panel p {
  font-size: 16px;
}
}
@media (max-width: 550px) {
	.hdd-hero-overlay {
  width: 95%;
}
.hdd-hero-text-panel h1 {
  font-size: 30px;
}

.hdd-hero-text-panel p {
  font-size: 16px;
}
}
@media (max-width: 478px) {
.hdd-hero-section {
  margin-top: 80px;
}
.hdd-hero-overlay {
  width: 95%;
}
.hdd-hero-text-panel h1 {
  font-size: 24px;
}

.hdd-hero-text-panel p {
  font-size: 15px;
}
}


/* ---Supported Models Section ---------------------------------------------------------*/
.supported-models {
  text-align: center;
	margin: 0 auto;
	max-width: 1000px;
	padding: 50px 0px;
}

.supported-models h2 {
  font-family: 'OratorStdMedium', sans-serif;
  font-size: 40px;
  color: #333;
  margin-bottom: 0px;
  letter-spacing: -3px;
}

.supported-models h2 .accent-blue {
  color: #09c;
}
.supported-models h3 {
  font-family: candara;
  font-size: 24px;
  color: #999;
  margin-bottom: 0px;
}

.section-sub {
  font-size: 1.4rem;
  color: #999;
  margin-bottom: 20px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
}

.model-grid li {
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 8px;
  padding: 15px;
}

.model-grid h4 {
  font-family: 'OratorStdMedium', sans-serif;
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  letter-spacing: -2px;
}

.model-grid p {
  font-size: 16px;
  color: #999;
  line-height: 1.5;
  font-family: candara;
}

.models-note {
  font-size: 1rem;
  color: #999;
  margin-top: 20px;
}



/*--- Whats wrong with my dvr section------------------------------------------------------*/

.failure-section {
    background: #333;
	display: flex;
	justify-content: center;
	position: relative;
	flex-wrap: wrap;    
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 60px 0px 60px 0px;
}

.failure-section h2 {
    font-size: 40px;
    font-weight: bold;
    font-family: 'OratorStdMedium', sans-serif;
	text-align: center;
	width: 95%;
    color: #fff; /* Blue */
    margin: 0px auto;
	padding: 0px 20px 0px 20px;
	letter-spacing: -3px;

}
.failure-section h2 span{
  color: #09c; /* Blue */
  
}
.failure-section h3 {
  font-size: 24px;
  font-weight: bold;
  font-family: Candara;
  color: #999999; /* gray */
  text-align: center;
  margin: 0px auto;
  with: 95%;
  padding: 0px 20px 30px 20px;
}
.container-inside {
	background: #333;
	max-width: 1000px;
}
.failure-section p {
  font-size: 24px;
  font-family: candara;
  color: #333; /* Dark Grey */
	width: 80%;
	text-align: center;
	margin:auto;
	margin-top: 20px;
	margin-bottom: 0px;
	
	
}

/* Container for two columns */
.symptoms-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
	width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Individual columns */
.symptoms-column {
  width: 48%; /* Roughly half width */
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Accordion items in columns */
.accordion-item {
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
  width: 100%;
}
.accordion-header {
  background: #fff; /* Light Grey background */
  padding: 15px;
  font-size: 22px; /* Fixed size */
  font-family: OratorStdMedium;
  color: #09c; /* Blue */
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s;
  box-sizing: border-box; /* Ensure padding doesn't affect width */
  letter-spacing: -3px;
 
}

.accordion-header:hover {
  background: #F36D26; /* Orange on hover */
  color: #ffffff; /* White text on hover */
}

.accordion-content {
  display: none;
  padding-top: 5px;
	padding-left:20px;
	padding-right:20px;
	padding-bottom:20px;
  background: #fff; /* White background */
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Drop shadow */
}


.accordion-content.active {
  display: block;
}
.failure-details p {
  font-family: candara;
  color: #333; /* Dark Grey */
  font-size: 18px; /* Fixed size */
  margin-bottom: 15px; /* Line spacing */
  line-height: 1.5;
	text-align: left;
	font-weight: normal;
}

.detail-label {
  font-weight: bold;
  color: #666666; /* Medium Grey */
  margin-right: 5px;
}
.failure-details p span {
	color: #F36D26;
	font-style:normal;
}
@media (max-width: 1200px) {
	.symptoms-columns {
  max-width: 95%;
}
	.failure-section h3 {
  font-size: 22px;
margin-right: 20px;
		margin-left: 20px;
}
}
@media (max-width: 865px) {
.failure-section h2 {
  font-size: 36px;
}
}
@media (max-width: 780px) {
.failure-section h2 {
  font-size: 32px;
}
.failure-section h3 {
  font-size: 20px;
}
}
/* Responsive Adjustments for Failure Section */
@media (max-width: 768px) {
  .failure-section {
    padding: 30px 0;
  }
  .failure-section h2 {
    font-size: 30px; /* Only h2 decreases */
  }
 .failure-section h3 {
  font-size: 18px;
}
  .failure-section p {
    font-size: 16px; /* Unchanged */
  }

  .symptoms-columns {
    flex-direction: column; /* Stack columns vertically */
    gap: 10px;
  }
  .symptoms-column {
    width: 100%; /* Full width when stacked */
  }
  .accordion-header {
    padding: 10px;
  }
  .failure-details p {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .failure-section h2 {
    font-size: 24px; /* Only h2 decreases */
  }
 .failure-section h3 {
  font-size: 16px;
}
  .failure-section {
    padding: 20px 0;
  }

  .failure-section p {
    font-size: 16px; /* Unchanged */
  }
  .accordion-header {
    padding: 8px;
  }
  .failure-details p {
    margin-bottom: 8px;
  }
}

/*----- Deliverables Section ------------------------------------------------------------------*/
.deliverables {
  text-align: center;
  background-color: #fff;
	max-width: 1000px;
	padding: 50px 0px;
	margin: 0 auto;

}

.deliverables h2 {
  font-family: 'OratorStdMedium', sans-serif;
  font-size: 40px;
  color: #333;
  margin-bottom: 30px;
  letter-spacing: -3px;
	width: 95%;
}

.deliverables h2 .accent-blue {
  color: #09c;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
	
}

.deliverables-grid li {
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 8px;
  padding: 15px;
	
}

.deliverables-grid h4 {
  font-family: 'OratorStdMedium', sans-serif;
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
	
}

.deliverables-grid p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
	
}

/*--------5 easy steps flip card section ------------------------------------------------------*/


.wrapper-process-outside {
  width: 100%;
  height: auto;
  background: #333;
  position: relative;
  bottom: 0px;
  display:flex;
  flex-wrap: wrap;
  padding: 60px 0px 60px 0px;
  overflow-x: clip; /* Safe alternative to hidden */
}
.process-title {
  width: 100%;
  text-align: center;
}

.process-title h2 {
  font-size: 40px;
  color: #fff;
  text-align: center;
  font-weight: normal;
  width: 95%;
  font-family: OratorStdMedium;
  padding: 0px 0px 0px 0px;
  margin: 0 auto;
  font-weight: bolder;
  letter-spacing: -3px;
}

.process-title h2 span {
  color: #09C;
  font-weight: bold;
}
.process-title h3 {
  font-size: 24px;
  width: 95%;
  color: #999;
  text-align: center;
  font-weight: bold;
  font-family: Candara;
  margin: 0 auto;
  padding: 0px 0px 40px 0px;
}
.wrapper-process-inside {
  width: 100%;
  height: auto;
  margin: auto;
  padding: 20px 0; /* Minimal padding - Trust-like */
}

.process-cards {
  display: flex;
  justify-content: center;
  gap: 30px; /* Base gap - Trust’s starting point */
  position: relative; /* Contain stacking context */
  flex-wrap: wrap;
}
.process-card {
  position: relative;
  width: 175px;
  height: 175px;
  perspective: 1000px;
	padding: 0px;
	margin: 0px;
}

.process-card-front,
.process-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  backface-visibility: hidden;
  transition: transform 0.6s ease, width 0.6s ease, height 0.6s ease, left 0.6s ease, top 0.6s ease;
  box-sizing: border-box;
}

.process-card-front {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(0deg);
  z-index: 2;
  overflow: visible; /* Prevent image clipping */
  flex-direction: column;
  transform: translateY(-4px);
	background: #eee;
	 box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;


}

.process-card-front img {
  width: 100px;
  height: 100px;
	margin: 0px auto;
  object-fit: contain; /* Ensure full image shows */
	filter: 
   drop-shadow(2px 2px 4px rgba(255, 255, 255, 0.4))
    drop-shadow(2px 2px 8px rgba(255, 255, 255, 0.2));
}
.process-card-front h4 {
  color: #333;
  font-size: 16px;
  font-weight: normal;
  margin: 20px 0px 0px 0px;
  font-family: Candara;
}


.process-card-back {
  transform: rotateY(180deg);
  z-index: 1;
  background: #fff;
  color: #333;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  overflow: hidden; /* Keep back text contained */
  box-sizing: border-box;

}

/* Fix Hiding Issue */
.process-card:hover {
  z-index: 100; /* Lift entire card above others - Trust’s key */
}

.process-card:hover .process-card-front {
	transform: rotateY(-180deg);
  z-index: 1; /* Front drops below back - Trust’s key */
}

.process-card:hover .process-card-back {
  transform: rotateY(0deg);
  z-index: 10;
  width: 350px;
  height: auto;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  position: absolute;
	max-width: 350px;
}

/* Flip Directions */
.process-card:nth-child(1):hover .process-card-back,
.process-card:nth-child(2):hover .process-card-back,
.process-card:nth-child(3):hover .process-card-back {
  transform: rotateY(0deg);
  left: 0;  top: -70px;/* Left/middle stay put */
}

.process-card:nth-child(4):hover .process-card-back,
.process-card:nth-child(5):hover .process-card-back {
  transform: rotateY(0deg);
  left: -150px; top: -70px;/* Right cards shift left - Trust’s Card 5 */
}

/* Back Content Styling */
.process-card-back img {
  width: 0px;
  height: 0px;
  margin-bottom: 0px;
}

.process-card-back h4 {
  color: #09c;
  font-size: 20px;
  font-weight: bold;
  font-family: OratorStdMedium;
  margin: 0 0 10px;
}

.process-card-back p {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
  margin: 0;
  font-family: Candara;
}

.process-card-back span {
  color: #F36D26;
}

/* Responsive Adjustments */




@media (max-width: 1069px) {
  .process-cards { gap: 15px; } /* Trust’s smoother scale */
  .process-card:nth-child(5):hover .process-card-back { left: -200px; }
  .process-title h2 {
      font-size: 30px;
}
 .process-title h3 {
     font-size: 22px; 
}
}
@media (max-width: 968px) {
	  .process-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 20px; /* Keep original padding */
    flex-wrap: wrap; /* Cards move to next row when they hit the wall */
    max-width: 100%; /* Ensure full container width */
  }
	.process-wrapper {
  max-width: 650px;
}
	  .process-card:nth-child(1):hover .process-card-back { left: 0; }
  .process-card:nth-child(2):hover .process-card-back { left: -100px; }
  .process-card:nth-child(3):hover .process-card-back { left: -150px; }
  .process-card:nth-child(4):hover .process-card-back { left: -60px; }
  .process-card:nth-child(5):hover .process-card-back { left: -130px; }
}


@media (max-width: 768px) {
  .process-card {
    -webkit-user-select: none; /* Prevent text selection */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .process-card:hover .process-card-front,
  .process-card:hover .process-card-back {
    transform: none; /* Disable hover on mobile */
  }
  .process-card.flipped {
    z-index: 100; /* Lift entire flipped card above others */
  }
  .process-card.flipped .process-card-front {
    z-index: 1; /* Front drops below back */
    transform: rotateY(-180deg);
  }
  .process-card.flipped .process-card-back {
    z-index: 10; /* Back above front */
    transform: rotateY(0deg);
    width: 350px; /* Match hover base size */
    height: auto; /* Allow content to expand */
   position: absolute; /* Match hover positioning */
  }
 .process-title h2 {
      font-size: 30px;
}
 .process-title h3 {
     font-size: 20px; 
}
}

@media (max-width: 650px) {
	 .process-title h2 {
      font-size: 26px;
}
 .process-title h3 {
     font-size: 18px; 
}
  .process-card.flipped:nth-child(1) .process-card-back { left:  50px; }
  .process-card.flipped:nth-child(2) .process-card-back { left: -100px; }
  .process-card.flipped:nth-child(3) .process-card-back { left: -180px; }
  .process-card.flipped:nth-child(4) .process-card-back { left: -80px; }
  .process-card.flipped:nth-child(5) .process-card-back { left: -90px; }
}
@media (max-width: 604px) {
  .process-card.flipped:nth-child(1) .process-card-back { left:    0px; }
  .process-card.flipped:nth-child(2) .process-card-back { left: -170px; }
  .process-card.flipped:nth-child(3) .process-card-back { left:    0px; }
  .process-card.flipped:nth-child(4) .process-card-back { left: -170px; }
  .process-card.flipped:nth-child(5) .process-card-back { left:  -85px; }
 
}
@media (max-width: 500px) {
	 .process-title h2 {
      font-size: 24px;
}
 .process-title h3 {
     font-size: 18px; 
}
}
@media (max-width: 409px) {
		 .process-title h2 {
      font-size: 22px;
}
 .process-title h3 {
     font-size: 16px; 
}
  .process-card.flipped:nth-child(1) .process-card-back { left: -85px; }
  .process-card.flipped:nth-child(2) .process-card-back { left: -85px; }
  .process-card.flipped:nth-child(3) .process-card-back { left: -85px; }
  .process-card.flipped:nth-child(4) .process-card-back { left: -85px; }
  .process-card.flipped:nth-child(5) .process-card-back { left: -85px; }
  .process-title h2 {
        font-size: 22px;
		
}
  .process-title h3 {
        font-size: 18px;
		font-weight: normal;
}
}
@media (max-width: 380px) {
  .process-card.flipped:nth-child(1) .process-card-back { left: -65px; }
  .process-card.flipped:nth-child(2) .process-card-back { left: -65px; }
  .process-card.flipped:nth-child(3) .process-card-back { left: -65px; }
  .process-card.flipped:nth-child(4) .process-card-back { left: -65px; }
  .process-card.flipped:nth-child(5) .process-card-back { left: -65px; }
	 .process-card.flipped .process-card-back {
    width: 300px; /* Match hover base size */
  }
}


/* ------------------FAQ --------------------------------------------------------------------*/

/* === FAQ (Hikvision brand FAQ) — FULL REPLACE === */

.brand-faq-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  text-align: center;
  padding: 50px 0;
	background-color: #fff;
}

.brand-faq-container h2 {
  font-size: 40px;
  margin: 0 0 6px;
  color: #333;
  width: 95%;
}

.brand-faq-container h2 span { color: #09c; }

.brand-faq-inside-container {
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}

/* Card */
.faq-item {
  border: 1px solid #e9eef4;
  border-radius: 12px;                  /* removed CSS vars */
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  overflow: hidden;
}

/* Question button + indicator */
.faq-q {
  width: 100%;
  text-align: left;
  background: #fff;
  color: #333;
  padding: 14px 16px;
  font-size: 20px;
  border: none;
  cursor: pointer;
  position: relative;
  padding-right: 38px;                  /* room for +/– */
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: #09c;
  transition: transform .2s ease;

}
.faq-item.open .faq-q::after {
  content: "–";
}

/* Answer panel (animated open/close) */
.faq-a {
  max-height: 0;                        /* closed */
  overflow: hidden;
  transition: max-height .25s ease, padding .25s ease;
  border-top: 1px solid #eef2f6;
  padding: 0 16px;                      /* collapsed padding */
  color: #999;
  text-align: left;
  font-family: candara;
	font-size: 16px;
}
.faq-item.open .faq-a {
  max-height: 600px;                    /* big enough for most answers */
  padding: 12px 16px 16px;              /* restored padding when open */
}

/* Optional: at wider screens, you can do two columns
@media (min-width: 900px) {
  .faq-list { grid-template-columns: 1fr 1fr; }
}
*/


/* ---------------CTA Section ------------------------------------------------------------------------*/
.simple-cta-container {
	display: flex;
	flex-wrap: wrap;
  text-align: center;
	justify-content: center;
  background-color: #eee;
  padding: 50px 0;
	margin: 0 auto;
	
	
}

.simple-cta-container h2 {
  font-family: 'OratorStdMedium', sans-serif;
  font-size: 40px;
  color: #333;
  margin-bottom: 10px;
  letter-spacing: -3px;
	margin-top: 0px;
}

.simple-cta-container h2 .accent-blue {
  color: #09c;
}

.simple-cta-container p {
  font-size: 16px;
  color: #999;
  margin-bottom: 20px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.cta-actions .cta-btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
}

.cta-actions .cta-btn.primary {
  background-color: #09c;
  color: #fff;
}

.cta-actions .cta-btn.primary:hover {
  background-color: #f36d26;
}

.cta-actions .cta-btn.secondary {
  background-color: #f36d26;
  color: #fff;
}

.cta-actions .cta-btn.secondary:hover {
  background-color: #09c;
}

/* Responsive Design */
@media (max-width: 768px) {
  .brand-hero h1 { font-size: 2.2rem; }
  .brand-hero h2 { font-size: 1.4rem; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .symptoms-columns { flex-direction: column; }
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps li { flex-direction: column; align-items: flex-start; }
  .process-steps li::before { margin-bottom: 10px; }
}

@media (max-width: 480px) {
  section { padding: 20px 10px; }
  .brand-hero h1 { font-size: 1.8rem; }
  .brand-hero h2 { font-size: 1.2rem; }
  .supported-models h2, .failure-section h2, .deliverables h2, .process h2, .brand-faq h2, .simple-cta h2 { font-size: 1.8rem; }
  .section-sub, .simple-cta p { font-size: 1rem; }
  .model-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }
}