@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');
    font-display: swap;
}


body 
	{
		margin: 0;
		padding: 0;
		color: #000;
		background-color: #FFFFFF;
		font-family:'Open Sans Condensed', sans-serif;
		letter-spacing:1.5px;
		font-size: 75%;
		line-height: 1.4;
		

	}



/* ~~ This fixed width container surrounds all other divs ~~ */

.container 
	{
		width: 100%;
		background-color: #FFFFFF;
		float: none;
		height: auto;
		margin-top: 120px;
		
	
	}



/* ~~ The header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo. ~~ */

/* ------- Start of Main Menu ------------------------------------------------------------------------*/

/* Fixed Header */
.fixed-header {
  position: fixed;
  top: 0;
	left: 0;
  width: 100%;
	z-index: 99999;
	background-color: #09c;
	
}

/* Top Menu */
.top-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  margin: 0 auto;
  background: #09c;
  padding: 10px 0;
  height: 20px;
	z-index: 99999;
	
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 5px;
	

}
.phone-number a{
 
	font-weight: 900;
	text-decoration: none;
}
.phone-number a:hover {
	color: #ddd;
}
.phone-number span
{
	padding-right: 5px;
}

.phone-icon {
  width: 24px;
  height: 24px;
	margin-right: 10px;
}
.cta-call-for-help {
	color: #333;
	font-size: 24px;
}
.phone-link {
  color: #fff; /* Blue option */
  font-size: 24px;
  text-decoration: none;
  font-family: 'OratorStdMedium', sans-serif;
	
}




.quote-button .btn-quote {
  background: #F36D26; /* Orange */
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  font-family: candara;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 3px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.quote-button .btn-quote:hover {
  background: #F88C4A;
}
/* Main Menu */
.main-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #333333; /* Dark Grey */
  padding: 0;
	position: fixed;
	z-index: 99999;
	
 
}

.logo {
  margin-right: 20px;
}
.logo img
{
	height: 75px;
	Width: 100px;
	margin: 3px;
}

.logo-full {
  width: 275px;
  height: 182px;
  display: block;
}

.logo-small {
  width: 50px;
  height: 50px;
  display: none;
}

.nav-menu {
  position: relative;
}

.menu-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu-list li {
  position: relative;
}

.menu-list li a {
  color: #fff;
  font-size: 18px;
  font-family: candara;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
	border-radius: 8px;
}

.menu-list li:hover > a {
  background: #666666; /* Medium Grey hover */
}

.dropdown {
  display: none;
  position: absolute;
  background: #333333;
  list-style: none;
  padding: 0;
  min-width: 275px;
  top: 100%;
  left: 0;
	z-index: 1000;
	border-radius: 8px;
	 box-shadow: 0 0 8px rgba(255,255,255,0.5),
              0 0 16px rgba(255,255,255,0.5);
}

.menu-list li:hover .dropdown {
  display: block;
}

.dropdown li a {
  font-size: 16px;
  padding: 8px 15px;
}

.dropdown li:hover a {
  background: #999999; /* Light Grey hover */
}

.hamburger {
  display: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
}

/* Shrink on Scroll */
.shrink .top-menu {
  height: 40px;
  padding: 2px 0;
}

.shrink .main-menu {
  height: 40px;
}

.shrink .logo-full {
  display: none;
	
}

.shrink .logo-small {
  display: block;
	width: auto;
	height: 35px;
}
.shrink .menu-list li:hover > a {
  padding: 5px 10px 5px 10px; /* Medium Grey hover */
}
.shrink .dropdown {
  display: none;

  top: 35px;
 
}
.orange-bar
{
	width:100%;
	position: absolute;
	background-color: #F36D26;
	height: 5px;
	bottom: 0;
	left: 0;
	
}
@media (max-width: 1024px) {
  
	/* --- Top menu and Main Menu 1024 PX ------------------------------------------------------ */
	
	.top-menu {
    width: 80%;
  }
  .main-menu {
    justify-content: space-between;
    padding: 0 15px;
  }
  .hamburger {
    display: block;
	  margin-right:15px;
  }
  .menu-list {
    display: none;
    position: fixed;
    top: 115px; /* Top (40px) + Main (75px) */
    left: 0;
    width: 100%;
    background: #333333;
    flex-direction: column;
    z-index: 9998;
  }
  .menu-list.active {
    display: flex;
  }
  .dropdown {
    position: static;
    width: 100%;
    min-width: 0; /* Remove fixed min-width */
    box-shadow: none;
  }
  .menu-list li a {
    padding: 12px 20px;
    text-align: left;
  }
  .shrink .menu-list {
    top: 70px; /* Top (30px) + Main (40px) */
  }
}
@media (max-width: 800px) {
	  .phone-number a {
    font-size: 20px;
  }
	 .phone-icon {
    width: 20px;
    height: 20px;
  }
	.cta-call-for-help {
		font-size: 20px;
	}
	 .quote-button .btn-quote {
   
    font-size: 16px;
    
  }
}
@media (max-width: 768px) {
 
	/* --- Top menu and Main Menu 768 PX ------------------------------------------------------ */
	.top-menu {
    width: 90%;
    padding: 8px 10px;
  }
  .phone-number {
    flex-shrink: 1; /* Allow shrinking */
    max-width: 65%; /* Cap width */
  }
	.cta-call-for-help {
		font-size: 16px;
	}
  .phone-number a {
    font-size: 16px;
  }
  .phone-icon {
    width: 18px;
    height: 18px;
  }
  .quote-button {
    flex-shrink: 1; /* Allow shrinking */
    max-width: 50%; /* Cap width */
  }
  .quote-button .btn-quote {
    padding: 4px 10px;
    font-size: 14px;
    letter-spacing: 1px;
  }
  .main-menu {
    height: 60px;
  }
  .logo img {
    height: 50px;
    width: auto; /* Let width scale with height */
    max-width: 100%; /* Prevent overflow */
  }
  .shrink .top-menu {
    height: 25px;
    padding: 4px 10px;
  }
  .shrink .main-menu {
    height: 35px;
  }
  .shrink .logo-small {
    height: 30px;
  }
  .hamburger {
    font-size: 24px;
    padding: 8px;
  }
  .menu-list {
    top: 100px;
  }
  .shrink .menu-list {
    top: 60px;
  }
}
@media (max-width: 503px) {
	.cta-call-for-help {
		display: none;
	}
}
/* --- Top menu and Main Menu 480 PX ------------------------------------------------------ */
@media (max-width: 480px) {

	.fixed-header {
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  .top-menu {
    width: 100%;
    padding: 5px 10px;
    flex-wrap: wrap; /* Allow wrapping if needed */
  }
  .phone-number {
    max-width: 60%; /* Slightly more room */
  }
  .phone-number a {
    font-size: 16px;
  }
  .phone-number span {
    display: none; /* Hide "Call for HELP:" */
  }
  .phone-icon {
    width: 18px;
    height: 18px;
  }
  .quote-button {
    max-width: 40%; /* Adjust to fit */
	  margin-right: 15px;
  }
  .quote-button .btn-quote {
    padding: 2px 8px;
    font-size: 16px;
  }
  .main-menu {
    height: 50px;
    padding: 0 10px;
	  margin-bottom:-40px;
  }
	
  .logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
  }
  .hamburger {
    font-size: 20px;
    padding: 5px;
	  margin-right:15px;
  }
  .menu-list {
    top: 90px;
  }
  .shrink .menu-list {
    top: 50px;
  }
  .menu-list li a {
    font-size: 16px;
    padding: 10px 15px;
  }
  .dropdown li a {
    font-size: 16px;
    padding: 8px 15px;
  }
}
@media (max-width: 400px) {
  .phone-number {
    max-width: 50%; /* Slightly more room */
  }
  .quote-button {
    max-width: 50%; /* Adjust to fit */
  }

}
@media (max-width: 340px) {
	.phone-icon
	{
		display:none;
	}
}
/* --- Top menu and Main Menu 320 PX ------------------------------------------------------ */
@media (max-width: 320px) {

	.top-menu {
    padding: 3px 5px;
  }
  .phone-number {
    max-width: 55%;
  }
  .phone-number a {
    font-size: 14px;
  }

  .quote-button {
    max-width: 45%;
  }
  .quote-button .btn-quote {
    padding: 2px 6px;
    font-size: 10px;
  }
  .main-menu {
    height: 50px;
  }
  .logo img {
    height: 30px;
    width: auto;
    max-width: 100%;
  }
  
  .menu-list {
    top: 80px;
  }
  .shrink .menu-list {
    top: 43px;
  }
	}
	
/* ---------- Content and Container Sections ---------------------------------------------------------*/

.content 

	{
	width: 100%;
	color: #000;
	text-align: left;
	margin-top: 0;
	padding: 0;
	float: none;
	clear: both;
	
	}

.content ul, .content ol 
	{ 
		padding: 0 15px 15px 40px;
	}
.content-section
	{
		width: 100%;
		height: auto;
		float: left;
	}

.content-section p
	{
		line-height: 25px;
		font-size: 14px;
	}

.content-section h3
	{
		font-size: 18px;
		color: #666;
	}

/* ---------Hero Section -H1 Header--------------------------------------------------------*/


.location-hero-section {
  position: relative;
  width: 100%;
  height: 100%; /* Adjust based on visual preference */
  background-image: url('../Images/hard-drive/hard-drive-clean-room-work.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;
}

.location-hero-overlay {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  
}

.location-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: 700px;
  color: #ffffff;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.location-hero-text-panel h1 {
    font-size: 36px;
    margin-bottom: 16px;
	margin-top: 0px;
    line-height: 1.2;
	font-family: OratorStdMedium;
	letter-spacing: -3px;
	color: #fff;
}
.location-hero-text-panel h1 span{
    color: #fff;
}
.location-hero-text-panel h2 {
  font-size: 24px;
  margin-bottom: 16px;
  line-height: 1.2;
  font-family: Candara;
  color: #07B2F5;
}

.location-hero-text-panel p {
  font-size: 17px;
  margin-bottom: 24px;
}

.hero-cta-buttons {
  display: flex;
  gap: 16px;
}

.location-hero-cta-buttons .location-cta-button {
  background-color: #F36D26;
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.location-hero-cta-buttons .location-cta-button:hover {
  background-color: #d45312;
}

.location-hero-cta-buttons .location-cta-button.alt {
  background-color: #ffffff;
  color: #F36D26;
}

.location-hero-cta-buttons .location-cta-button.alt:hover {
  background-color: #eee;
}
@media (max-width: 863px) {
.location-hero-text-panel p {
  font-size: 16px;
}
}
@media (max-width: 809px) {
.location-hero-text-panel h1 {
  font-size: 36px;
}
.location-hero-text-panel h2 {
  font-size: 22px;
}
.location-hero-text-panel p {
  font-size: 16px;
}
}
@media (max-width: 768px) {
.location-hero-section {
  margin-top: 95px;
}
}
@media (max-width: 725px) {
	.location-hero-overlay {
  width: 80%;
}
.location-hero-text-panel h1 {
  font-size: 30px;
}
.location-hero-text-panel h2 {
  font-size: 20px;
}
.location-hero-text-panel p {
  font-size: 16px;
}
}
@media (max-width: 550px) {
	.location-hero-overlay {
  width: 95%;
}
.location-hero-text-panel h1 {
  font-size: 30px;
}
.location-hero-text-panel h2 {
  font-size: 18px;
}
.location-hero-text-panel p {
  font-size: 16px;
}
}
@media (max-width: 478px) {
.location-hero-section {
  margin-top: 80px;
}
.location-hero-overlay {
  width: 95%;
}
.location-hero-text-panel h1 {
  font-size: 26px;
}
.location-hero-text-panel h2 {
  font-size: 16px;
}
.location-hero-text-panel p {
  font-size: 15px;
}
}

/* ---------- Nearest Location Modal ----------------------------------------------- */
.nearest-modal {
  position: fixed;
  inset: 0;
  display: none;              /* toggled to flex in JS */
  align-items: center;
  justify-content: center;
  z-index: 10000;             /* above flip cards/headers */
  font-family: candara, Arial, sans-serif;
}
.nearest-modal.is-open { display: flex; }

.nearest-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
}

.nearest-dialog {
  position: relative;
  width: min(560px, 92vw);
  max-height: 88vh;
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  padding: 22px 22px 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  z-index: 1;
}

.nearest-close {
  position: absolute; top: 8px; right: 10px;
  width: 36px; height: 36px; line-height: 36px;
  border: none; border-radius: 50%;
  background: #f3f5f7; color: #333;
  font-size: 20px; cursor: pointer;
}
.nearest-close:hover { background: #e7eaee; }

.nearest-dialog h3 {
  margin: 4px 0 4px;
  font-family: OratorStdMedium, candara, Arial, sans-serif;
  font-size: 22px; color: #333;
}
.nearest-sub { margin: 0 0 14px; color: #666; font-size: 15px; }

.nearest-search {
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 12px;
}
.nearest-search input {
  flex: 1;
  height: 42px;
  border: 1px solid #d8dee6;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 16px;
}
.nearest-search input:focus {
  outline: none;
  border-color: #09c;
  box-shadow: 0 0 0 3px rgba(0,153,204,0.15);
}

/* Reuse your existing .cta-button; add tiny variants */
.cta-button.small { padding: 8px 14px; font-size: 14px; }
.cta-button.ghost {
  background: transparent; border: 1px solid #c9d3de; color: #334155;
}
.cta-button.ghost:hover { background: #f3f5f7; }

/* Result card */
.nearest-results { margin-top: 8px; }
.nearest-hint { color: #7a8693; font-size: 14px; }

.nearest-card {
  border: 1px solid #e6ecf2;
  border-radius: 10px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.nearest-card + .nearest-card { margin-top: 10px; }

.nearest-card h4 {
  margin: 0 0 6px;
  font-size: 18px; color: #0f172a;
  font-family: OratorStdMedium, candara, Arial, sans-serif;
}
.nearest-card p {
  margin: 0 0 10px; color: #475569; font-size: 15px;
}

.nearest-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}

/* Footnote */
.nearest-footnote { margin-top: 12px; color: #7a8693; }
.nearest-footnote small { font-size: 12px; }
.nearest-footnote {
  margin-top: 8px;
  font-size: 0.85em;
  color: #666;
}
.nearest-footnote small {
  display: block;
  line-height: 1.3;
}

/* Mobile niceties */
@media (max-width: 480px) {
  .nearest-dialog { padding: 18px 16px; }
  .nearest-search { gap: 8px; }
}

/*--------Sticky Page Menu for RAID Page ------------------------------------------------------------------*/


.raid-page-menu {
  position: sticky;
  top: 80px; /* Matches your header height */
  z-index: 1000;
  background-color: #F36D26;
  padding: 6px 0;
  font-family: OratorStdMedium;
  letter-spacing: -2px;
  font-size: 16px; /* Your preference */
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu-wrapper {
  display: flex;
  align-items: center;
  max-width: 70%; /* Your change for desktop */
  margin: 0 auto;
}

.menu-scroll {
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none; /* Hide scrollbar in IE/Edge */
  scrollbar-width: none; /* Hide scrollbar in Firefox */
}
.menu-scroll::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Chrome/Safari */
}

.raid-page-menu ul {
  margin: 0;
  padding: 0 30px; /* Prevent arrow overlap */
  list-style: none;
  display: flex;
  gap: 12px; /* Reduced to fit */
  flex-wrap: nowrap;
  justify-content: flex-start; /* Left-aligned to show Speed, Benefits */
}

.raid-page-menu a {
  color: #ffffff;
  text-decoration: none;
  padding: 4px 8px;
  transition: opacity 0.2s ease;
}

.raid-page-menu a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.scroll-arrow {
  background: #ffffff;
  color: #F36D26;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: background 0.2s ease;
  flex: 0 0 auto;
  margin: 0 15px; /* Separation from links */
}

.scroll-arrow:hover {
  background: #e0e0e0;
}

.scroll-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---- Mobile drawer mode (≤768px) ---- */
@media (max-width: 768px) {
  /* Turn the existing bar into a slide-in drawer */
  .raid-page-menu {
    position: fixed;        /* override sticky */
    top: 0;
    right: 0;
    bottom: 0;
    width: 86vw;
    max-width: 420px;
    background-color: #F36D26;           /* keep your orange */
    color: #fff;
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 1002;          /* > your 1000 header/menu */
    padding: 16px 14px;
    box-shadow: -18px 0 40px rgba(0,0,0,.28);
    overflow-y: auto;
  }
  .raid-page-menu.is-open { transform: translateX(0); }

  /* hide the left/right arrows inside the drawer */
  .raid-page-menu .scroll-arrow { display: none !important; }

  /* vertical list inside the drawer */
  .raid-page-menu .menu-wrapper {
    display: block;
    max-width: 100%;
    margin: 0;
  }
  .raid-page-menu .menu-scroll {
    overflow: visible;
    white-space: normal;
  }
  .raid-page-menu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .raid-page-menu li { margin: 0; }

  .raid-page-menu a {
    display: block;
    color: #fff;                                 /* keep white links */
    text-decoration: none;
    padding: 12px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.28);    /* subtle white border */
    background: rgba(255,255,255,0.06);          /* faint panel feel */
  }
  .raid-page-menu a:hover {
    opacity: 1;
    text-decoration: none;
    background: rgba(255,255,255,0.14);
  }

  /* Floating hamburger button */
  .raid-menu-toggle {
    position: fixed;
    top: 88px;                 /* sits under your 80/65px header; tweak if needed */
    right: 12px;
    z-index: 1003;             /* above drawer */
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 10px;
    background: #ffffff;
    color: #F36D26;
    box-shadow: 0 8px 18px rgba(0,0,0,.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .raid-menu-toggle:before {
    content: "☰";
    font-size: 22px;
    line-height: 1;
  }

  /* Dim background overlay */
  .raid-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1001;             /* just under drawer */
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }
  .raid-menu-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  /* Stop body scroll when drawer open */
  body.raid-menu-no-scroll { overflow: hidden; }
}

/* ---------Why Us Section--------------------------------------------------------*/
.why-us-section {
  display: flex;
	justify-content: center;
	flex-wrap: wrap;
  width: 100%;
  background: #fff;
  position: relative;
  padding: 50px 0px;
  overflow: hidden;
  margin-top: 0px;
}
/* H1 Styling */
.why-us-section h2 {
  color: #333;
  font-size: 40px;
  font-weight: bold;
  font-family: 'OratorStdMedium', sans-serif;
  text-align: center;
  margin: 0 auto 0px;
  width: 95%;
  line-height: 1.2;
  letter-spacing: -3px;
}
.why-us-section h2 span {
  color: #09c;
}
.why-us-section h3 {
  color: #999;
  font-size: 24px;
  font-weight: bold;
  font-family: candara;
  margin: 0 auto;
	width: 80%;
  padding: 0px 0px 40px 0px;
  text-align: center;
}
/* Two-Column Layout */
.why-us-content {
  width: 80%;
  background: #fff;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 20px;
  border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
/* Vertically center the video */
.why-us-right-section {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Video Container */
.why-us-video-container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
.why-us-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.video-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}
.why-us-video-wrapper .video-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.3s;
  position: relative;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #F36D26;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.play-button:hover {
  background: #D55E21;
}
.play-icon {
  width: 80px;
  height: 80px;
}
/* Left section for text (swapped from original) */
.why-us-left-section {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-us-left-section h3 {
  color: #333;
  font-size: 28px;
  font-weight: bold;
  font-family: 'OratorStdMedium', sans-serif;
  margin: 0 0 10px;
  line-height: 1.1;
}
.why-us-left-section h2 span {
  color: #09c;
}
.why-us-left-section p {
  font-size: 16px;
  color: #666;
  font-family: candara;
  margin: 10px 0;
  line-height: 1.2;
}
.why-us-left-section h4 {
  font-size: 22px;
  color: #F36D26;
  font-family: candara;
  margin: 16px 0 5px;
  line-height: 1.1;
}
.why-us-left-section ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0;
}
.why-us-left-section li {
  font-size: 16px;
  color: #333;
  font-family: candara;
  margin: 5px 0;
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}
.why-us-left-section li span.checkmark {
  color: #09c;
  position: absolute;
  left: 0;
}
.why-us-left-section li span:not(.checkmark) {
  color: #F36D26;
  font-weight: bold;
}
.why-us-bottom-section {
    width: 100%;
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
}

.essentials-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.essentials-item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1 1 auto;
}

.checkmark-small {
    color: #F36D26; /* Match your orange theme */
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.essentials-item strong {
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Tablet responsive - 2-3 items per row */
@media (max-width: 1024px) and (min-width: 769px) {
    .essentials-inline {
        justify-content: flex-start;
    }
    
    .essentials-item {
        flex: 0 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}
</style>
/* Media Queries (adapted from original) */
@media (max-width: 1053px) {
.why-us-section h1 {
  font-size: 36px;
 
}
	 .why-us-content {
    flex-direction: column-reverse; /* This stacks RIGHT section on top */
  }
  .why-us-right-section {
    width: 100%;
  }
	  .why-us-left-section {
    width: 100%;
  }
  .why-us-left-section h3 {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: auto;
  }
}
@media (max-width: 865px) {
.why-us-section h2 {
  font-size: 30px;
}
.why-us-section h3 {
  font-size: 20px;
	width: 95%;
}
}
@media (max-width: 768px) {
  /* why-us Section / Video 768px */
  .why-us-section {
    padding: 20px 0;
  }
  .why-us-content {
    width: 90%;
    padding: 15px;
  }
  .why-us-left-section,
  .why-us-right-section {
    width: 100%;
    margin-bottom: 15px;
  }
  .why-us-left-section h2 {
    font-size: 28px;
  }
  .why-us-left-section h3 {
    font-size: 22px;
  }
  .why-us-left-section p,
  .why-us-left-section li {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  /* why-us Section / Video 480px */
.why-us-section {
  padding: 50px 0px;
  margin-top: 50px;
}


  .why-us-section h2 {
    font-size: 26px;
	
  }
  .why-us-section h3 {
    font-size: 16px;
	  padding-bottom: 20px;
  }
  .why-us-content {
    width: 95%;
    padding: 10px;
  }
  .why-us-left-section p,
  .why-us-left-section li {
    font-size: 14px;
  }
  .why-us-left-section h4 {
    font-size: 20px;
    color: #F36D26;
    font-family: candara;
    margin: 16px 0 5px;
    line-height: 1.1;
  }
}



/*-----Review Section------------------------------------------------------------------------*/






.reviews-carousel {
    overflow-x: hidden;
    width: 100%;
    max-width: 85%;
    margin: 40px auto;
    position: relative;
    background: transparent;
    padding: 20px;
    box-sizing: border-box;
    touch-action: pan-x pinch-zoom;
    user-select: none;
}

.reviews-track {
    display: flex;
    width: max-content;
    animation: scrollReviews 80s linear infinite;
    --card-count: 5;
}

.reviews-carousel.paused .reviews-track {
    animation-play-state: paused !important;
}

.review-card {
    flex: 0 0 auto;
    width: 350px;
    height: 250px;
    margin-right: 20px;
    background: transparent;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    isolation: isolate;
	outline: 1px;
	outline-color: #999;
	outline-style:solid;

}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-370px * var(--card-count))); }
}

.google-logo {
    width: 75px;
    height: auto;
    vertical-align: middle;
    margin-left: 50px;
}

.review-card p {
    margin: 5px 0;
}

.review-text {
    max-height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    font-family: candara;
    letter-spacing: 2px;
	color: #fff;
}

.stars-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.rating {
    color: #f5c518;
    font-size: 20px;
    text-align: left;
    padding-right: 50px;
}

.author-city {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding-right: 30px;
}

.customer {
    font-family: candara;
    font-weight: 700;
    color: #fff;
    font-size: 18px;
    margin-left: 30px;
}

.location {
    font-style: italic;
    color: #ccc;
    font-size: 16px;
}

.read-more {
    background: #09C;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    display: block;
    margin: 5px auto 0;
    z-index: 1000;
    position: relative;
    pointer-events: auto;
}

.read-more:hover {
    background: #0870a3;
}

.review-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background: rgba(0, 0, 0, 0.5);
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    font-family: candara;
    line-height: 1.5;
    letter-spacing: 2px;
}

.close-popup {
    background: #F36D26;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.close-popup:hover {
    background: #d35e20;
}

/* Reviews Carousel - Mobile Scrolling */
@media (max-width: 768px) {
    .reviews-carousel {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        margin: 40px 0;
        padding: 20px;
        box-sizing: border-box;
    }
    .reviews-track {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        animation: scrollReviews 60s linear infinite; /* Match desktop */
        scroll-behavior: smooth;
		
    }
    .review-card {
        flex: 0 0 320px;
        height: 250px;
        scroll-snap-align: center;
		margin-right: 15px;
		margin: 5px 15px 5px;
		margin-bottom: 20px;
		
		
    }
    .read-more {
        font-size: 16px;
        padding: 4px 8px;
        z-index: 1000;
    }
    .review-popup {
        width: 95%;
        max-width: 360px;
    }
}

@media (max-width: 465px) {
    .review-card {
        flex: 0 0 300px;
        height: 220px;
        margin-right: 10px;
    }
    .review-text {
        font-size: 16px;
        max-height: 80px;
    }
    .read-more {
        font-size: 14px;
        z-index: 1000;
    }
    .review-popup {
        width: 90%;
        max-width: 300px;
    }
}





/*---------Trust Section---------------------------------------------------------------------------*/

.wrapper-trust-outside {
  width: 100%;
  height: auto;
  background: #333;
  display:flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 60px 0px 60px 0px;
  overflow-x: clip; /* Safe alternative to hidden */
	position: relative;
}
.trust-title {
  width: 100%;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
	flex-direction: column;
	margin: 0 auto;
}
.trust-title h2 {
  font-size: 40px;
  color: #fff;
  text-align: center;
  font-weight: bolder;
  font-family: OratorStdMedium;
  margin: 0px auto;
  padding: 0 20px 0 20px;
  letter-spacing: -3px;
}

.trust-title h2 span {
  color: #09C;
  font-weight: bold;
}

.trust-title h3 {
  font-size: 24px;
  color: #999;
  text-align: center;
  font-weight: bold;
  font-family: candara;
  margin: 0px auto;
  padding: 0px 20px 40px 20px;
}
.wrapper-trust-inside {
  width: 100%;
  height: auto;
  margin: auto;

}
.trust-cards {
  display: flex;
  justify-content: center;
  gap: 30px; /* Restored to 30px for breathing room */
  padding: 0 20px;
  position: relative; /* Contain stacking context */
	
}

.trust-card {
  position: relative;
  width: 200px; /* 150px front */
  height: 200px; /* 150px front */
  perspective: 1000px;
}

.trust-card-front,
.trust-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease, width 0.6s ease, height 0.6s ease, left 0.6s ease;
  border-radius: 8px;
}

.trust-card-front {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(0deg);
  z-index: 2;
  overflow: visible; /* Prevent image clipping */
  flex-direction: column;
  background: #fff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3); /*-- white translucent shadow --*/
}

.trust-card-front img {
  width: 150px; /* Match card size */
  height: 150px; /* Match card size */
  object-fit: contain; /* Ensure full image shows */
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}
.trust-card-front h4 {
  font-size: 18px;
  font-weight: bold;
  font-family: candara;
  color: #333;
  margin: -10px 0px 10px 0px;
	padding: 10px 0px;
}
.trust-card-back {
  transform: rotateY(180deg);
  z-index: 1;
  background: linear-gradient(to right, #eee, #fff); /* Black to #333333 back */
  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 */
.trust-card:hover {
  z-index: 100; /* Lift entire card above others */
}

.trust-card:hover .trust-card-front {
  z-index: 1; /* Front drops below back */
}

.trust-card:hover .trust-card-back {
  width: 350px;
  height: auto; /* Grows as needed */
  z-index: 10; /* Back above front */
 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /*-- Dark Color Drop shadow --*/
  position: absolute;
  left: 0; /* Default centered */
}
 .trust-card:nth-child(odd):hover .trust-card-back {
    top: -70px; 
}
 .trust-card:nth-child(even):hover .trust-card-back {
    top: -70px; 
}

/* Flip Directions */
.trust-card:nth-child(1) .trust-card-front, /* Google */
.trust-card:nth-child(2) .trust-card-front, /* Customer Service */
.trust-card:nth-child(3) .trust-card-front  /* HIPAA */
{
  transform: rotateY(0deg);
}
.trust-card:nth-child(1):hover .trust-card-front,
.trust-card:nth-child(2):hover .trust-card-front,
.trust-card:nth-child(3):hover .trust-card-front {
  transform: rotateY(-180deg); /* Flip right */
}

.trust-card:nth-child(1) .trust-card-back,
.trust-card:nth-child(2) .trust-card-back,
.trust-card:nth-child(3) .trust-card-back {
  transform: rotateY(180deg);
}
.trust-card:nth-child(1):hover .trust-card-back,
.trust-card:nth-child(2):hover .trust-card-back,
.trust-card:nth-child(3):hover .trust-card-back {
  transform: rotateY(0deg);
}

.trust-card:nth-child(4) .trust-card-front, /* PCI */
.trust-card:nth-child(5) .trust-card-front  /* Clean Room */
{
  transform: rotateY(0deg);
}
.trust-card:nth-child(4):hover .trust-card-front,
.trust-card:nth-child(5):hover .trust-card-front {
  transform: rotateY(180deg); /* Flip left */
}

.trust-card:nth-child(4) .trust-card-back,
.trust-card:nth-child(5) .trust-card-back {
  transform: rotateY(-180deg);

}
.trust-card:nth-child(4):hover .trust-card-back,
.trust-card:nth-child(5):hover .trust-card-back {
  transform: rotateY(0deg);
  left: -200px; /* Adjusted for left flip */
}

/* Back Content Styling */
.trust-card-back img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.trust-card-back h4 {
  color: #09c; /* Your blue */
  font-size: 18px;
  font-weight: bold;
  font-family: candara;
  margin: 0 0 10px;
}

.trust-card-back p {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
  margin: 0;
  font-family: Candara;
}



/* Responsive Adjustments */
	@media (max-width: 1100px) {
.trust-title h2 {
  font-size: 36px;
}
.trust-title h3 {
  font-size: 22px;

}
}
@media (max-width: 1024px) {
  .trust-cards {
    gap: 25px; /* Slightly tighter but still visible */
  }
  .trust-card:hover .trust-card-back {
    width: 350px; /* Smaller for tighter fit */
    left: 40px; /* Center adjust */
  }
  .trust-card:nth-child(4):hover .trust-card-back,
  .trust-card:nth-child(5):hover .trust-card-back {
    left: -250px; /* Consistent centering for left-flip */
  }
}
@media (max-width: 980px) {
.trust-title h2 {
  font-size: 32px;
}
  .trust-cards {
	  max-width: 700px;
	  gap: 20px;
	  height: auto;
	  flex-wrap: wrap;
	  display:flex;
	  flex: auto;
	 margin:auto;
	}
 .trust-card:nth-child(2):hover .trust-card-back {
    left: -100px; /* Consistent centering for left-flip */
  }
	 .trust-card:nth-child(3):hover .trust-card-back {
    left: -140px; /* Consistent centering for left-flip */
  }
	 .trust-card:nth-child(4):hover .trust-card-back {
    left: 10px; /* Consistent centering for left-flip */
  }
	 .trust-card:nth-child(5):hover .trust-card-back {
    left: -140px; /* Consistent centering for left-flip */
  }
}
@media (max-width: 768px) {
		.trust-title h2 {
  font-size: 30px;
}
.trust-title h3 {
  font-size: 20px;
}
  .trust-card {
    -webkit-user-select: none; /* Prevent text selection */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .trust-card:hover .trust-card-front,
  .trust-card:hover .trust-card-back {
    transform: none; /* Disable hover on mobile */
  }
  .trust-card.flipped {
    z-index: 100; /* Lift entire flipped card above others */
  }
  .trust-card.flipped .trust-card-front {
    z-index: 1; /* Front drops below back */
    transform: rotateY(-180deg);
  }
  .trust-card.flipped .trust-card-back {
    z-index: 10; /* Back above front */
    transform: rotateY(0deg);
    width: 350px; /* Match base hover size */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /*-- Dark Color Drop shadow --*/
    height: auto; /* Allow content to expand */
    position: absolute; /* Match hover positioning */
  }
  .trust-card.flipped:nth-child(1) .trust-card-back { left: 30px; top: -50px;}
  .trust-card.flipped:nth-child(2) .trust-card-back { left: -100px; top: -50px;}
  .trust-card.flipped:nth-child(3) .trust-card-back { left: -200px; top: -50px;}
  .trust-card.flipped:nth-child(4) .trust-card-back { left: -50px; top: -100px;}
  .trust-card.flipped:nth-child(5) .trust-card-back { left: -150px; top: -100px; }
}
@media (max-width: 685px) {
	.trust-title h2 {
  font-size: 28px;
}
.trust-title h3 {
  font-size: 18px;
}
}
@media (max-width: 669px) {
  .trust-card.flipped:nth-child(1) .trust-card-back { left: -50px; top: -50px; }
  .trust-card.flipped:nth-child(2) .trust-card-back { left: -100px; top: -50px;}
  .trust-card.flipped:nth-child(3) .trust-card-back { left: -50px; top: -50px;}
  .trust-card.flipped:nth-child(4) .trust-card-back { left: -100px; top: -50px;}
  .trust-card.flipped:nth-child(5) .trust-card-back { left: -100px; top: -50px;}
}

@media (max-width: 587px) {
  .trust-card.flipped:nth-child(1) .trust-card-back { left: 0px; }
  .trust-card.flipped:nth-child(2) .trust-card-back { left: -150px; }
  .trust-card.flipped:nth-child(3) .trust-card-back { left: 0px; }
  .trust-card.flipped:nth-child(4) .trust-card-back { left: -150px; }
  .trust-card.flipped:nth-child(5) .trust-card-back { left: -65px; }
}

@media (max-width: 459px) {
.trust-title h2 {
  font-size: 26px;
}
.trust-title h3 {
  font-size: 16px;

}
.trust-card-front h4 {
  font-size: 16px;
}
	.trust-cards {

  gap: 15px; /* Restored to 30px for breathing room */
 
	
}
.trust-cards {
  padding: 0 0px;
	
}
.trust-card {
  position: relative;
  width: 175px; /* 150px front */
  height: 175px; /* 150px front */
 
}

.trust-card-front img {
  width: 80px; /* Match card size */
  height: 80px; /* Match card size */

}
.trust-card.flipped:nth-child(1) .trust-card-back { left: 0px; }
  .trust-card.flipped:nth-child(2) .trust-card-back { left: -175px; }
  .trust-card.flipped:nth-child(3) .trust-card-back { left: 0px; }
  .trust-card.flipped:nth-child(4) .trust-card-back { left: -175px; }
  .trust-card.flipped:nth-child(5) .trust-card-back { left: -90px; }
}

@media (max-width: 364px) {
	.trust-card {
  position: relative;
  width: 220px; /* 150px front */
  height: 175px; /* 150px front */
 
}

.trust-card-front img {
  width: 100px; /* Match card size */
  height: 100px; /* Match card size */

}
  .trust-card.flipped .trust-card-back {
    width: 300px; /* Override to 300px at 360px */
  }
	.trust-card.flipped:nth-child(1) .trust-card-back { left: -40px; }
  .trust-card.flipped:nth-child(2) .trust-card-back { left: -40px; }
  .trust-card.flipped:nth-child(3) .trust-card-back { left: -40px; }
  .trust-card.flipped:nth-child(4) .trust-card-back { left: -40px; }
  .trust-card.flipped:nth-child(5) .trust-card-back { left: -40px; }
}
@media (max-width: 354px) {
  .trust-card.flipped .trust-card-back {
    width: 300px; /* Override to 300px at 360px */
  }

}

/*----- Location Specific Review Section --------------------------------------------------*/

.reviews-carousel {
    overflow-x: hidden;
    width: 100%;
    max-width: 85%;
    margin: 40px auto;
    position: relative;
    background: transparent;
    padding: 20px;
    box-sizing: border-box;
    touch-action: pan-x pinch-zoom;
    user-select: none;
}
.testimonial-section h2 {
    font-size: 40px;
  color: #333333;
  text-align: center;
  font-weight: bolder;
  font-family: OratorStdMedium;
  margin: 0px auto;
  padding: 50px 20px 0 20px;
  letter-spacing: -3px;	
}
.testimonial-section h2 span {
 
  color: #09c;

}
.reviews-track {
    display: flex;
    width: max-content;
    animation: scrollReviews 80s linear infinite;
    --card-count: 5;
}

.reviews-carousel.paused .reviews-track {
    animation-play-state: paused !important;
}

.review-card {
    flex: 0 0 auto;
    width: 350px;
    height: 250px;
    margin-right: 20px;
    background: transparent;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    isolation: isolate;
	outline: 1px;
	outline-color: #999;
	outline-style:solid;

}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-370px * var(--card-count))); }
}

.google-logo {
    width: 75px;
    height: auto;
    vertical-align: middle;
    margin-left: 50px;
}

.review-card p {
    margin: 5px 0;
}

.review-text {
    max-height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    font-family: candara;
    letter-spacing: 2px;
	color: #333;
}

.stars-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.rating {
    color: #f5c518;
    font-size: 20px;
    text-align: left;
    padding-right: 50px;
}

.author-city {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding-right: 30px;
}

.customer {
    font-family: candara;
    font-weight: 700;
    color: #999;
    font-size: 18px;
    margin-left: 30px;
}

.location {
    font-style: italic;
    color: #ccc;
    font-size: 16px;
}

.read-more {
    background: #09C;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    display: block;
    margin: 5px auto 0;
    z-index: 1000;
    position: relative;
    pointer-events: auto;
}

.read-more:hover {
    background: #0870a3;
}

.review-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background: rgba(0, 0, 0, 0.5);
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #fff;
    color: #333;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    font-family: candara;
    line-height: 1.5;
    letter-spacing: 2px;
}

.close-popup {
    background: #F36D26;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.close-popup:hover {
    background: #d35e20;
}

/* Reviews Carousel - Mobile Scrolling */
@media (max-width: 768px) {
    .reviews-carousel {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        margin: 40px 0;
        padding: 20px;
        box-sizing: border-box;
    }
    .reviews-track {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        animation: scrollReviews 60s linear infinite; /* Match desktop */
        scroll-behavior: smooth;
		
    }
    .review-card {
        flex: 0 0 320px;
        height: 250px;
        scroll-snap-align: center;
		margin-right: 15px;
		margin: 5px 15px 5px;
		margin-bottom: 20px;
		
		
    }
    .read-more {
        font-size: 16px;
        padding: 4px 8px;
        z-index: 1000;
    }
    .review-popup {
        width: 95%;
        max-width: 360px;
    }
}

@media (max-width: 465px) {
    .review-card {
        flex: 0 0 300px;
        height: 220px;
        margin-right: 10px;
    }
    .review-text {
        font-size: 16px;
        max-height: 80px;
    }
    .read-more {
        font-size: 14px;
        z-index: 1000;
    }
    .review-popup {
        width: 90%;
        max-width: 300px;
    }
}




/*--- CTA Section--------------------------------------------------------------*/

/* CTA Section */
.cta-section {
  width: 100%;
  background: #09c;
  padding: 25px 0; /* Uniform top and bottom padding */
  height: auto;
  margin-top: 0 !important;
  margin-bottom: 0;
	clear: both;
	

}

.cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  gap: 100px;
}

/* No top margin here */
.cta-phone-number {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  margin-top: 0; /* Remove inconsistent spacing */
}

.cta-phone-number a {
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  font-family: OratorStdMedium;
  font-size: 24px;
  transition: color 0.3s ease;
}

.cta-phone-number a:hover {
  color: #ddd;
}

.cta-phone-number span {
  padding-right: 5px;
	font-size: 24px;
	font-color: #333;
}

/* Consistent vertical alignment */
.cta-quote-button .btn-quote {
  background: #F36D26;
  color: #fff;
  padding: 6px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 20px;
  font-family: candara;
  font-weight: bold;
  letter-spacing: 2px;
  white-space: nowrap;
  transition: background 0.3s ease;
  display: block;
  margin-top: 0; /* No offset */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-quote-button .btn-quote:hover {
  background: #F88C4A;
}
@media screen and (max-width: 730px) {
		.cta-container {
    gap: 50px; /* Even closer */
  }
}
@media screen and (max-width: 680px) {
		.cta-container {
    gap: 15px; /* Even closer */
  }
}
	
@media screen and (max-width: 620px) {

	  .cta-phone-number span {
    display: none; /* Hide "Call for HELP:" */
  }

}
	@media screen and (max-width: 500px) {

	
		.cta-phone-number a {
    font-size: 16px;
  }

	.cta-phone-icon {
    width: 16px;
    height: 16px;
  }
  .cta-quote-button .btn-quote {
    padding: 4px 12px;
    font-size: 12px;
  }
  .cta-section {
    padding: 15px 0;
  }
}


	
	
	
	/*----Services Section ------------------------------------------------------*/

.services-section {
  background: #ffffff;
  padding: 50px 0;
  text-align: center;
  margin: 0 auto;
  overflow-x: clip; /* Safe alternative to hidden */
}

.services-section h2 {
  font-size: 40px;
  font-weight: bolder;
  font-family: 'OratorStdMedium', sans-serif;
  color: #333333;
  margin: 0 auto;
  padding: 0px 20px;
  position: relative;
  letter-spacing: -3px;
	
}

.services-section h2 span {
  color: #09c;
}
.services-section h3 {
  font-size: 24px;
  font-family: candara;
  color: #999;
  text-align: center;
  margin: 0px auto;
  padding: 0px 20px 40px 20px;
	
}
/* Grid Layout */
.services-grid {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0;
}

/* Card Container */
.service-card {
  position: relative;
  width: 200px;
  height: 200px;
  perspective: 1000px;
  z-index: 1;
  margin: 0;
  padding: 0;
}

/* Front and Back Base Styles */
.service-card-front,
.service-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* 250px */
  height: 100%;
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  backface-visibility: hidden;
  transition: transform 0.8s ease;
  border-radius: 8px;
  transform-style: preserve-3d;
}

/* Front Styling */
.service-card-front {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotateY(0deg);
  z-index: 2;
  text-align: center;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /*-- Dark Color Drop shadow --*/
	
}

.service-icon {
  width: 90px;
  height: 90px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
  margin: 0px;  
}

.service-card-front h4 {
  font-size: 20px;
  font-weight: bold;
  font-family: candara;
  color: #333333;
  margin: 10px 0 10px 0;
}

.service-card-front a {
  text-decoration: underline;
  color: #333333;
}

.service-card-front a:hover {
  color: #F36D26;
}

/* Back Styling */
.service-card-back {
  transform: rotateY(180deg);
  height: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center; /* Center content with image */
  text-align: center;
}

.back-icon {
  width: 0px;
  height: 0px;
  margin: 0 auto 0px; /* Center and space below */
}

.service-card-back h4 {
  font-size: 22px;
  font-weight: bold;
  font-family: candara;
  color: #09c;
  margin-bottom: 0px;
}

.service-card-back p {
  font-size: 16px;
  font-family: candara;
  color: #333333;
  line-height: 1.4;
  flex-grow: 1;
  margin-top: 10px;
}

.learn-more-btn {
  display: inline-block;
  background: #F36D26;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-family: candara;
  font-weight: bold;
  margin-top: 10px;
}

.learn-more-btn:hover {
  background: #d35e20;
}

/* Flip Effect with Z-Index */
.service-card:hover {
  z-index: 100;
}

.service-card:hover .service-card-front {
  transform: rotateY(-180deg);
}

.service-card:hover .service-card-back {
  transform: rotateY(0deg);
  width: 350px; /* Expand to 350px */
  height: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Bottom Row Cards (7,8,9) - Shift Up */
.service-card:nth-child(1):hover .service-card-back {top: -100px;}
.service-card:nth-child(2):hover .service-card-back {top: -100px;}
.service-card:nth-child(3):hover .service-card-back {top: -100px;}
.service-card:nth-child(4):hover .service-card-back {top: -100px;}
.service-card:nth-child(5):hover .service-card-back {top: -100px;}
.service-card:nth-child(6):hover .service-card-back {top: -150px;}
.service-card:nth-child(7):hover .service-card-back {top: -150px;}
.service-card:nth-child(8):hover .service-card-back {top: -150px;}
.service-card:nth-child(9):hover .service-card-back {top: -150px;}
.service-card:nth-child(10):hover .service-card-back {top: -150px;}


/* Right-Side Cards Adjustment (Columns 3, 6, 9) */
.service-card:nth-child(5):hover .service-card-back {left: -140px;}
.service-card:nth-child(10):hover .service-card-back {left: -140px;}


/* Responsive Design */
@media (max-width: 1310px) {
.services-grid {
  gap: 20px;
}
}
@media (max-width: 1210px) {
.service-card:nth-child(5):hover .service-card-back {left: -185px;}
.service-card:nth-child(10):hover .service-card-back {left: -185px;}
.services-grid {
  max-width: 1100px;
}	
}
@media (max-width: 1099px) {
.services-grid {
  max-width: 1000px;
}	
.service-card:nth-child(5):hover .service-card-back {left:    0px;}
.service-card:nth-child(4):hover .service-card-back {left: -185px;}
.service-card:nth-child(8):hover .service-card-back {left: -185px;}
.service-card:nth-child(9):hover .service-card-back {left:  -75px;}
.service-card:nth-child(10):hover .service-card-back {left: -75px;}
}
@media (max-width: 870px) {
  .services-grid {
    max-width: 700px;
  }
  .service-card:hover .service-card-back {
    width: 350px;
    height: auto;
  }
.service-card:nth-child(3):hover .service-card-back {left: -185px;}
.service-card:nth-child(4):hover .service-card-back {left:    0px;}
.service-card:nth-child(6):hover .service-card-back {left: -185px;}
.service-card:nth-child(8):hover .service-card-back {left:    0px;}
.service-card:nth-child(9):hover .service-card-back {left:  -185px;}
.service-card:nth-child(10):hover .service-card-back {left: -75px;}
  .services-section h2 {
    font-size: 36px;
  }
  .services-section h3 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
	  .service-card {
    -webkit-user-select: none; /* Prevent text selection */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .service-card:hover .service-card-front,
  .service-card:hover .service-card-back {
    transform: none; /* Disable hover on mobile */
  }
  .service-card.flipped {
    z-index: 100; /* Lift entire flipped card above others */
  }
  .service-card.flipped .service-card-front {
    transform: rotateY(-180deg);
  }
  .service-card.flipped .service-card-back {
    transform: rotateY(0deg);
    width: 350px; /* Match hover base size */
    height: auto; /* Allow content to expand */
    position: absolute; /* Match hover positioning */
  }
    .services-section h2 {
    font-size: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .services-section h3 {
    font-size: 20px;
  }
}
@media (max-width: 662px) {
 .services-grid {
  max-width: 500px;
}
.service-card:nth-child(1):hover .service-card-back {left:    0px;}
.service-card:nth-child(2):hover .service-card-back {left: -190px;}
.service-card:nth-child(3):hover .service-card-back {left:    0px;}
.service-card:nth-child(4):hover .service-card-back {left: -190px;}
.service-card:nth-child(5):hover .service-card-back {left:    0px;}
.service-card:nth-child(6):hover .service-card-back {left: -190px;}
.service-card:nth-child(7):hover .service-card-back {left:    0px;}
.service-card:nth-child(8):hover .service-card-back {left: -190px;}
.service-card:nth-child(9):hover .service-card-back {left:    0px;}
.service-card:nth-child(10):hover .service-card-back {left:-190px;}

.services-section h2 {
    font-size: 30px;
  }
  .services-section h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .services-section h2 {
    font-size: 26px;
  }
  .services-section h3 {
    font-size: 16px;
  }
}
@media (max-width: 434px) {
.service-card {
  width: 175px;
  height: 175px; 
}
.service-icon {
  width: 70px;
  height: 70px;  
}
.service-card:hover .service-card-back {
  width: 300px; /* Expand to 350px */
}
.service-card:nth-child(1):hover .service-card-back {left:    0px;}
.service-card:nth-child(2):hover .service-card-back {left: -165px;}
.service-card:nth-child(3):hover .service-card-back {left:    0px;}
.service-card:nth-child(4):hover .service-card-back {left: -165px;}
.service-card:nth-child(5):hover .service-card-back {left:    0px;}
.service-card:nth-child(6):hover .service-card-back {left: -165px;}
.service-card:nth-child(7):hover .service-card-back {left:    0px;}
.service-card:nth-child(8):hover .service-card-back {left: -165px;}
.service-card:nth-child(9):hover .service-card-back {left:    0px;}
.service-card:nth-child(10):hover .service-card-back {left:-165px;}
}
@media (max-width: 405px) {
	 .services-section h2 {
    font-size: 22px;
  }
}

@media (max-width: 375px) {
 

.service-card {
  width: 250px;
  height: 150px; 
}
.service-card:nth-child(1):hover .service-card-back {left: -45px;}
.service-card:nth-child(2):hover .service-card-back {left: -45px;}
.service-card:nth-child(3):hover .service-card-back {left: -45px;}
.service-card:nth-child(4):hover .service-card-back {left: -45px;}
.service-card:nth-child(5):hover .service-card-back {left: -45px;}
.service-card:nth-child(6):hover .service-card-back {left: -45px;}
.service-card:nth-child(7):hover .service-card-back {left: -45px;}
.service-card:nth-child(8):hover .service-card-back {left: -45px;}
.service-card:nth-child(9):hover .service-card-back {left: -45px;}
.service-card:nth-child(10):hover .service-card-back {left:-45px;}
}


@media (max-width: 344px) {
  .service-card:hover .service-card-back {
    width: 280px;
    height: auto;
    left: 0; /* No shift needed - matches front */
  }
.service-card:nth-child(1):hover .service-card-back {left: -35px;}
.service-card:nth-child(2):hover .service-card-back {left: -35px;}
.service-card:nth-child(3):hover .service-card-back {left: -35px;}
.service-card:nth-child(4):hover .service-card-back {left: -35px;}
.service-card:nth-child(5):hover .service-card-back {left: -35px;}
.service-card:nth-child(6):hover .service-card-back {left: -35px;}
.service-card:nth-child(7):hover .service-card-back {left: -35px;}
.service-card:nth-child(8):hover .service-card-back {left: -35px;}
.service-card:nth-child(9):hover .service-card-back {left: -35px;}
.service-card:nth-child(10):hover .service-card-back {left:-35px;}
}




/*--- Whats wrong with my drive section------------------------------------------------------*/
/* Failure Section */
.failure-section {
  background: linear-gradient(to bottom left, #333 25%, #000 75%);
  padding: 20px 0 50px 0;
  text-align: center;
  width:100%; /* Centered max-width */
  margin: 0 auto;
}

.failure-section h2 {
  font-size: 40px;
  font-weight: bolder;
  font-family: 'OratorStdMedium', sans-serif;
  color: #fff; /* Blue */
  margin-bottom: 0px;
	padding: 0px 20px;
}
.failure-section h2 span{
  color: #09c; /* Blue */
  
}
.failure-section h3 {
  font-size: 24px;
  font-weight: bold;
  font-family: 'OratorStdMedium', sans-serif;
  color: #999; /* Blue */
  margin-bottom: 20px;
	margin-top: 0px;
}

.failure-section p {
  font-size: 24px;
  font-family: candara;
  color: #999; /* Dark Grey */
	width: 80%;
	text-align: center;
	margin:auto;
	margin-top: 20px;
	margin-bottom: 50px;
	
	
}

/* Container for side-by-side accordions */
.accordion-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap; /* Prevent wrapping */
  align-items: flex-start; /* Align items to the top */
}


/* Individual accordion sections */
.accordion {
  width: 48%; /* Each accordion takes roughly half the container width */
  display: flex; /* Use flexbox for vertical stacking */
  flex-direction: column; /* Stack items vertically */
  box-sizing: border-box; /* Ensure padding/margins don't affect width */
}

/* Ensure accordion items stack vertically */
.accordion-item {
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Drop shadow */
  width: 100%; /* Ensure full width within the accordion */
}
.accordion-item img
{
	width: 40px;
	height: auto;
	padding-right: 10px;
	padding-left: 10px;
	top:10px;
	position: relative;
	transition: all 0.3s ease; /* Smooth swap */
	
}
.accordion-header {
  background: #f5f5f5; /* Light Grey background */
  padding: 15px;
  font-size: 22px; /* Fixed size */
  font-family: 'OratorStdMedium', sans-serif;
  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 */
}

.accordion-header:hover {
  background: #F36D26; /* Orange on hover */
  color: #ffffff; /* White text on hover */
	
}
.accordion-header:hover .accordion-item img {
  content: url("path/to/white-icon.png");/* Replace with your white image */
	background: #F36D26;
}

.accordion-content {
  display: none;
  padding-top: 5px;
	padding-left:20px;
	padding-right:20px;
	padding-bottom:20px;
  background: #ffffff; /* 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;
}
.accordion-content .sub-accordion p{
  display: block;
color:#F36D26;
	text-align: left;
	margin-top: 0px;
	margin-bottom: 5px;
	margin-left:20px;
	font-family: 'OratorStdMedium', sans-serif;
	font-size: 18px;
	font-weight: 900;
	
	
}
.sub-accordion-item {
  margin-bottom: 5px;
}

.sub-accordion-header {
  background: #e5e5e5; /* Lighter Grey background */
  padding: 10px;
  font-size: 18px; /* Fixed size */
  font-family: candara;
  color: #333333; /* Dark Grey */
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s;
	letter-spacing:2px;
}

.sub-accordion-header:hover {
  background: #F36D26; /* Orange on hover */
  color: #ffffff; /* White text on hover */
}

.sub-accordion-content {
  display: none;
  padding: 15px;
  background: #f9f9f9; /* Very light grey background */
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle drop shadow */
}

.sub-accordion-content.active {
  display: block;
}
.sub-accordion-content
.failure-details p {
  font-family: candara;
  color: #333333; /* 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;
}
.sub-accordion-content
.failure-details p span
{
	color: #F36D26;
	font-style:normal;
}
@media (max-width: 1200px) {
	.accordion-container {
  max-width: 95%;
}
	.failure-section h3 {
  font-size: 22px;
margin-right: 20px;
		margin-left: 20px;
}


}
/* Responsive Adjustments for Failure Section */
@media (max-width: 768px) {
  .failure-section {
    padding: 30px 0;
  }
  .failure-section h2 {
    font-size: 28px; /* Only h2 decreases */
  }
  .failure-section p {
    font-size: 16px; /* Unchanged */
  }
 .failure-section h3 {
    font-size: 18px;
	font-family: candara;
	 font-weight: normal;

}
  .accordion-container {
    flex-direction: column; /* Stack vertically on smaller screens */
    gap: 10px;
  }
  .accordion {
    width: 100%; /* Full width when stacked */
  }
  .accordion-header {
    padding: 10px;
  }
  .sub-accordion-header {
    padding: 8px;
  }
  .failure-details p {
    margin-bottom: 10px;
  }
}
@media (max-width: 530px) {
	.failure-section h2 {
  font-size: 22px;
}
}
@media (max-width: 480px) {
  .failure-section {
    padding: 20px 0;
  }

  .failure-section p {
    font-size: 16px; /* Unchanged */
  }
  .accordion-header {
    padding: 8px;
  }
  .sub-accordion-header {
    padding: 6px;
  }
  .failure-details p {
    margin-bottom: 8px;
  }
}


	
	
/*------How Much Does It Cost Section -------------------------------------*/

.price-factors-container {
  position: relative;
  text-align: center;
  margin: 0 auto;
  padding: 60px 0px 60px 0px;
  background: #fff;
	width: 100%;
  overflow-x: clip; /* Safe alternative to hidden */
}
.price-factors-container h2 {
  font-size: 40px;
  font-weight: bolder;
  font-family: OratorStdMedium;
  color: #333;
	max-width: 95%;
  text-align: center;
  margin: 0 auto;
  padding: 0px;
  letter-spacing: -3px;
}
.price-factors-container h2 span {
  color: #09c;
}
.price-factors-container h3 {
  font-size: 24px;
  font-family: candara;
  font-weight: bold;
  color: #999;
  text-align: center;
  margin: 0 auto;
  padding: 0px 20px 40px 20px;
  max-width: 1200px;
}
.price-factors-container-inside {
  
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
	margin: 0 auto;
	gap: 20px;
	width: 100%;
	max-width: 1200px;
	
	
	
}
.price-flip-card {
  position: relative;
  width: 200px;
  height: 250px;
  perspective: 1000px;
}

.price-flip-card-front,
.price-flip-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;
}

.price-flip-card-front {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotateY(0deg);
  z-index: 2;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
	

}

.price-flip-card-front img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
	   filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
  transition: filter 0.3s ease;
}

.price-flip-card-front h4 {
  font-size: 16px;
  color: #333;
  margin: 5px 0;	
}

.price-flip-card-front p {
  font-size: 14px;
  color: #999;
	padding: 0px 10px;
}

.price-flip-card-back {
  background: linear-gradient(to right, #eee, #fff); /*-- card backgroudnd --*/
  transform: rotateY(180deg);
  z-index: 1;
  padding: 15px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
}
.price-flip-card-back h5 {
  font-size: 18px;
  color: #09c;
  margin: 0px;
  font-family: candara;
}

.price-flip-card-back li {
  font-size: 16px;
  color: #333;
  flex-grow: 1;
  font-family: Candara; 
  text-align: left;
  margin-bottom: 15px;
  margin-left: -20px;
}

/* Flip effect */
.price-flip-card:hover {
  
  z-index: 100;
}
.price-flip-card:hover .price-flip-card-front {
  transform: rotateY(-180deg);
  z-index: 1;
}

.price-flip-card:hover .price-flip-card-back {
  transform: rotateY(0deg);
  z-index: 10;
  width: 350px;
  height: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  position: absolute;
}

/* Positional movement for hover effect */
.price-flip-card:nth-child(5):hover .price-flip-card-back {
  left: -140px;
}
.price-flip-card:nth-child(1):hover .price-flip-card-back,
.price-flip-card:nth-child(2):hover .price-flip-card-back,
.price-flip-card:nth-child(3):hover .price-flip-card-back,
.price-flip-card:nth-child(4):hover .price-flip-card-back, 
.price-flip-card:nth-child(5):hover .price-flip-card-back {
  top: -100px; 
}
.price-cta-section {
    position: relative;
	text-align: center;
	margin: 0 auto;
    margin-top: 10px auto 50px auto;
	max-width: 1200px;
	padding: 30px 0px 0 0px;
	
}
.price-cta-section h4 {
  text-align: center;
  margin: 0 auto;
  font-family: OratorStdMedium;
  color: #09c;
  font-size: 30px;
  letter-spacing: -2px;
}
.price-cta-section p {
  text-align: center;
  margin: 0 auto;
  font-family: candara;
  color: #666;
  font-size: 20px;
	padding: 0px 100px;
}
.price-cta-section li {
  text-align: left;
  margin: 0 auto;
  font-family: candara;
  color: #999;
  font-size: 16px;
	max-width: 900px;
	width: 100%;
}
.price-cta-section li span {
  color: #333;
  font-size: 16px;
	font-weight: bold;
	
}
.price-cta-section ul li {
  margin-bottom: 12px;
}
.price-cta-buttons {
  display: flex;
  flex-wrap: wrap;
	position: relative;
	flex-direction: column;
  justify-content: center;
  gap: 15px;
	
}

.price-cta-button {
  display: flex;
	flex-wrap: wrap;
	flex-direction: column;
  padding: 12px 24px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
	text-align: center;
	margin: 0 auto;
}

.price-cta-button.primary {
  background-color: #09c;
  color: #fff;
  font-weight: bold;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	max-width: 70%;/*-- Dark Color Drop shadow --*/
}

.price-cta-button.primary:hover {
  background-color:#07B2F5;
}

.price-cta-button.secondary {
  background-color: #F36D26;
  color: #fff;
}
@media (max-width: 1115px) {
.price-flip-card:nth-child(5):hover .price-flip-card-back {
    left: -190px;
}
}
@media (max-width: 1086px) {
.price-factors-container h2 {
    font-size: 36px;
}
.price-factors-container-inside {
		max-width: 750px;
	}
.price-factors-container h3 {
  font-size: 22px;
}
.price-flip-card:nth-child(3):hover .price-flip-card-back {left: -140px;}
.price-flip-card:nth-child(5):hover .price-flip-card-back {left: -75px;}
}
@media (max-width: 985px) {
.price-factors-container h2 {
  font-size: 30px;
}

.price-factors-container h3 {
  font-size: 20px;
}
	.price-factors-container {
padding: 50px 0px 50px 0px;
}
	.price-cta-section p {
	padding: 0px 20px;
}

}
/* Responsive adjustments (optional) */
@media (max-width: 768px) {
	  .price-flip-card {
    -webkit-user-select: none;
    user-select: none;
  }

  .price-flip-card:hover .price-flip-card-front,
  .price-flip-card:hover .price-flip-card-back {
    transform: none;
  }

  .price-flip-card.flipped .price-flip-card-front {
    transform: rotateY(-180deg);
    z-index: 1;
  }

  .price-flip-card.flipped .price-flip-card-back {
    transform: rotateY(0deg);
    z-index: 10;
    width: 350px;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /*-- Dark Color Drop shadow --*/
    position: absolute;
    left: 0;
    top: 0;
  }

  .price-flip-card:not(.flipped) .price-flip-card-back {
    transform: rotateY(180deg);
    z-index: 1;
  }

  .price-flip-card:not(.flipped) .price-flip-card-front {
    transform: rotateY(0deg);
    z-index: 2;
  }

  .price-flip-card-container {
    flex-wrap: wrap;
    gap: 20px;
  }
.learn-more-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 12px;
  background-color: #09C;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-family: Candara;
}

.learn-more-btn:hover {
  background-color: #0077aa;
}

.learn-more-btn.inactive {
  background-color: #666666;
  cursor: default;
}
.price-factors-container h2 {
font-size: 28px;
}
	.price-factors-container h3 {
font-size: 18px;
}
	.price-cta-section h4 {
  font-size: 22px;
}
	.price-cta-section p {
  font-size: 18px;
}
		
.price-flip-card:nth-child(3):hover .price-flip-card-back {
  left: -190px;
	}	
.price-flip-card:nth-child(4):hover .price-flip-card-back {
  left: 0px;
	}	
}
@media (max-width: 649px) {
.price-factors-container-inside {
max-width: 450px;
}
.price-flip-card:nth-child(1):hover .price-flip-card-back {left:    0px;}
.price-flip-card:nth-child(2):hover .price-flip-card-back {left: -150px;}
.price-flip-card:nth-child(3):hover .price-flip-card-back {left:    0px;}
.price-flip-card:nth-child(4):hover .price-flip-card-back {left: -150px;}
.price-flip-card:nth-child(5):hover .price-flip-card-back {left:  -75px;}
}
@media (max-width: 430px) {
		.price-flip-card:nth-child(2):hover .price-flip-card-back,
	    .price-flip-card:nth-child(4):hover .price-flip-card-back {
  left: -175px;
	}	
			.price-flip-card:nth-child(1):hover .price-flip-card-back,
	    .price-flip-card:nth-child(3):hover .price-flip-card-back {
  left: 0px;
	}
	.price-flip-card:nth-child(5):hover .price-flip-card-back {left:  -90px;}
.price-factors-container-inside {
max-width: 370px;
}
.price-flip-card {
  width: 175px;
  height: 220px;
	margin: 0;
 
}
.price-flip-card-front img {
  width: 60px;
  height: 60px;
}

.price-factors-container-inside {
	gap: 15px;
}
	.price-factors-container h2 {
font-size: 26px;
		padding: 0px;
}
	.price-factors-container h3 {
font-size: 16px;
}
		.price-cta-section h4 {
  font-size: 18px;
}
	.price-cta-section p {
  font-size: 16px;
}
}
@media (max-width: 370px) {
	.price-flip-card:hover .price-flip-card-back {

  width: 320px;
  height: auto;

}	
	.price-flip-card{
		width: 250px;

	}
			.price-flip-card:nth-child(2):hover .price-flip-card-back,
	    .price-flip-card:nth-child(4):hover .price-flip-card-back {
  left: -35px;
	}	
			.price-flip-card:nth-child(1):hover .price-flip-card-back,
	    .price-flip-card:nth-child(3):hover .price-flip-card-back {
  left: -35px;
	}
}
	@media (max-width: 340px) {
	.price-flip-card:hover .price-flip-card-back {

  width: 300px;
  height: auto;

}	
			.price-flip-card:nth-child(2):hover .price-flip-card-back,
	    .price-flip-card:nth-child(4):hover .price-flip-card-back {
  left: -25px;
	}	
		.price-flip-card:nth-child(1):hover .price-flip-card-back,
		.price-flip-card:nth-child(3):hover .price-flip-card-back,
	    .price-flip-card:nth-child(5):hover .price-flip-card-back {
  left: -25px;
	}
}


/*--------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;
  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;
  color: #999;
  text-align: center;
  font-weight: bold;
  font-family: Candara;
  margin: 0 auto;
  padding: 0px 20px 40px 20px;
}
.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;
  background: #fff;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3); /*-- white translucent shadow --*/
  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: linear-gradient(to right, #eee, #fff); /*-- card backgroudnd --*/
  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 8px rgba(0, 0, 0, 0.5);
  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: candara;
  margin: 0 0 10px;
}

.process-card-back p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  margin: 10px 0px 20px 0px;
  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 5px; /* 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 */
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /*-- Dark Color Drop shadow --*/
  }
 .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-card-front img {
     width: 70px;
     height: 70px;
}
.process-card {
     width: 175px;
     height: 175px;

}

.process-cards {
  gap: 15px; /* Base gap - Trust’s starting point */
}
		 .process-title h2 {
      font-size: 26px;
}
 .process-title h3 {
     font-size: 16px; 
}
  .process-card.flipped:nth-child(1) .process-card-back { left: 0px; }
  .process-card.flipped:nth-child(2) .process-card-back { left: -180px; }
  .process-card.flipped:nth-child(3) .process-card-back { left: 0px; }
  .process-card.flipped:nth-child(4) .process-card-back { left: -180px; }
  .process-card.flipped:nth-child(5) .process-card-back { left: -80px; }

}
@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 */
  }
}



/*-------Files We Recover When Disaster Strikes Section -----------------------------*/




.files-section {
  background: #fff;
  padding: 60px 0px 60px 0px;
  text-align: center;
  margin: 0 auto;
  clear: both;
  overflow-x: clip; /* Safe alternative to hidden */

}

.files-section h2 {
  font-size: 40px;
  font-family: 'OratorStdMedium';
  color: #333;
  margin: 0 auto;
  padding: 0px 20px 0px 20px;
  letter-spacing: -3px;
}

.files-section h2 span {
  color: #09c;
}
.files-section h3 {
	font-size: 24px;
	color: #999999;
	font-family: candara;
	margin: 0px auto;
	padding: 0px 20px 40px 20px;
	font-weight: bold;
}

.files-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 860px; /* 200px * 4 + 10px * 3 */
  margin: 0 auto;
  position: relative;
}

.file-card {
  position: relative;
  width: 200px;
  height: 100px;
  perspective: 1000px;
  z-index: 1;
}

.file-card.blank {
  background: transparent;
  box-shadow: none;
}

.file-card-front,
.file-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  backface-visibility: hidden;
  transition: transform 0.6s ease, width 0.6s ease, height 0.6s ease, left 0.6s ease;
  overflow: hidden;
  box-sizing: border-box;
}

.file-card-front {
  display: flex;
  align-items: center; /* Vertically center icon and title */
  justify-content: center; /* Pin icon left */
  transform: rotateY(0deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /*-- Dark Color Drop shadow --*/
  z-index: 2;
  height: 100px; /* Locked */
  padding:10px;
	
}

.file-icon {
  width: 50px;
  height: 50px;
  margin: 0 0; /* Left padding + right spacing */
	 filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
  transition: filter 0.3s ease;
	margin-bottom: 0px;
}

.file-card-front h3 {
  font-size: 20px;
  font-family: candara;
  color: #333333;
  margin: 0; /* Remove default margins */
  flex-grow: 1; /* Fill remaining ~130px */
  text-align: center; /* Center text horizontally in its space */
	margin-top: 0px;
	padding:0px;
}

.file-card-back {
  transform: rotateY(180deg);
  z-index: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  height: auto;
}
.file-card-back h4 {
	text-align: center;
	color: #F36D26;
	font-size: 20px;
	font-weight: 900;
	margin-top: 0px;
	font-family: candara;
	margin: 15px 0px;
	white-space: normal;
   word-break: break-word;
	overflow-wrap: break-word;
}
.file-card:nth-child(1):hover .file-card-back {top: -70px;}
.file-card:nth-child(2):hover .file-card-back {top: -70px;}
.file-card:nth-child(3):hover .file-card-back {top: -70px;}
.file-card:nth-child(4):hover .file-card-back {top: -70px;}
.file-card:nth-child(5):hover .file-card-back {top: -130px;}
.file-card:nth-child(6):hover .file-card-back {top: -130px;}
.file-card:nth-child(7):hover .file-card-back {top: -130px;}
.file-card:nth-child(8):hover .file-card-back {top: -130px;}
.file-card:nth-child(9):hover .file-card-back {top: -200px;}
.file-card:nth-child(10):hover .file-card-back {top: -200px;}
.file-card:nth-child(11):hover .file-card-back {top: -200px;}
.file-card:nth-child(12):hover .file-card-back {top: -200px;}

  .file-card:nth-child(even):hover .file-card-back {
    left: -150px; /* 350px back - 200px front = 150px right shift */
  }
/* Flip Effect */
.file-card:hover {
  z-index: 1000;
}

.file-card:hover .file-card-front {
  transform: rotateY(-180deg);
  z-index: 1;
}

.file-card:hover .file-card-back {
  transform: rotateY(0deg);
  width: 350px;
  height: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* Back Formatting */

.file-card-back .check-mark {
  width: 20px;
  height: 20px;
  position: relative;
  margin-right: 10px;
	flex: 0 0 20px;
	margin-top: 2px;
}

.file-card-back .check-mark::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 10px;
  background: transparent;
  border-left: 6px solid #28A745;
  border-bottom: 6px solid #28A745;
  transform: rotate(-45deg);
  top: 6px;
  left: 4px;
}
.file-card-back .file-types {
  display: flex;
	align-items: flex-start;
  font-size: 16px;
  font-family: candara;
  color: #ffffff;
  margin-bottom: 0;
	width: 100%;
	flex-wrap:nowrap;
	background-color:#333333;
	
}
.file-card-back .file-types span {
  line-height: 1.2;
	margin-left: 10px;
	margin-bottom: 10px;
	margin-top: 10px;
	color: #ffffff;
	overflow-wrap: break-word;
	word-break:break-word;
	max-width: calc(100% - 30px); /* leave space for checkmark */
	white-space:normal;
}
.inline-file-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  columns: 2; /* Optional for a 2-column layout */
  column-gap: 24px;
	text-align: left;
	margin: 10px auto;
}

.inline-file-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  break-inside: avoid;
	line-height: 1;
}

.inline-file-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #09c; /* File Savers blue, or change as needed */
  font-size: 14px;
  line-height: 1;
	font-weight: bold;
}
.file-card-back .file-types strong {
  color: #09c;
}

.file-card-back .fix {
  font-size: 18px;
  font-family: candara;
  color: #333333;
  line-height: 1.4;
  margin: 0px 0px 20px 0px;
  text-align: center;
}
.file-card-back .fix strong {
  color: #09c;
}

.file-card-back .no-act {
  font-size: 17px;
  font-family: candara;
  color: #333333;
  line-height: 1.4;
  margin-bottom: 10px;
	letter-spacing: -0.1px;
	text-align: left;
}
.file-card-back .no-act strong {
  color: #F36D26;
}

.story-links .story-link-right {
  font-size: 16px;
  font-family: candara;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 20px;
  background-color: #09c;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-right: 10px;
	margin-top: 20px;
	 display: flex;
  justify-content: center;
	
}
.story-links .story-link-right:hover {
  background-color: #2a6ba0;
  transform: translateY(-2px);
}


/* Responsive Fixes */
@media (max-width: 1230px) {
	.files-section h2{
		font-size: 36px;
	}
	.files-section h3 {
	font-size: 22px;
}
	.files-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 860px;
  }
  .file-card:hover .file-card-back {
    width: 350px;
    height: auto;
  }
  /* Shift right-side cards (column 4: 4, 8, 12) */
  .file-card:nth-child(4n):hover .file-card-back {
    left: -150px; /* 200px front to 350px back = 150px left */
  }
}
@media (max-width: 900px) {
  .files-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 640px; /* 200px * 3 + 10px * 2 */
  }
  .file-card:hover .file-card-back {
    width: 350px;
    height: auto;
  }
  /* Left column (1, 4, 7, 10) stays put */
  .file-card:nth-child(3n+1):hover .file-card-back {
    left: 0;
  }
  /* Shift right-side cards (column 3: 3, 6, 9, 12) */
  .file-card:nth-child(3n):hover .file-card-back {
    left: -150px;
  }
		.files-section h2{
		font-size: 30px;
	}
	.files-section h3 {
	font-size: 20px;
}
.file-card:nth-child(1):hover .file-card-back {top: -100px;}
.file-card:nth-child(2):hover .file-card-back {top: -100px;}
.file-card:nth-child(3):hover .file-card-back {top: -100px;}
.file-card:nth-child(4):hover .file-card-back {top: -150px;}
.file-card:nth-child(5):hover .file-card-back {top: -150px;}
.file-card:nth-child(6):hover .file-card-back {top: -150px;}
.file-card:nth-child(7):hover .file-card-back {top: -200px;}
.file-card:nth-child(8):hover .file-card-back {top: -200px;}
.file-card:nth-child(9):hover .file-card-back {top: -200px;}
.file-card:nth-child(10):hover .file-card-back {top: -200px;}
.file-card:nth-child(11):hover .file-card-back {top: -200px;}
.file-card:nth-child(12):hover .file-card-back {top: -200px;}	
}
@media (max-width: 768px) {
  .file-card {
    -webkit-user-select: none; /* Prevent text selection */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .file-card:hover .file-card-front,
  .file-card:hover .file-card-back {
    transform: none; /* Disable hover on mobile */
  }
  .file-card.flipped {
    z-index: 1000; /* Lift entire flipped card above others */
  }
  .file-card.flipped .file-card-front {
    z-index: 1; /* Front drops below back */
    transform: rotateY(-180deg);
  }
  .file-card.flipped .file-card-back {
    z-index: 10; /* Back above front */
    transform: rotateY(0deg);
    width: 350px; /* Match hover base size */
    height: auto; /* Allow content to expand */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /*-- Dark Color Drop shadow --*/
    position: absolute; /* Match hover positioning */
  }
  .file-card.flipped:nth-child(3n+1) .file-card-back {
    left: 0; /* Left column stays put */
  }
  .file-card.flipped:nth-child(3n) .file-card-back {
    left: -150px; /* Shift right-side cards */
  }
/* Top row (1st row: cards 1, 2, 3) */
.file-card.flipped:nth-child(-n+3) .file-card-back {
    top: -100px !important; /* Adjust as needed, e.g., keep in place */
}

/* Second row (cards 4, 5, 6) */
.file-card.flipped:nth-child(n+4):nth-child(-n+6) .file-card-back {
    top: -150px; /* Adjust as needed, e.g., shift down */
}

/* Third row (cards 7, 8, 9) */
.file-card.flipped:nth-child(n+7):nth-child(-n+9) .file-card-back {
    top: -200px; /* Adjust as needed, e.g., shift further */
}


			.files-section h2{
		font-size: 28px;
	}
	.files-section h3 {
	font-size: 18px;
	
}
}
@media (max-width: 630px) {
  	.files-section h2{
		font-size: 26px;
		margin-bottom: 10px;
	}
	
	.files-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 410px; /* 200px * 2 + 10px */
  }
  .file-card.flipped:nth-child(odd) .file-card-back {
    left: 0; /* Left column stays put */
  }
  .file-card.flipped:nth-child(even) .file-card-back {
    left: -150px; /* Shift right-side cards */
  }
	/* Top row (1st row: cards 1, 2) */
.file-card.flipped:nth-child(-n+3) .file-card-back {
    top: -150px !important; /* Adjust as needed, e.g., keep in place */
}

/* Second row (cards 3, 4) */
.file-card.flipped:nth-child(n+3):nth-child(-n+4) .file-card-back {
    top: -150px; /* Adjust as needed, e.g., shift down */
}

/* Third row (cards 5, 6) */
.file-card.flipped:nth-child(n+5):nth-child(-n+6) .file-card-back {
    top: -200px; /* Adjust as needed, e.g., shift further */
}
/* Third row (cards 7, 8) */
.file-card.flipped:nth-child(n+7):nth-child(-n+8) .file-card-back {
    top: -200px; /* Adjust as needed, e.g., shift further */
}
	/* Third row (cards 9, 10) */
.file-card.flipped:nth-child(n+9):nth-child(-n+10) .file-card-back {
    top: -200px; /* Adjust as needed, e.g., shift further */
}
/* Fourth row (cards 11, 12) */
.file-card.flipped:nth-child(11) .file-card-back {
    top: -200px; /* Adjust as needed, e.g., shift furthest */
}
	.file-card.flipped:nth-child(12) .file-card-back {
    top: -200px; /* Adjust as needed, e.g., shift furthest */
}
}

@media (max-width: 420px) {
.files-section h2{
		font-size: 22px;
	}
.files-section h3 {
	    font-size: 16px;
		
}
  .files-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 370px; /* 180px * 2 + 10px */
    gap: 10px;
  }
  .file-card {
    width: 180px; /* Shrink fronts to fit two columns */
    height: 100px;
  }
  .file-card.flipped:nth-child(odd) .file-card-back {
    left: 0; /* Left column */
  }
  .file-card.flipped:nth-child(even) .file-card-back {
    left: -170px; /* Right column */
  }
}
/* Switch to single column at 390px */
@media (max-width: 390px) {
  .files-grid {
    grid-template-columns: 1fr;
    max-width: 200px; /* Back to original front width */
  }
  .file-card {
    width: 200px; /* Restore front size */
    height: 100px;
  }
    .file-card.flipped:nth-child(odd) .file-card-back {
    left: -75px; /* Left column */
  }
  .file-card.flipped:nth-child(even) .file-card-back {
    left: -75px; /* Right column */
  }
}
/* Update 360px to match 390px—remove old offset */
@media (max-width: 360px) {
  .files-grid {
    grid-template-columns: 1fr;
    max-width: 200px;
  }
  .file-card {
    width: 200px;
    height: 100px;
  }
  .file-card.flipped .file-card-back {
    width: 300px; /* Match your adjustment */
  }
  .file-card.flipped:nth-child(odd) .file-card-back,
  .file-card.flipped:nth-child(even) .file-card-back {
    left: -50px; /* Match your adjustment */
    transform: rotateY(0deg); /* Remove translateX since left is set */
  }
}
@media (max-width: 320px) {
  .files-grid {
    grid-template-columns: 1fr;
    max-width: 200px;
  }
  .file-card {
    width: 200px;
    height: 100px;
  }
}





/*----------OS Flip Card Section ------------------------------------------------------------------*/



.OS-container {
  width: 100%;
  height: auto;
  background: linear-gradient(to bottom left, #333 25%, #000 75%);
  padding: 60px 0 60px 0;
  text-align: center;
}

.OS-container h2 {
  font-size: 40px;
	font-weight: bolder;
  color: #fff;
  font-family: OratorStdMedium;
  margin: 0px 20px 0px 20px;
  letter-spacing: -3px;
}

.OS-container h2 span {
  color: #09c;
}
.OS-container h3 {
  font-size: 24px;
	font-weight: bold;
  color: #999;
  font-family: candara;
  margin: 0px 20px 40px 20px;
}
.OS-flip-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 960px; /* 6 cards * 130px + 5 * 20px gaps = 880px + padding */
  margin: 0 auto;
  padding: 20px;
}

.OS-flip-card {
  position: relative;
  width: 130px; /* Static 130px front */
  height: 130px;
  perspective: 1000px;
  z-index: 1; /* Base z-index */
}

.OS-flip-card:hover {
  z-index: 10; /* Elevate on hover—fixes overlap */
}

.OS-flip-front,
.OS-flip-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Lock both to 130px initially */
  backface-visibility: hidden;
  transition: transform 0.6s ease, width 0.6s ease, left 0.6s ease; /* Add left to transition */
  border: 1px solid #fff;
  border-radius: 10px;
  box-sizing: border-box;
}

.OS-flip-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom left, #333 25%, #000 75%);
  transform: rotateY(0deg);
	z-index: 2;
}
.OS-flip-front h4 {
  color: #999999;
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0 0;
 
  font-family: Candara;
}
.OS-flip-front img {
   width: 50px;
  height: 50px;
  object-fit: contain; /* Ensure full image shows */
	   filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
  transition: filter 0.3s ease;

}

.OS-flip-back {
  background: linear-gradient(to bottom left, #666 25%, #222 75%);
  transform: rotateY(180deg);
  padding: 10px;
  text-align: center;
  color: #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Contain content during flip */
  postion: absolute;
}


.OS-flip-card:hover .OS-flip-front {
  transform: rotateY(-180deg);
}

.OS-flip-card:hover .OS-flip-back {
  transform: rotateY(0deg);
  width: 350px;
  height: auto; /* Auto height applies post-flip */
}
.OS-flip-card:nth-child(1):hover .OS-flip-back {top: -120px;}
.OS-flip-card:nth-child(2):hover .OS-flip-back {top: -120px;}
.OS-flip-card:nth-child(3):hover .OS-flip-back {top: -120px;}
.OS-flip-card:nth-child(4):hover .OS-flip-back {top: -120px;}
.OS-flip-card:nth-child(5):hover .OS-flip-back {top: -120px;}
.OS-flip-card:nth-child(6):hover .OS-flip-back {left: -220px; top: -120px;}



.OS-small-logo {
  width: 0px;
  height: 0px;
  margin-bottom: 0px;
  position: relative;
  top: 0; /* Lock position */
  transition: none; /* No transition on logo—prevents jump */
}

.OS-flip-back h4 {
  color: #09C;
  font-size: 18px;
  font-weight: bold;
  font-family: candara;
  margin: 10px 0 10px;
}

.OS-flip-back p {
  font-size: 16px;
  font-family: Candara;
  letter-spacing: 2px;
  margin: 0 0 10px 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1020px) { /* Switch to 2 rows, 3 cards each */
  .OS-flip-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    max-width: 510px; /* 3 cards * 130px + 2 * 20px gaps = 430px + padding */
  }

  .OS-flip-card {
    width: 130px; /* Stay at 130px */
    height: 130px;
    flex: 0 0 130px; /* Fixed width—no stretching */
  }

  .OS-flip-card:hover .OS-flip-back {
    width: 350px;
    left: 0; /* Centered—no shift needed */
  }

  .OS-flip-card:nth-child(6):hover .OS-flip-back {
    left: 0; /* Reset 6th card shift */
  }
}

@media (max-width: 890px) { /* Adjust back positions to fix overflow */
  .OS-flip-row {
    gap: 15px;
    max-width: 495px; /* 3 cards * 130px + 2 * 15px gaps = 420px + padding */
  }

  .OS-flip-card {
    width: 130px;
    height: 130px;
    flex: 0 0 130px;
  }
	.OS-container h2 {
  font-size: 36px;

}

  /* Specific card back adjustments at 890px */
  .OS-flip-card:nth-child(1):hover .OS-flip-back,
  .OS-flip-card:nth-child(4):hover .OS-flip-back {
    left: 0; /* Flip right—no shift */
  }

  .OS-flip-card:nth-child(2):hover .OS-flip-back {
    left: -110px; /* Center on screen—half back width (350px / 2 = 175px) */
  }

  .OS-flip-card:nth-child(3):hover .OS-flip-back {
    left: -220px; /* Shift left—right edge aligns with front’s right */
  }

  .OS-flip-card:nth-child(5):hover .OS-flip-back {
    left: -110px; /* Center on screen—half back width */
  }

  .OS-flip-card:nth-child(6):hover .OS-flip-back {
    left: -220px; /* Shift left—right edge aligns with front’s right */
  }
}
@media (max-width: 768px) {
.OS-container h2 {
  font-size: 30px;
}
.OS-container h3 {
  font-size: 22px;
	font-weight: normal;
  font-family: candara;
}

  .OS-flip-card {   
    -webkit-user-select: none; /* Prevent text selection */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .OS-flip-card.flipped {
    z-index: 10; /* Lift entire flipped card above others */
  }
  .OS-flip-card.flipped .OS-flip-front {
    z-index: 1; /* Front drops below back */
    transform: rotateY(-180deg);
  }
  .OS-flip-card.flipped .OS-flip-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 */
  }
	  .OS-flip-card.flipped:nth-child(1) .OS-flip-back {top: -150px;}
	.OS-flip-card.flipped:nth-child(2) .OS-flip-back {top: -150px;}
	.OS-flip-card.flipped:nth-child(3) .OS-flip-back {top: -150px;}
}
@media (max-width: 600px){
	.OS-container h2 {
  font-size: 26px;
}
.OS-container h3 {
  font-size: 18px;

}
}












@media (max-width: 449px) {
.OS-container h2 {
    font-size: 24px;
}
.OS-container h3 {
    font-size: 17px;

}
  .OS-flip-card.flipped:nth-child(1) .OS-flip-back {
    left: -40px;
	  top: -100px;
  }
  .OS-flip-card.flipped:nth-child(2) .OS-flip-back {
    left: -180px;
	  top: -100px;
  }

  .OS-flip-card.flipped:nth-child(3) .OS-flip-back {
    left: -40px;
	  top: -100px;
  }
  .OS-flip-card.flipped:nth-child(4) .OS-flip-back {
    left: -180px;
	  top: -100px;
  }
  .OS-flip-card.flipped:nth-child(5) .OS-flip-back {
    left: -40px;
	  top: -150px;
  }
  .OS-flip-card.flipped:nth-child(6) .OS-flip-back {
    left: -180px;
	  top: -150px;
  }

	}
@media (max-width: 375px) {
  .OS-flip-card.flipped .OS-flip-back {
    width: 300px; /* Match your adjustment */
  }
  .OS-flip-card.flipped:nth-child(1) .OS-flip-back {
    left: -10px;
  }
  .OS-flip-card.flipped:nth-child(2) .OS-flip-back {
    left: -160px;
  }
  .OS-flip-card.flipped:nth-child(3) .OS-flip-back {
    left: -10px;
  }
  .OS-flip-card.flipped:nth-child(4) .OS-flip-back {
    left: -160px;
  }
  .OS-flip-card.flipped:nth-child(5) .OS-flip-back {
    left: -10px;
  }
  .OS-flip-card.flipped:nth-child(6) .OS-flip-back {
    left: -160px;
  }
}
@media (max-width: 375px) { /* Shrink backs only here */
.OS-flip-card:hover .OS-flip-back {
    width: 300px;
  }
	.OS-flip-card:nth-child(1):hover .OS-flip-back {
    left: -15px; /* Center on screen—half back width (350px / 2 = 175px) */
  }

  .OS-flip-card:nth-child(2):hover .OS-flip-back {
    left: -155px; /* Shift left—right edge aligns with front’s right */
  }

  .OS-flip-card:nth-child(3):hover .OS-flip-back {
    left: -15px; /* Center on screen—half back width */
  }

  .OS-flip-card:nth-child(4):hover .OS-flip-back {
    left: -155px; /* Shift left—right edge aligns with front’s right */
  }
.OS-flip-card:nth-child(5):hover .OS-flip-back {
    left: -15px; /* Shift left—right edge aligns with front’s right */
  }
	.OS-flip-card:nth-child(6):hover .OS-flip-back {
    left: -155px; /* Shift left—right edge aligns with front’s right */
  }
	.OS-container h2 {
  font-size: 26px;
  color: #fff;
  font-family: OratorStdMedium;
  margin: 60px 20px 40px 20px;
}
}
@media (max-width: 320px) { /* Still 2x3—tighten gap */
  .OS-flip-row {
    gap: 8px;
    max-width: 472px; /* 3 cards * 130px + 2 * 8px gaps = 406px + padding */
  }

  .OS-flip-card {
    width: 130px;
    height: 130px;
    flex: 0 0 130px;
  }

  .OS-flip-card:hover .OS-flip-back {
    width: 300px;
    left: 0;
  }
}

/*----Legendary Wins | Avoidable Disasters Section ----------------------------------------------*/



.stories-section {
  background: #ffffff;
  padding: 30px 0;
  text-align: center;
}

.stories-section h2 {
  font-size: 40px;
  font-weight: bolder;
  font-family: 'OratorStdMedium', sans-serif;
  color: #333333;
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: 20px;
  letter-spacing: -3px;
}
.stories-section h2 span {
  color: #09c;
}

.stories-container {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 100px;
  overflow: visible;
}

.wins-container, .horror-container {
  flex: 1;
  max-width: 430px;
}

.wins-container h3 {
  font-size: 28px;
   font-family: 'OratorStdMedium', sans-serif;
  color: #09c;
  margin-bottom: 10px;
	letter-spacing: -2px;
}
.wins-container h4 {
	font-size: 24px;
	color: #999999;
	margin-top:0;
	font-family: 'Open Sans Condensed', sans-serif;
}

.horror-container h3 {
  font-size: 28px;
   font-family: 'OratorStdMedium', sans-serif;
  color: #F36D26;
  margin-bottom: 10px; /* Remove extra 20px */
  letter-spacing: -2px;
}
.horror-container h4 {
	color: #999999;
	font-size: 24px;
	margin-top:0;
	font-family: 'Open Sans Condensed', sans-serif;
}


.wins-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 430px; /* 100px * 4 + 20px * 3 */
  margin: 0 auto;
}

.horror-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 440px; /* 210px * 2 + 20px */
  margin: 0 auto;
}

.story-card {
  position: relative;
  width: 100%;
}

.win-card {
  height: 100px; /* Match front */
}

.horror-card {
  height: 70px; /* Adjusted to 70px */
}

.win-card .card-front {
  width: 100px;
  height: 100px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /*-- Dark Color Drop shadow --*/
}

.horror-card .card-front {
  width: 210px;
  height: 70px; /* 4 * 70px + 20px * 3 = 340px */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /*-- Dark Color Drop shadow --*/
}

.card-front, .card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  backface-visibility: hidden;
  transition: transform 0.6s ease, width 0.6s ease, height 0.6s ease, left 0.6s ease;
  overflow: hidden;
  box-sizing: border-box;
}

.win-card .card-front {
  display: flex;
  align-items: center; /* Vertically center icon and title */
  justify-content: flex-start; /* Pin icon left */
  height: 100px;
  padding-left: 10px; /* Small padding from left edge */
}

.horror-card .card-front {
  display: flex;
  align-items: center; /* Vertically center icon and title */
  justify-content: flex-start; /* Pin icon left */
  height: 70px;
  padding-left: 10px; /* Match Wins padding */
}
.card-front .story-icon,
.card-front .horror-icon {
  margin-right: 10px; /* Space between icon and title */
}

.story-icon {
  width: 80px;
  height: 80px;
}

.horror-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.card-front h4 {
  font-size: 18px;
  font-family: candara;
  color: #333333;
  margin: 0; /* Remove default margins */
  flex-grow: 1; /* Fill remaining space */
  text-align: center; /* Center text horizontally within its space */
  padding: 0px 10px 0 0;
}
.card-back {
  transform: rotateY(180deg);
  z-index: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.horror-container .card-back h5 {
  font-size: 18px;
  font-family: 'Open Sans Condensed', sans-serif;
  color: #F36D26;
  margin-bottom: 0px;
	margin-top: 5px;
}
.wins-container .card-back h5 {
  font-size: 18px;
  font-family: 'Open Sans Condensed', sans-serif;
  color: #09c;
  margin-bottom: 0px;
	margin-top: 5px;
}

.card-back p {
  font-size: 16px;
  font-family: candara;
  color: #333333;
  line-height: 1.5;
}

/* Flip Effect */
.story-card:hover .card-front {
  transform: rotateY(-180deg);
  z-index: 1;
}

.story-card:hover .card-back {
  transform: rotateY(0deg);
  width: 350px;
  height: auto;
  z-index: 10;
  left: 0; /* Default for wins */
}
/* Specific fix for horror cards */
.horror-card:hover .card-back {
  left: -140px; /* Pull left by 350px - 210px */
}

.clients-cta-button {
  display: block;
  font-size: 20px;
  font-family: candara;
  color: #ffffff;
  background: #09c;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 80px auto 40px;
  max-width: 300px;
  transition: background 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /*-- Dark Color Drop shadow --*/
}

.clients-cta-button:hover {
  background: #07B2F5;
}

/* New breakpoint for ~1370px issue */
@media (max-width: 1370px) {
  .horror-card:hover .card-back {
    left: -140px; /* Ensure back aligns with front’s right edge */
  }
}
/* Stacking at 988px (unchanged) */
@media (max-width: 988px) {
  .stories-container {
    flex-direction: column;
    gap: 30px;
  }
  .wins-container, .horror-container {
    max-width: 100%;
  }
  .wins-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 430px;
  }
  .horror-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 440px;
  }
  .horror-card:hover .card-back {
    left: -140px;
  }
}

/* Breakpoint for 960px fixes */
@media (max-width: 960px) {
	.stories-section h2 {
  font-size: 38px;
 
}
  /* Wins: Right column aligns right edge, left column stays default */
  .win-card:nth-child(4):hover .card-back, /* Allstate */
  .win-card:nth-child(8):hover .card-back, /* Pfizer */
  .win-card:nth-child(12):hover .card-back { /* KSL */
    left: -250px; /* 350px back - 100px front = 250px shift left */
  }
  /* Horrors: Left column aligns left edge, right column aligns right edge */
  .horror-card:nth-child(odd):hover .card-back {
    left: 0; /* Left column (Apple, Friend, etc.)—left edge aligns */
  }
  .horror-card:nth-child(even):hover .card-back {
    left: -140px; /* Right column (Dell, DIY, etc.)—right edge aligns */
  }
}
/* 786px fix (unchanged) */
@media (max-width: 786px) {
  .win-card:nth-child(3):hover .card-back, /* Disney */
  .win-card:nth-child(7):hover .card-back, /* Chiefs */
  .win-card:nth-child(11):hover .card-back { /* DOJ */
    left: -125px;
  }	
}
@media (max-width: 600px){
	.stories-section h2 {
  font-size: 32px;
		margin-left: 20px;
		margin-right: 20px;
  
}
	.wins-container h3 {
  font-size: 22px;
   font-family: 'OratorStdMedium', sans-serif;
  color: #09c;
  margin-bottom: 10px;
}

.horror-container h3 {
  font-size: 22px;
   font-family: 'OratorStdMedium', sans-serif;
  color: #F36D26;
  margin-bottom: 10px; /* Remove extra 20px */
}
}
/* Updated 480px breakpoint */
@media (max-width: 480px) {
	.stories-section h2 {
  font-size: 28px;
 margin-left: 15px;
  margin-right: 15px;
}

  .wins-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 220px; /* 100px * 2 + 20px */
  }
  .horror-grid {
    grid-template-columns: 1fr;
    max-width: 210px;
  }
	.story-card:not(.flipped) .card-back {
    width: 100% !important;
    left: 0 !important;
    position: absolute !important;
    transform: rotateY(180deg) !important;
    z-index: 1 !important;
  }
}

@media (max-width: 768px) {
  .story-card {  
    -webkit-user-select: none; /* Prevent text selection */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .story-card:hover .card-front,
  .story-card:hover .card-back {
    transform: none; /* Disable hover on mobile */
  }
  .story-card.flipped .card-front {
    z-index: 1; /* Front drops below back */
    transform: rotateY(-180deg);
  }
  .story-card.flipped .card-back {
    z-index: 10; /* Back above front */
    transform: rotateY(0deg);
    width: 350px; /* Match hover base size */
    height: auto; /* Match hover base size */
    
  }
}

	@media (max-width: 960px) {
  .win-card.flipped:nth-child(4) .card-back,
  .win-card.flipped:nth-child(8) .card-back,
  .win-card.flipped:nth-child(12) .card-back {
    left: -250px; /* Right column shift */
  }
  .horror-card.flipped:nth-child(odd) .card-back {
    left: 0; /* Left column stays put */
  }
  .horror-card.flipped:nth-child(even) .card-back {
    left: -140px; /* Right column shift */
  }
}
@media (max-width: 786px) {
  .win-card.flipped:nth-child(3) .card-back,
  .win-card.flipped:nth-child(7) .card-back,
  .win-card.flipped:nth-child(11) .card-back {
    left: -125px; /* Adjust third column */
  }
}
@media (max-width: 480px) {
 .win-card.flipped:nth-child(1) .card-back,
  .win-card.flipped:nth-child(3) .card-back,
  .win-card.flipped:nth-child(5) .card-back,
	.win-card.flipped:nth-child(7) .card-back,
	.win-card.flipped:nth-child(9) .card-back,
	.win-card.flipped:nth-child(11) .card-back{
    left: -60px; /* Adjust left column win cards left / right */
}
	.win-card.flipped:nth-child(2) .card-back,
  .win-card.flipped:nth-child(4) .card-back,
  .win-card.flipped:nth-child(6) .card-back,
	.win-card.flipped:nth-child(8) .card-back,
	.win-card.flipped:nth-child(10) .card-back,
	.win-card.flipped:nth-child(12) .card-back{
    left: -180px; /* Adjust right column Wind cards left / right */
}
	.horror-card.flipped:nth-child(1) .card-back,
  .horror-card.flipped:nth-child(2) .card-back,
  .horror-card.flipped:nth-child(3) .card-back,
	.horror-card.flipped:nth-child(4) .card-back,
	.horror-card.flipped:nth-child(5) .card-back,
	.horror-card.flipped:nth-child(6) .card-back,
	.horror-card.flipped:nth-child(7) .card-back,
	.horror-card.flipped:nth-child(8) .card-back{
    left: -70px; /* Adjust Horror card left / right */
}
	.win-card.flipped:nth-child(9) .card-back,
  .win-card.flipped:nth-child(10) .card-back{
    top: -145px; /* Adjust cards 9 and 10 up */
}
	.win-card.flipped:nth-child(11) .card-back,
  .win-card.flipped:nth-child(12) .card-back{
    top: -245px; /* adjust cards 11 and 12 up */
}
	.horror-card.flipped:nth-child(6) .card-back{
    top: -120px; /* Adjust card 6 up */
}
	.horror-card.flipped:nth-child(7) .card-back{
    top: -250px; /* Adjust card 7 up */
}
	.horror-card.flipped:nth-child(8) .card-back{
    top: -280px; /* Adjust car 8 up */
}
}
@media (max-width: 360px) {
  .story-card.flipped .card-back {
    width: 320px; /* Match your adjustment */
    height: auto;
  }
	 .win-card.flipped:nth-child(1) .card-back,
  .win-card.flipped:nth-child(3) .card-back,
  .win-card.flipped:nth-child(5) .card-back,
	.win-card.flipped:nth-child(7) .card-back,
	.win-card.flipped:nth-child(9) .card-back,
	.win-card.flipped:nth-child(11) .card-back{
    left: -50px; /* Adjust third column */
}
	.win-card.flipped:nth-child(2) .card-back,
  .win-card.flipped:nth-child(4) .card-back,
  .win-card.flipped:nth-child(6) .card-back,
	.win-card.flipped:nth-child(8) .card-back,
	.win-card.flipped:nth-child(10) .card-back,
	.win-card.flipped:nth-child(12) .card-back{
    left: -170px; /* Adjust third column */
}
	.horror-card.flipped:nth-child(1) .card-back,
  .horror-card.flipped:nth-child(2) .card-back,
  .horror-card.flipped:nth-child(3) .card-back,
	.horror-card.flipped:nth-child(4) .card-back,
	.horror-card.flipped:nth-child(5) .card-back,
	.horror-card.flipped:nth-child(6) .card-back,
	.horror-card.flipped:nth-child(7) .card-back,
	.horror-card.flipped:nth-child(8) .card-back{
    left: -55px; /* Adjust third column */
}
}
@media (max-width: 340px) {
  .story-card.flipped .card-back {
    width: 310px; /* Match your adjustment */
    height: auto;
  }
	 .win-card.flipped:nth-child(1) .card-back,
  .win-card.flipped:nth-child(3) .card-back,
  .win-card.flipped:nth-child(5) .card-back,
	.win-card.flipped:nth-child(7) .card-back,
	.win-card.flipped:nth-child(9) .card-back,
	.win-card.flipped:nth-child(11) .card-back{
    left: -45px; /* Adjust third column */
}
	.win-card.flipped:nth-child(2) .card-back,
  .win-card.flipped:nth-child(4) .card-back,
  .win-card.flipped:nth-child(6) .card-back,
	.win-card.flipped:nth-child(8) .card-back,
	.win-card.flipped:nth-child(10) .card-back,
	.win-card.flipped:nth-child(12) .card-back{
    left: -165px; /* Adjust third column */
}
	.horror-card.flipped:nth-child(1) .card-back,
  .horror-card.flipped:nth-child(2) .card-back,
  .horror-card.flipped:nth-child(3) .card-back,
	.horror-card.flipped:nth-child(4) .card-back,
	.horror-card.flipped:nth-child(5) .card-back,
	.horror-card.flipped:nth-child(6) .card-back,
	.horror-card.flipped:nth-child(7) .card-back,
	.horror-card.flipped:nth-child(8) .card-back{
    left: -50px; /* Adjust third column */
}
}
	
	
/*-----------Emergency Section ---------------------------------------------------------------*/

.wrapper-emergency-outside {
    display: flex;
    width: 100%;
    height: auto;
    background: linear-gradient(to bottom left, #333 25%, #000 75%);
    clear: both;
    overflow: hidden;
    padding: 10px 0 10px 0;
}

.wrapper-emergency-inside {
    display: flex;
    justify-content: center; /* Center children horizontally */
    width: 100%;
    max-width: 1200px; /* Optional: constrain width for large screens */
    margin: 0 auto; /* Center the wrapper itself */
}

.emergency-title {
    margin: auto;
    width: 70%;
    height: auto;
}

.emergency-left {
    width: 65%;
    height: auto;
    text-align: center;
    padding-bottom: 50px;
}
.emergency-left h2 {
    font-size: 40px;
    font-family: OratorStdMedium;
    color: #fff;
    text-align: center;
	letter-spacing: -3px;
}

.emergency-left h2 span {
    color: #09c;
}
.emergency-left h3 {
    font-size: 45px;
    font-family: OratorStdMedium;
    color: #fff;
    text-align: center;
}

.emergency-left h3 span {
    color: #09c;
}

.emergency-left p {
    font-size: 20px;
    color: #eee;
    margin-bottom: 50px;
	font-family: candara;
}

.emergency-cta-button {
    text-align: center;
    padding: 10px 20px 12px 20px;
    background-color: #F36D26;
    border-radius: 8px;
    font-family: candara;
    font-size: 20px;
    font-weight: 900;
    color: white;
    text-decoration: none;
    box-shadow:
        0 0 8px rgba(255,255,255,0.8),
        0 0 16px rgba(255,255,255,0.8);
}

.emergency-left a:hover {
    opacity: .6;
}

.emergency-right {
    width: 35%;
    height: 350px;
    display: flex;
    align-items: center; /* Vertically center the image */
    justify-content: center; /* Horizontally center the image */
}

.emergency-right img {
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 1421px) {
    .emergency-left {
        width: 60%;
    }
}

@media screen and (max-width: 1058px) {
    .emergency-left h3 {
        font-size: 35px;
    }
    .emergency-left p {
        font-size: 16px;
    }
}

@media screen and (max-width: 962px) {
	.emergency-left h2 {
    font-size: 30px;
}
    .wrapper-emergency-inside {
        width: 90%;
        margin: auto;
        flex-direction: column; /* Stack vertically */
        align-items: center; /* Center children */
    }
    .emergency-left {
        width: 95%;
        margin: auto;
    }
    .emergency-right {
        display: none;
    }
}

@media screen and (max-width: 664px) {
		.emergency-left h2 {
    font-size: 26px;
}
    .wrapper-emergency-inside {
        width: 100%;
    }
    .emergency-left {
        width: 90%;
    }
}

@media screen and (max-width: 540px) {
		.emergency-left h2 {
    font-size: 22px;
}
    .emergency-left h3 {
        font-size: 25px;
    }
}

	
	
	/*---- How Fast Can You Recover My Data ----------------------------------------------*/



.speed-section {
  background: #ffffff;
  padding: 50px 0;
  text-align: center;
  width: 100%;
  margin-bottom: 0 auto;
}

.speed-section h2 {
  font-size: 40px;
  font-weight: bolder;
  font-family: 'OratorStdMedium', sans-serif;
  color: #333333;
  margin: 0 auto;
  padding: 0 20px 0 20px;
  letter-spacing: -3px;
}

.speed-section h2 span {
  color: #09c;
}
.speed-section h3 {
  font-size: 24px;
  font-weight: bolder;
  font-family: candara;
  color: #999;
  margin: 0 auto;
  padding: 0 20px 30px 20px;
}

.speed-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1200px; /* 350px * 3 + 20px * 2 */
  margin: 0 auto;
  flex-wrap: wrap;
}

.speed-card {
  position: relative;
  width: 350px;
  height: 450px;
  perspective: 1000px;
}

.speed-card.emergency .speed-card-front {
  background: #F36D26;
}

.speed-card.priority .speed-card-front {
  background: #09C;
}

.speed-card.standard .speed-card-front {
  background: #999;
}

.speed-card-front,
.speed-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Added drop shadow */
}

.speed-card-front {
  transform: rotateY(0deg);
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /*-- Dark Color Drop shadow --*/
}

.speed-icon {
  width: 75px;
  height: 75px;
  margin-bottom: 15px;
}

.speed-card-front h2 {
  font-size: 28px;
  font-family: 'OratorStdMedium', sans-serif;
  color: #fff;
  margin: 0 0 5px;
}

.speed-card-front h3 {
  font-size: 20px;
  font-family: 'OratorStdMedium', sans-serif;
  color: #333;
  margin: 0 0 15px;
}

.speed-card-front ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  text-align: left;
}

.speed-card-front li {
  font-size: 20px;
  font-family: 'Candara', sans-serif;
  color: #fff;
  margin-bottom: 10px;
}

.speed-card-back {
  transform: rotateY(180deg);
  padding: 20px;
  background: linear-gradient(to right, #eee, #fff); /*-- card backgroudnd --*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.speed-card-back h4 {
  font-size: 20px;
  font-family: candara;
  color: #09C;
  margin: 0 0 15px;
}

.speed-card-back p {
  font-size: 16px;
  font-family: 'Candara', sans-serif;
  color: #333;
  line-height: 1.5;
  margin: 0 0 20px; /* Space before CTAs */
  text-align: center;
}

.speed-card-back .speed-cta-top {
  font-size: 18px;
  font-family: 'Candara', sans-serif;
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  display: block;
  transition: background 0.3s ease;
}
.speed-card.emergency .speed-card-back .speed-cta-top {
  background: #F36D26; /* Darker orange on hover */
}
.speed-card.emergency .speed-card-back .speed-cta-top:hover {
  background: #d35e20; /* Darker orange on hover */
}

.speed-card.priority .speed-card-back .speed-cta-top {
  background: #09C; /* Blue for Standard */
}

.speed-card.priority .speed-card-back .speed-cta-top:hover {
  background: #0870a3; /* Darker blue on hover */
}
.speed-card.standard .speed-card-back .speed-cta-top {
  background: #999; /* Blue for Standard */
}

.speed-card.standard .speed-card-back .speed-cta-top:hover {
  background: #666; /* Darker blue on hover */
}

.speed-card:hover .speed-card-front {
  transform: rotateY(-180deg);
}

.speed-card:hover .speed-card-back {
  transform: rotateY(0deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /*-- Dark Color Drop shadow --*/
}

/* Mobile Click-to-Flip Rules */
@media (max-width: 768px) {
  .speed-card {   
    -webkit-user-select: none; /* Prevent text selection */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .speed-card:hover .speed-card-front,
  .speed-card:hover .speed-card-back {
    transform: none; /* Disable hover on mobile */
  }
  .speed-card.flipped .speed-card-front {
    z-index: 1; /* Front drops below back */
    transform: rotateY(-180deg);
  }
  .speed-card.flipped .speed-card-back {
    z-index: 10; /* Back above front */
    transform: rotateY(0deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
  .speed-grid {
    max-width: 720px;
  }
}
@media (max-width: 790px) {
  .speed-section h2 {
    font-size: 38px;
  }
}
@media (max-width: 720px) {
  .speed-grid {
    flex-direction: column;
    align-items: center;
    max-width: 350px;
  }
}
@media (max-width: 640px) {
  .speed-section h2 {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  .speed-section h2 {
    font-size: 24px;
  }
}
@media (max-width: 400px) {
  .speed-section {
    padding: 20px 0;
  }
  .speed-card {
    width: 300px;
    height: 350px;
  }
  .speed-card-front h2 {
    font-size: 22px;
  }
  .speed-card-front h3 {
    font-size: 18px;
  }
  .speed-card-front li {
    font-size: 16px;
  }
  .speed-card-back h4 {
    font-size: 20px;
  }
  .speed-card-back p {
    font-size: 14px;
  }
}
@media (max-width: 320px) {
  .speed-card {
    width: 280px;
    height: 320px;
  }
}
	



	
	
/*-----Manufacture Section ----------------------------------------------------------------*/
/* Brands Section - 40 Cards with CSS Scroll */
.brands-section {
  background: linear-gradient(to right, #000000, #333333);
  padding: 80px 0 0;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1000;
	overflow: hidden;
}

.brands-section h2 {
  font-size: 40px;
  font-weight: bolder;
  font-family: 'OratorStdMedium', sans-serif;
  color: #ffffff;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 0;
  letter-spacing: -3px;
}

.brands-section h2 span {
  color: #09c;
}
.brands-section h3 {
  font-size: 24px;
	font-weight: bold;
  font-family: candara;
  color: #999;
  margin-bottom: 50px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: -20px;
}
.brands-wrapper {
  width: 100%;
  margin: 0 auto;
}

.carousel-container {
  width: 100%;
  position: relative;
  height: 360px;
}

.carousel-inner {
  width: 100%;
}

.brands-grid {
  display: flex;
  width: max-content; /* Replaces hardcoded width */
  will-change: transform;
  backface-visibility: hidden;
}

.brand-card {
  flex: 0 0 auto; /* Prevents shrinking, replaces inline-block */
  width: 200px;
  height: 200px;
  margin-right: 30px;
  perspective: 1000px;
}
 .brand-card:nth-child(odd):hover .brand-card-back {
    top: -60px; 
}
 .brand-card:nth-child(even):hover .brand-card-back {
    top: -50px; 
}
.brand-card.flipped .brand-card-front {
  transform: rotateY(-180deg);
  z-index: 1;
}

.brand-card.flipped .brand-card-back {
  transform: rotateY(0deg);
  width: 350px;
  height: auto;
  position: absolute;
  left: 0;
  z-index: 1001;
  box-shadow: 0 0 20px rgba(60, 131, 196, 0.7);
	overflow-y: visible;
}

.brand-card.flipped:nth-child(4n) .brand-card-back {
  left: -150px;
}
/* Flip card styles remain the same */
.brand-card-front,
.brand-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(60, 131, 196, 0.5);
  backface-visibility: hidden;
  transition: transform 0.6s ease, width 0.6s ease, height 0.6s ease, left 0.6s ease;
  overflow: hidden;
  box-sizing: border-box;
}
.brand-card.flipped {
  z-index: 1003; /* Higher than hover (1002) and default cards */
}

.brand-card-front {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(0deg);
  z-index: 2;
}

.brand-icon {
  width: 160px;
  height: 160px;
}

.brand-card-back {
  transform: rotateY(180deg);
  z-index: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.brand-card-back .small-icon {
  width: 75px;
  height: 75px;
  margin-top: 0;
  margin-bottom: 0;
}

.brand-card-back h4 {
  color: #09c;
  font-size: 18px;
  font-weight: 700;
  font-family: candara;
  max-width: 320px;
  margin: 0 0 20px;
  white-space: normal;
}

.brand-card-back p {
  font-size: 16px;
  font-family: candara;
  color: #333;
  line-height: 1.4;
  margin: 0;
  padding: 0 10px;
  max-width: 320px;
  white-space: normal;
  letter-spacing: 1px;
}

.brand-card:hover {
  z-index: 1002;
}

.brand-card:hover .brand-card-front {
  transform: rotateY(-180deg);
  z-index: 1;
}

.brand-card:hover .brand-card-back {
  transform: rotateY(0deg);
  width: 350px;
  height: auto;
  position: absolute;
  left: 0;
  z-index: 1001;
  box-shadow: 0 0 20px rgba(60, 131, 196, 0.7);
	overflow-y: visible;
}

.brand-card:nth-child(4n):hover .brand-card-back {
  left: -150px;
}

.carousel-container:hover .brands-grid {
  /* No animation pause needed; JS will handle */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .brands-section h2 {
    font-size: 40px;
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 950px) {
  .brands-section h2 {
    font-size: 30px;
}
.brands-section h3 {
  font-size: 22px;
}
}
@media (max-width: 800px) {
  .brands-section h2 {
    font-size: 26px;
  }
  .brands-section h3 {
    font-size: 20px;
	  font-family: candara;
	  font-weight: normal;
  
}
}
/* Disable hover flipping on mobile */
@media (max-width: 768px) {
  .brand-card:hover .brand-card-front {
    transform: rotateY(0deg);
    z-index: 2;
  }

  .brand-card:nth-child(4n):hover .brand-card-back {
    left: 0;
  }
	 .brand-card:nth-child(odd) .brand-card-back {
    top: -150px; 
}
 .brand-card:nth-child(even) .brand-card-back {
    top: -150px; 
}
}
@media (max-width: 600px) {
  .brands-section h2 {
    font-size: 24px;
	    font-size: 20px;
		padding-right: 10px;
		padding-left: 10px;
  }
	.brands-section h3 {
  font-size: 20px;
		padding-right: 10px;
		padding-left: 10px;

}
}
	@media (max-width: 420px) {
  .brands-section h2 {
    font-size: 22px;
	    font-size: 20px;
		padding-right: 10px;
		padding-left: 10px;
  }
	.brands-section h3 {
  font-size: 17px;
		padding-right: 10px;
		padding-left: 10px;

}
	}
/*-----------Industry Flip Card Section --------------------------------------------------------------*/

.industry-section {
	position: relative;
    background: #ffffff;
    padding: 60px 0;
    text-align: center;
	width: 100%;
  
	
}
.industry-section h2 {
    font-size: 40px;
    font-weight: bold;
    font-family: 'OratorStdMedium', sans-serif;
    color: #333333;
    margin: 0 auto;
	padding: 0 20px 0 20px;
    position: relative;
	letter-spacing: -3px;
}
.industry-section h2 span {
    color: #09c;
}
.industry-section h3 {
    font-size: 24px;
    font-weight: bold;
    font-family: candara;
    color: #999;
    margin: 0 auto;
    padding: 0 20px 30px 20px;
    position: relative;
   
}
/* Grid Layout */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(8, 140px);
    gap: 20px;
    justify-content: center;
    margin: 0 auto;
    z-index: 1;
	margin-left:0;
	margin-right: 0;
	overflow-x: clip; /* Safe alternative to hidden */
    flex-wrap: wrap;
	
}

/* Card Container */
.industry-card {
    position: relative;
    width: 140px;
    height: 140px;
    perspective: 1000px;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.industry-card-flipped {
    z-index: 100;

}

/* Front and Back Base Styles */
.industry-card-front,
.industry-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* 250px */
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    backface-visibility: hidden;
     transition: transform 0.6s ease, width 0.6s ease, height 0.6s ease, left 0.6s ease;
    border-radius: 8px;
   

}

/* Front Styling */
.industry-card-front {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: rotateY(0deg);
    background: #fff;
	width: 140px;
	z-index:2;
	Overflow: visible;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /*-- Dark Color Drop shadow --*/
}

.industry-icon {
    width: 60px;
    height: 60px;
	object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.industry-card-front h2 {
    font-size: 18px;
    font-weight: bold;
    font-family: candara;
    color: #09c;
    margin: 15px 10px 10px 10px;
}
.industry-card-front h4 {
    font-size: 18px;
    font-weight: bold;
    font-family: candara;
    color: #333;
    margin: 15px 10px 10px 10px;
}
/* Back Styling */
.industry-card-back {
    transform: rotateY(180deg);
    width: 250px; /* Base matches front */
    height: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    background: #fff;
	 overflow: hidden;
	z-index:1;
	box-sizing: border-box;
}

.industry-back-icon {
    width: 0px;
    height: 0px;
    margin: 0 auto 15px;
}

.industry-card-back h2 {
    font-size: 18px;
    font-weight: bold;
    font-family: candara;
    color: #333333;
    margin-bottom: 15px;
}
.industry-card-back h3 {
    font-size: 18px;
    font-weight: bold;
    font-family: candara;
    color: #09c;
    margin-bottom: 0px;
}
.industry-card-back p {
    font-size: 16px;
    font-family: candara;
    color: #333333;
    line-height: 1.4;
    flex-grow: 1;
}

/* Flip Effect with Z-Index */
.industry-card:hover {
    z-index: 100;

}

.industry-card:hover .industry-card-front {
    transform: rotateY(-180deg);
	
}

.industry-card:hover .industry-card-back {
    transform: rotateY(0deg);
    width: 350px;
    height: auto;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Top Row Cards (1,2,3,4,5,6,7,8) - Shift Up */
.industry-card:nth-child(1):hover .industry-card-back,
.industry-card:nth-child(2):hover .industry-card-back,
.industry-card:nth-child(3):hover .industry-card-back,
.industry-card:nth-child(4):hover .industry-card-back,
.industry-card:nth-child(5):hover .industry-card-back,
.industry-card:nth-child(6):hover .industry-card-back,
.industry-card:nth-child(7):hover .industry-card-back,
.industry-card:nth-child(8):hover .industry-card-back {
    top: -100px;
}

/* Bottom Row Cards (9,10,11,12) - Shift Up */
.industry-card:nth-child(9):hover .industry-card-back,
.industry-card:nth-child(10):hover .industry-card-back,
.industry-card:nth-child(11):hover .industry-card-back,
.industry-card:nth-child(12):hover .industry-card-back,
.industry-card:nth-child(13):hover .industry-card-back,
.industry-card:nth-child(14):hover .industry-card-back,
.industry-card:nth-child(15):hover .industry-card-back,
.industry-card:nth-child(16):hover .industry-card-back {
    top: -160px;
}

/* Right-Side Cards Adjustment (Columns 4, 8, 12, 16) */
.industry-card:nth-child(8n):hover .industry-card-back {
    left: -250px;
}
/* Right-Side Cards Adjustment (Columns 4, 8, 12, 16) */
.industry-card:nth-child(7):hover .industry-card-back {
    left: -180px;
}
.industry-card:nth-child(15):hover .industry-card-back {
    left: -180px;
}
@media (max-width: 1400px) {
    /* Grid Layout */
    .industry-grid {
        display: grid;
        grid-template-columns: repeat(8, 140px);
        gap: 20px;
        
    }
	  .industry-card-front,
    .industry-card-back {
        width: 100%;
        height: 100%;
    }
    .industry-card:nth-child(8n):hover .industry-card-back {
        left: -210px;
    }
    .industry-card:nth-child(7):hover .industry-card-back,   
	.industry-card:nth-child(15):hover .industry-card-back {
        left: -100px;
    }
	    .industry-card:nth-child(5):hover .industry-card-back, 
	    .industry-card:nth-child(11):hover .industry-card-back{
        left: -180px;
    }
}


/* Responsive Design */
@media (max-width: 1270px) {
    /* Grid Layout */
    .industry-grid {
        display: grid;
        grid-template-columns: repeat(6, 140px);
        gap: 20px;
       
    }
    .industry-card:nth-child(6n):hover .industry-card-back {
        left: -210px;
    }
    .industry-card:nth-child(7):hover .industry-card-back,
    .industry-card:nth-child(8):hover .industry-card-back,
	.industry-card:nth-child(9):hover .industry-card-back, 
	.industry-card:nth-child(14):hover .industry-card-back, 
	.industry-card:nth-child(15):hover .industry-card-back {
        left: 0px;
    }
	.industry-card:nth-child(5):hover .industry-card-back,
    .industry-card:nth-child(11):hover .industry-card-back {
        left: -150px;
    }
}
@media (max-width: 1000px) {
	.industry-section h2 {
    font-size: 30px;

}
	 .industry-grid {
        display: grid;
        grid-template-columns: repeat(4, 140px);
        gap: 20px;
       
    }

	   .industry-card:nth-child(1n):hover .industry-card-back {
        left: 0px !important;
    }
	
	   .industry-card:nth-child(4n):hover .industry-card-back {
        left: -210px !important;
    }
    .industry-card:nth-child(3):hover .industry-card-back,
    .industry-card:nth-child(7):hover .industry-card-back,
	.industry-card:nth-child(11):hover .industry-card-back, 
	.industry-card:nth-child(15):hover .industry-card-back {
        left: -140px !important;
    }
	
}
@media (max-width: 650px) {
    .industry-grid {
        grid-template-columns: repeat(3, 140px);
    }
	.industry-card:nth-child(1):hover  .industry-card-back,
    .industry-card:nth-child(4):hover  .industry-card-back,
	.industry-card:nth-child(7):hover  .industry-card-back, 
	.industry-card:nth-child(10):hover  .industry-card-back,
	.industry-card:nth-child(13):hover  .industry-card-back,
	.industry-card:nth-child(16):hover  .industry-card-back {
        left: 0px !important;
    }
   .industry-card:nth-child(2):hover  .industry-card-back,
    .industry-card:nth-child(5):hover  .industry-card-back,
	.industry-card:nth-child(8):hover  .industry-card-back, 
	.industry-card:nth-child(11):hover  .industry-card-back,
	.industry-card:nth-child(14):hover  .industry-card-back {
        left: -100px !important;
	}
	.industry-card:nth-child(3):hover  .industry-card-back,
    .industry-card:nth-child(6):hover  .industry-card-back,
	.industry-card:nth-child(9):hover  .industry-card-back, 
	.industry-card:nth-child(12):hover  .industry-card-back,
	.industry-card:nth-child(15):hover  .industry-card-back {
        left: -210px !important;
	}
	
}


@media (max-width: 480px) {
    .industry-grid {
        grid-template-columns: repeat(2, 140px);
       
    }
    .industry-card {
        width: 140px;
    }
    .industry-card-front {
        width: 140px;
    }
    .industry-card-back {
        max-width: 300px;
    }
    .industry-section h1 {
        font-size: 28px;
    }
    .industry-card .industry-card-back {
        max-width: 300px;
    }
    .industry-card.flipped:nth-child(odd) .industry-card-back {
        left: 0px !important;
    }
    .industry-card.flipped:nth-child(even) .industry-card-back {
        left: -160px !important;
    }
}



@media (max-width: 380px) {
    .industry-grid {
        grid-template-columns: 270px;
        width: 320px;
    }
    .industry-card {
        width: 270px;
    }
    .industry-card-front {
        width: 270px;
    }
  
    .industry-card-back {
        max-width: 270px;
    }
    .industry-section h1 {
        font-size: 26px;
    }
    .industry-card .industry-card-back {
        max-width: 270px;
    }
    .industry-card.flipped:nth-child(odd):hover .industry-card-back {
        left: -20px;
    }
	  .industry-card.flipped:nth-child(even) .industry-card-back {
        left: 0px !important;
    }
   
}


/*------------Promise Section --------------------------------------------------------------------------------------- */



.wrapper-promise-outside {
    width: 100%;
    background: linear-gradient(to left, #333436 41%, #000 100%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
	margin-top: 0;
	padding-top: 0;
	
}

.promise-left {
    width: 100%;
    max-width: 600px; 
    text-align: center;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

.promise-title h2 {
    font-size: 40px;
    color: #fff;
    font-family: 'OratorStdMedium';
    margin: 0; /* Removes potential extra top margin */
	letter-spacing: -3px;
}

.promise-title h2 span {
    color: #09c;
}

.promise-left p {
    font-size: 20px;
    color: #ccc;
    line-height: 1.6;
	margin-bottom: 10px;
	font-family: candara;
}
.about-cta-button
	{
		text-align: center;
		margin: auto;
		padding:10px 20px 12px 20px;
		background-color: #F36D26;
		border-radius: 8px;
		width: 200px;
		font-family: candara;
		font-size: 20px;
		font-weight: 900;
		color: white;
		text-decoration: none;
		box-shadow:
        0 0 8px rgba(255,255,255,0.8),
        0 0 16px rgba(255,255,255,0.8);   
	}
.promise-left a {
	margin-top: 40px;
}

.promise-left a:hover {
    opacity: 0.7;
    transform: scale(1.05);
}

.promise-right {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
	margin-top: 0;
}

.promise-right img {
    width: 100%;
    height: auto;
	display:block;
	margin-top: 0;  
}
	
	
@media screen and (max-width: 1599px) 
{

.promise-left
	{
		
		margin-left:200px;
	}
}
	
@media screen and (max-width: 1421px) {


.promise-left
	{
		margin-left:100px;
	}
}

	@media screen and (max-width: 1300px) {

	.wrapper-promise-outside {
        background: linear-gradient(to left, #333436 41%, #000 100%); /* Keep gradient only */
    }
    .promise-left {
        width: 50%; /* Half width for text */
    }
    .promise-right {
        width: 50%; /* Half width for image */
        display: flex; /* Keep image visible */
    }
		.wrapper-promise-outside {
        background: linear-gradient(to left, rgba(51, 52, 54, 0.8) 41%, rgba(0, 0, 0, 0.8) 100%), 
                    url('../../Images/our-promise.webp') no-repeat center right;
        background-size: cover; /* Cover the section */
    }
    .promise-right {
        display: none; /* Hide the image div */
    }
    .promise-left {
        max-width: 100%; /* Full width for text */
        padding: 40px 20px; /* More padding for readability */
    }
    .promise-left p {
        color: #fff; /* Brighter text for contrast */
    }
	}
@media screen and (max-width: 1201px) {

	.promise-left
	{
		margin-left:50px;
	}
}		
@media screen and (max-width: 1126px) {
.promise-right
	{
		display:none;
		
	}
.promise-left
	{
		padding-left:none;
		float:none;
		margin:auto;
		width:60%;
	}
.promise-left p
	{
		color:#fff;
		
	}
/*.wrapper-promise-outside
	{
		background-image:url(../../Images/our-promise-2.png);
		background-repeat:no-repeat;
		background-size:cover;
		
	}*/
}
@media screen and (max-width: 1058px) {

.promise-title h2
{
	font-size:35px;
}
}	
@media screen and (max-width: 912px) {
.promise-title h2 {
        font-size: 2rem; /* 32px */
    }
    .promise-left p {
        font-size: 18px;
    }
	
   
}
@media screen and (max-width: 664px) {
.promise-left
	{
		width:80%;
		padding-right:0px;
		padding-left:0px;
		margin:auto;
		float:none;
	}
.promise-right
	{
		display:none;
	}
}
@media screen and (max-width: 540px) {
.promise-left
	{
		width:90%;
		padding-right:10px;
		padding-left:10px;
	}
	   .promise-left p {
        font-size: 16px;
    }
.about-cta-button
	{
		width: 100px;
		font-size: 16px;

}
}
@media screen and (max-width: 479px){
	
.promise-left h2
	{
		font-size:25px;
	}
	   .promise-left p {
        font-size: 16px;
    }
}

/* ------- Location Section------------------------------------------------------------------------*/




.location-container {
  width: 100%;
  margin: auto;
  background: #fff;
  padding: 60px 0px 60px 0px;
  border-radius: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}
.location-container h2 {
	font-size: 40px;
	margin: 0 auto;
  color: #333;
	padding: 0px 20px;
  text-align: center;
  font-weight: bold;
  font-family: OratorStdMedium;
 letter-spacing: -3px;
}
.location-container span {
  color: #09c;
}
.location-container h3 {
	font-size: 24px;
	margin: 0 auto;
    color: #999;
	padding: 0px 20px 30px 20px;
    text-align: center;
    font-weight: bold;
    font-family: candara;
}
/* Two Columns */
.location-two-col {
  display: flex;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 20px;
  flex-wrap: wrap;
}

.location-col-left,
.location-col-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* Left: Image + Map + CTAs */
.location-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.location-map {
  margin-top: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.location-map iframe {
  width: 100%;
  height: 250px;  
  border-radius: 4px;
  
}

/* Moved CTAs (Buttons) under Map */
.location-col-left .location-ctas {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

/* Right: Flip Card + Tabs */
.location-flip-card {
  position: relative;
  width: 100%;
  height: 535px; /* Fixed above 600px */
  perspective: 1000px;
	 transform-style: preserve-3d;
}

.location-flip-front,
.location-flip-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* Same size always */
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease; /* Only transform—no size/left change */
  
  border-radius: 4px;
  padding: 30px;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  transform-style: preserve-3d;
}

.location-flip-front {
  transform: rotateY(0deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.location-flip-back {
  transform: rotateY(180deg);
  position: relative;
  overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Add flip arrow always, not just on mobile */
.location-flip-card::after {
  content: "↻"; /* Circular arrow symbol */
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px; /* Slightly larger for visibility */
  color: #09C; /* Match your blue */
  z-index: 3; /* Above front content */
  width: 30px; /* Circle size */
  height: 30px;
  line-height: 30px; /* Center the arrow */
  text-align: center;
  border-radius: 50%; /* Make it circular */
  background: rgba(255, 255, 255, 0.2); /* Subtle background */
}

.location-flip-card:hover .location-flip-front {
  transform: rotateY(-180deg);
}

.location-flip-card:hover .location-flip-back {
  transform: rotateY(0deg); /* Just flip—no size change */
}

/* Unchanged content styling */
.location-flip-front h3 {
  font-size: 32px;
  font-family: OratorStdMedium;
  margin: 0 0 20px;
	display: block !important;
    color: #09C !important;
}

.location-flip-front span {
  color: #F36D26;
}

.location-flip-front address {
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 20px;
  font-family: candara;
  letter-spacing: 2px;
	color: #333;
}

.location-flip-front address span {
  font-size: 18px;
  color: #999;
  font-style: italic;
  display: block;
  margin-top: 10px;
  letter-spacing: 2px;
}
.location-flip-card.flipped .location-flip-front {
  transform: rotateY(-180deg);
}

.location-flip-card.flipped .location-flip-back {
  transform: rotateY(0deg);
  z-index: 2;
}
.location-flip-front .location-phone {
  font-size: 28px;
  color: #F36D26;
  text-decoration: none;
  margin: 20px 0;
  font-family: OratorStdMedium;
}
.location-flip-front .regus-note {
  font-size: 18px;
  color: #999; /* Changed from orange to grey */
  font-style: italic;
  display: block;
  margin-top: 10px;
  letter-spacing: 2px;
  font-family: candara;
}

.location-flip-front .location-hours {
  font-size: 18px;
  color: #333;
  margin: 0;
  font-family: candara;
  letter-spacing: 2px;
}

.location-flip-back .location-clean-room-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(95%);
  z-index: 1;
}

.location-flip-back-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 4px;
}

.location-flip-back-overlay h4 {
  font-size: 24px;
  color: #09C;
  margin: 0 0 10px;
  font-family: OratorStdMedium;
}

.location-flip-back-overlay p {
  font-size: 18px;
  color: #fff;
  margin: 0;
  font-family: candara;
  letter-spacing: 2px;
}

/* Moved Tabs under Flip Card */
.location-col-right .location-ctas {
  margin-top: 20px;
}

.location-tab-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
	
}
.location-toggle {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}
.location-toggle-btn {
  padding: 12px 25px;
  background: #999;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: Candara;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;

	
}
.location-toggle-btn.active,
.location-toggle-btn:hover {
  background: #09C;
}
/* Unified Button Styles */
.location-tab-btn,
.location-cta-btn {
  padding: 12px 25px;
  background: #999;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: Candara;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.location-tab-btn.active,
.location-tab-btn:hover,
.location-cta-btn:hover {
  background: #09C;
}

/* Full-Width Tab Content */
.location-tab-content {
  max-width: 1000px;
  margin: 0 auto;
  background: #666;
  border: 1px solid #666;
  border-radius: 4px;
  padding: 20px;
  min-height: 150px;
  display: none;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.location-tab-pane {
  display: none;
  color: #ccc;
  font-size: 18px;
  font-family: candara;
  letter-spacing: 2px;
}

.location-tab-pane.active {
  display: block;
}

.location-tab-pane h4 {
  color: #09C;
  font-size: 20px;
  margin: 0 0 15px;
}

.location-tab-pane ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-tab-pane li {
  margin-bottom: 15px;
}

.location-tab-pane strong {
  color: #fff;
}

.location-tab-pane a {
  color: #09C;
  text-decoration: none;
}

.location-tab-pane a:hover {
  text-decoration: underline;
}

/* Responsive Breakpoints */
@media (max-width: 1000px) {
	.location-container h2 {
	font-size: 30px;
}
  .location-two-col {
    gap: 15px;
    max-width: 800px;
  }
  .location-flip-card {
    height: 450px;
  }
}

@media (max-width: 800px) {
  .location-two-col {
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
  }
  .location-col-left,
  .location-col-right {
    width: 100%;
  }
  .location-flip-card {
    height: 400px;
  }
  .location-col-left .location-ctas {
    flex-direction: column;
    gap: 15px;
  }
  .location-col-right .location-ctas .location-tab-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .location-tab-content {
    margin: 20px 0 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
    .location-flip-front h3 {
        display: block !important;
        font-size: 1.5em; /* Adjust if needed */
    }
}
@media (max-width: 600px) {
		.location-container h2 {
	font-size: 24px;
}
}
@media (max-width: 500px) {
		.location-container h2 {
	font-size: 20px;
	margin: 40px 15px 25px 15px;
}
}
@media (max-width: 465px) {
  .location-container {
    padding: 10px;
  }
  .location-flip-front h3 {
    font-size: 28px;
  }
  .location-flip-front address {
    font-size: 18px;
  }
  .location-flip-front .location-phone {
    font-size: 24px;
  }
  .location-flip-front .location-hours {
    font-size: 16px;
  }
  .location-tab-btn,
  .location-cta-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
  .location-tab-pane {
    font-size: 14px;
  }
  .location-tab-pane h4 {
    font-size: 18px;
  }
  .location-flip-back-overlay h4 {
    font-size: 20px;
  }
  .location-flip-back-overlay p {
    font-size: 14px;
  }
}
@media (max-width: 388px) {
		.location-container h2 {
	font-size: 18px;
	margin: 40px 10px 25px 10px;
}
}
@media (max-width: 358px) {
  .location-container {
    padding: 10px;
  }
  .location-flip-front h3 {
    font-size: 20px;
  }
  .location-flip-front address {
    font-size: 16px;
  }
  .location-flip-front .location-phone {
    font-size: 20px;
  }
  .location-flip-front .location-hours {
    font-size: 16px;
  }
  .location-tab-btn,
  .location-cta-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
  .location-tab-pane {
    font-size: 14px;
  }
  .location-tab-pane h4 {
    font-size: 18px;
  }
  .location-flip-back-overlay h4 {
    font-size: 20px;
  }
  .location-flip-back-overlay p {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .location-two-col {
    gap: 10px;
  }
  .location-flip-card {
    min-height: 280px;
  }
  .location-map iframe {
    height: 180px;
  }
}
@media (max-width: 768px) {
  .location-flip-card {    
    -webkit-user-select: none; /* Prevent text selection */
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative; /* For pseudo-element positioning */
  }
  .location-flip-card:hover .location-flip-front,
  .location-flip-card:hover .location-flip-back {
    transform: none; /* Disable hover on mobile */
	  -webkit-transform: none;
  }
  .location-flip-card.flipped .location-flip-front {
    transform: rotateY(-180deg);
	  -webkit-transform: rotateY(-180deg) translateZ(1px);
  }
  .location-flip-card.flipped .location-flip-back {
    transform: rotateY(0deg);
	  -webkit-transform: rotateY(0deg) translateZ(1px); 
  }
  .location-flip-card::after {
    content: "↻"; /* Circular arrow symbol */
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px; /* Slightly larger for visibility */
    color: #09C; /* Match your blue */
    z-index: 3; /* Above front content */
    width: 30px; /* Circle size */
    height: 30px;
    line-height: 30px; /* Center the arrow */
    text-align: center;
    border-radius: 50%; /* Make it circular */
    background: rgba(255, 255, 255, 0.2); /* Subtle background */
  }
	/* New rule to prevent child elements from capturing touch events */
  .location-flip-back img,

  .location-flip-back div,
  .testimonial-flip-back * {
    pointer-events: none; /* Ensure back taps reach the card */
  }
}

/*----- Q&A Section ------------------------------------------------------------------------------*/


 .faq-section {
            padding: 60px 20px;
            background: #333;
            font-family: Arial, sans-serif;
        }

        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .faq-title h2 {
            font-size: 40px;
            color: #fff;
            margin-bottom: 15px;
            font-weight: 700;
			font-family: OratorStdMedium;
			letter-spacing: -3px;
        }

        .faq-title h2 span {
            color: #F36D26;
        }

        .faq-title h3 {
            font-size: 24px;
            color: #999;
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto;
			font-family: candara;
        }

        .faq-grid {
            display: grid;
            gap: 20px;
        }

        .faq-item {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            transform: translateY(-2px);
        }

        .faq-question {
            padding: 15px;
            background: #09c;
            color: white;
            cursor: pointer;
            position: relative;
            font-size: 24px;
			font-family: candara;
            font-weight: 600;
            margin: 0;
            border: none;
            width: 100%;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            background: #F36D26;
        }

        .faq-toggle {
            font-size: 1.5rem;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: white;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 25px;
        }

        .faq-answer p {
            margin: 0 0 15px 0;
            color: #333;
            line-height: 1.6;
            font-size: 1rem;
        }

        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        .faq-answer strong {
            color: #333;
        }

        .faq-answer a {
            color: #F36D26;
            text-decoration: none;
            font-weight: 600;
        }

        .faq-answer a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .faq-title h2 {
                font-size: 2rem;
            }
            
            .faq-title h3 {
                font-size: 1.1rem;
            }
            
            .faq-question {
                padding: 20px;
                font-size: 1.1rem;
            }
            
            .faq-item.active .faq-answer {
                padding: 20px;
            }
        }
	
/*------------Cities and Counties Section---------------------------------------------------------*/
.wrapper-cities-outside
	{
		width:100%;
		height:auto;
		background-image:url(../../Images/hard-drive.jpg);
		background-position:center;
		background-size:cover;
		background-repeat:no-repeat;
		float:left;
		position:relative;
		text-align:center;		
	}
.wrapper-cities-inside
	{
		width:70%;
		height:auto;
		margin:auto;
		padding-bottom:50px;
		text-align:center;		
	}
.cities-title
{
	text-align:center;
	width:auto;
	margin:auto;
	padding-top:20px;
	padding-bottom:10px;
}
.cities-title h3
{
	font-size:40px;
	font-family: OratorStdMedium;
	
}
.cities-title h3 span
{
	color:#09c;
}
.tx
{
	display:inline-block;
	padding-right: 20px;
	position:relative;
	width:250px;
	line-height:30px;
	font-size:18px;
}
.tx-county
	{
		display: none;
		width:750px;
		height:auto;
		background:linear-gradient(to bottom left, #fff 25%, #eee 75%);
		color:#333;
		font-size:16px;
		padding:20px 20px 20px 20px;
		border-radius: 10px;
		text-align:center;
		margin: 0 auto;
		position: absolute;
		border-style:solid;
		border-width:1px;
		border-color:#ccc;
		bottom:25px;
		right:-300px;
		max-height: 2000px;		
	}

.tx:hover .tx-county
	{
		display:inline-block;		
	}
.tx:hover
{
	color: #09c;
}

.tx-county li
{
	color:#333;
	width:30%;
	padding-right:10px;
	display:inline-block;
	line-height: 25px;
	text-align:left;	
}
.tx-county li a
{
	color:#09c;
text-decoration: none;
}
.tx-county li a:hover
{
	color:#F36D26;
}

.tx-county h4
{
	color:#fff; 
	position:relative; 
	font-size:24px;
	font-weight:bold; 
	margin-bottom:20px;
	vertical-align:top;
	margin-top:0px;
	font-family: OratorStdMedium;
	top:0px;
	padding: 10px 20px 10px 20px;
	background-color: #333;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.tx-county h4 a
{
	text-decoration: none;
		color: #fff;
}
.tx-county h4 a:hover
{
	color: #F36D26;
	text-decoration: none;
}	
	
@media screen and (max-width: 1430px) 	
{
.wrapper-cities-outside
{
	display:none;
}
	}
@media screen and (max-width: 962px) {

.wrapper-cities-inside
	{
		width:70%;
	}
}
	
@media screen and (max-width: 673px) 
{

.wrapper-cities-inside
	{
		width:90%;
	}
}

@media screen and (max-width: 540px) {
.cities-title h1
	{
		font-size:25px;
	}
}




/*-- Footer Section -----------------------------------------------------------------------------------------------------------------------*/
.footer {
    background-color: #000;
    color: #999;
    padding: 20px 0;
    font-size: 16px;
    line-height: 1.5;
	margin-bottom: 20px;
	
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 20px;
	
}


.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
	font-size: 18px;
	margin-top: 20px;
	
}

.footer-nav li {
    margin: 0;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ccc;
}

.footer-locations {
    width: 100%;
	max-width: 900px; /* Constrain content width for better centering */
    display: flex;
    flex-direction: column;
    align-items: center;
	 justify-content: center;
}

.footer-location {
    margin-bottom: 15px;
	display: flex; /* Ensure centering for single location */
	justify-content: center;
   align-items: center;
    text-align: center;
	 
}

.footer-location h5 {
    margin: 0 0 5px;
    color: #09c;
	font-family: OratorStdMedium;
	font-size: 18px;
}

.footer-location.horizontal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	align-items: stretch; /* Ensure equal height for items */
    gap: 20px;
	
}

.footer-location-item {
    flex: 0 1 auto; /* Prevent excessive growth */
    width: auto;
    min-width: 200px;
    max-width: 300px;
    margin-bottom: 10px;
    text-align: center;

}

.footer-street,
.footer-city-state-zip,
.footer-phone,
.footer-hours {
    margin: 5px 0;
	
}

.footer-phone a {
    color: #fff;
    text-decoration: none;
}

.footer-phone a:hover {
    color: #ccc;
}

.footer-hours {
    white-space: pre-line; /* Preserve line breaks for two-line hours */
}

.footer-copyright {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
}

@media (max-width: 768px) {
    .footer-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .footer-location.horizontal {
        flex-direction: column;
        align-items: center;
    }

    .footer-location-item {
        max-width: 100%;
    }
	cursor: pointer;cursor: pointer;cursor: pointer;}