@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;
}

/* General Styles */
body {
    margin: 0;
    padding: 0;
    color: #000;
    background-color: #FFFFFF;
    box-shadow: inset;
    font-family: 'Open Sans Condensed', sans-serif;
    letter-spacing: 1.5px;
    font-size: 75%;
    line-height: 1.4;
    background-image: url(file:///C|/Users/brent/My%20Drive/FileSavers/raid_recovery/raid-recovery-brands/none);
    background-repeat: repeat;
    background-attachment: scroll;
    background-position: center top;
}

.container 
	{
		width: 100%;
		background-color: #FFFFFF;
		float: none;
		height: auto;
		margin-top: 120px;
		
	
	}


/* ------- 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: 3px;
	margin: 3px;
	 box-shadow:
0 0 8px rgba(255,255,255,0.8),
              0 0 16px rgba(255,255,255,0.8);
}
.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;
  }
}
/* ---------Hero Section -H1 Header--------------------------------------------*/


.location-hero-section {
  position: relative;
  width: 100%;
  height: 100%; /* Adjust based on visual preference */
  background-image: url('../Images/hard-drive/open-hard-drive.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: 30px;
    margin-bottom: 16px;
	margin-top: 0px;
    line-height: 1.2;
	font-family: OratorStdMedium;
	letter-spacing: -3px;
	color: #999;
}
.location-hero-text-panel h1 span{
    color: #fff;
	font-size: 38px;
}
.location-hero-text-panel h2 {
  font-size: 24px;
  margin-bottom: 0px;
  font-family: Candara;
  color: #07B2F5;
}

.location-hero-text-panel p {
  font-size: 17px;
  margin-bottom: 24px;
	margin-top: 0px;
}
.hero-cta-buttons {
  display: flex;
  gap: 16px;
}

.location-hero-cta-buttons .location-cta-button {
  background-color: #fff;
  color: #F36D26;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
  font-family: OratorStdMedium;
	letter-spacing: -2px;
	font-size: 18px;
}

.location-hero-cta-buttons .location-cta-button: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-cta-buttons .location-cta-button.alt {
  background-color: #09c;
  color: #fff;
	font-size: 18px;
}
.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;
}
}

/*-----------Benefits Section-------------------------------------------------*/


/* Specific classes for the benefits section */
.wrapper-benefits-outside {
    background: linear-gradient(to bottom left, #fff 50%, #ddd 100%);
    width: 100%;
    height: auto;
    padding-top: 20px;
	margin-top: 120px;
	display:flex;
	flex-wrap: wrap;
	
}

.benefits-title {
    width: 95%;
    height: auto;
    margin-bottom: 0px;
    padding-bottom: 15px;
    margin: auto;

	
}

.benefits-title h1 {
    font-size: 50px;
    color: #666;
    font-weight: bold;
    margin-top: 50px;
    text-align: center;
	font-family:OratorStdMedium;
}

.benefits-title span {
    color: #F36D26;
}

.wrapper-benefits-inside {
    width: 60%;
    height: auto;
    margin: auto;
}

.benefits {
    width: 49%;
}

.benefits img {
    float: left;
    padding-right: 15px;
    padding-bottom: 20px;
}

.benefits-table {
    float: left;
    width: 100%;
    padding-top: 10px;
    margin-bottom: 50px;
    height: auto;
    background: none;
}

.benefits-table td {
    font-size: 16px;
}

.bullet-bold {
    font-weight: bold;
    font-size: 18px;
	font-family: Candara;
}

.bullet-normal {
    font-weight: normal;
	font-size: 18px;
	font-family: Candara;
}

/* Media queries affecting the benefits section */
@media screen and (max-width: 1421px) {
    .wrapper-benefits-inside {
        width: 80%;
    }
}

@media screen and (max-width: 1190px) {
    .wrapper-benefits-inside {
        width: 90%;
    }
}

@media screen and (max-width: 1058px) {
    .benefits-title {
        width: 90%;
    }
}

@media screen and (max-width: 865px) {
    .benefits-table td {
        display: block;
        width: 100%;
        margin-top: 20px;
    }
}
@media screen and (max-width: 768px) {
	.wrapper-benefits-outside {
  
	margin-top: 95px;
	
	
}
}
@media screen and (max-width: 760px) {
    .benefits-title h1 {
        font-size: 35px;
    }
    .benefits-table {
        padding-top: 0px;
        margin-bottom: 50px;
    }
    .benefits-table td {
        display: block;
        width: 95%;
        text-align: left;
        margin-top: 30px;
    }
    .benefits-table img {
        margin-top: 20px;
    }
}



@media screen and (max-width: 540px) {
    .benefits-title h1 {
        font-size: 30px;
    }
}

@media screen and (max-width: 500px) {
    .wrapper-benefits-inside {
        width: 90%;
    }
    .benefits-title {
        width: 100%;
    }
}
@media screen and (max-width: 477px) {
	.wrapper-benefits-outside {
  
	margin-top: 70px;
}
	 .benefits-title h1 {
        font-size: 26px;
    }
}
/*------Devices Flip Card Section -------------------------------------------------------------*/

/* Outer container with gradient background */
.devices-section {
    background: linear-gradient(to right, #000000, #333333);
    width: 100%;
    display:grid;
	flex-wrap:wrap;
	justify-content: center;
	
	
}

/* Inner container for centering */
.devices-wrapper-inside {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Title styles */
.devices-section h2 {
    text-align: center;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    font-family: OratorStdMedium, sans-serif;
    margin-top: 70px;
    margin-bottom: 50px;
}

.devices-section h2 span {
    color: #09C;
}

/* Devices grid */
.devices-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    font-family: Candara, sans-serif;
    position: relative;
    max-width: 1200px;
	text-align: center;
	margin: auto;
}

/* Individual flip card container */
.devices-flip-card {
    position: relative;
    width: 100px;
    height: 180px; /* Icon (100px) + title (20px) + margin-bottom (50px) + padding */
    perspective: 1000px;
}

/* Front and back faces */
.devices-flip-card-front,
.devices-flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    transition: transform 0.6s ease;
    border-radius: 10px;
    box-sizing: border-box;
}

/* Front face */
.devices-flip-card-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotateY(0deg);
    z-index: 2;
    background: transparent;
    color: #fff;
}

.devices-flip-card-front img {
    width: 100px;
    height: 100px;
    object-fit: contain;
	margin-bottom: 10px;
}

.devices-flip-card-front h3 {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    margin-top: 0; /* No margin between icon and title */
    margin-bottom: 70px; /* Below title */
    text-align: center;
    white-space: nowrap;
    font-family: Candara, sans-serif;
}

/* Back face */
.devices-flip-card-back {
    transform: rotateY(180deg);
    z-index: 1;
    background-color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    overflow: hidden;
}

/* Back content styling */
.devices-flip-card-back img {
    width: 50px;
    height: 50px;
    margin-bottom: 5px; /* ~20px spacing */
}

.devices-flip-card-back p {
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
    flex-grow: 1;
    font-family: Candara, sans-serif;
}

.devices-flip-card-back a.button {
    background: #09C;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    font-family: Candara, sans-serif;
}

/* Hover and flip states */
.devices-flip-card:hover {
    z-index: 100; /* Lift card above others */
}

.devices-flip-card:hover .devices-flip-card-front {
    z-index: 1; /* Front drops below back */
    transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
}

.devices-flip-card:hover .devices-flip-card-back {
    width: 300px; /* Match devices spec */
    height: 400px;
    z-index: 10; /* Back above front */
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    box-shadow: 0 0 15px rgba(0, 153, 204, 0.3);
    position: absolute;
    left: -150px; /* Align right edge with front’s right edge: (300px - 100px) / 2 */
}

/* Back card positioning adjustments */
.devices-flip-card:nth-child(1):hover .devices-flip-card-back,
.devices-flip-card:nth-child(2):hover .devices-flip-card-back,
.devices-flip-card:nth-child(3):hover .devices-flip-card-back,
.devices-flip-card:nth-child(4):hover .devices-flip-card-back,
.devices-flip-card:nth-child(5):hover .devices-flip-card-back,
.devices-flip-card:nth-child(6):hover .devices-flip-card-back,
.devices-flip-card:nth-child(7):hover .devices-flip-card-back,
.devices-flip-card:nth-child(8):hover .devices-flip-card-back {
    top: -170px; /* Shift up */
}

/* Mobile adjustments */
@media (max-width: 1385px) {
    .devices-flip-card:nth-child(1) .devices-flip-card-back {
        left: 10px;
    }
}

@media (max-width: 1226px) {
    .devices-flip-card:nth-child(8) .devices-flip-card-back {
        left: -200px;
    }
}

/* Two rows of four cards at 1120px */
@media (max-width: 1120px) {
    .devices-grid {
        flex-wrap: wrap;
        max-width: 520px; /* 4 cards (100px) + 3 gaps (40px) = 520px */
        justify-content: center;
        gap: 40px;
        margin: 0 auto; /* Center the grid */
    }

    .devices-flip-card {
        flex: 0 0 100px; /* Ensure 4 cards per row */
    }

    .devices-flip-card:nth-child(4) .devices-flip-card-back {
        left: -200px;
    }

    .devices-flip-card:nth-child(1) .devices-flip-card-back {
        left: -150px; /* Shift up 100px */
    }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1080px) {
    .devices-grid {
        gap: 30px;
    }

    .devices-flip-card {
        width: 90px;
        height: 170px;
    }

    .devices-flip-card-front img {
        width: 90px;
        height: 90px;
    }

    .devices-flip-card-front h3 {
        font-size: 18px;
    }
}
@media (max-width: 800px) {
    .devices-flip-card:nth-child(1) .devices-flip-card-back,
    .devices-flip-card:nth-child(5) .devices-flip-card-back {
        left: 10px; /* Shift up 100px */
    }
	    .devices-flip-card:nth-child(4) .devices-flip-card-back,
    .devices-flip-card:nth-child(8) .devices-flip-card-back {
        left: -200px; /* Shift up 100px */
    }
}


@media (max-width: 615px) {
    .devices-grid {
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .devices-grid {
        gap: 20px;
    }

    .devices-flip-card:nth-child(1) .devices-flip-card-back,
    .devices-flip-card:nth-child(5) .devices-flip-card-back {
        left: -5px; /* Shift up 100px */
    }

    .devices-flip-card:nth-child(2) .devices-flip-card-back,
    .devices-flip-card:nth-child(6) .devices-flip-card-back {
        left: -50px; /* Shift up 100px */
    }
}

@media (max-width: 498px) {
    .devices-grid {
        gap: 20px;
        flex-wrap: wrap;
        max-width: 300px; /* Adjusted for mobile */
        justify-content: center;
        margin: 0 auto; /* Center the grid */
    }

    .devices-flip-card:nth-child(1) .devices-flip-card-back,
    .devices-flip-card:nth-child(3) .devices-flip-card-back,
    .devices-flip-card:nth-child(5) .devices-flip-card-back,
    .devices-flip-card:nth-child(7) .devices-flip-card-back {
        left: -33px; /* Shift up 100px */
    }

    .devices-flip-card:nth-child(2) .devices-flip-card-back,
    .devices-flip-card:nth-child(4) .devices-flip-card-back,
    .devices-flip-card:nth-child(6) .devices-flip-card-back,
    .devices-flip-card:nth-child(8) .devices-flip-card-back {
        left: -170px; /* Shift up 100px */
    }
}

/* Mobile flip logic */
@media (max-width: 768px) {
    .devices-grid {
        gap: 35px;
    }

    .devices-section h2 {
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: 1.8rem;
    }

    .devices-flip-card {
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        position: relative;
    }

    .devices-flip-card:hover .devices-flip-card-front,
    .devices-flip-card:hover .devices-flip-card-back {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
    }

    .devices-flip-card.flipped {
        z-index: 100; /* Lift entire flipped card above others */
    }

    .devices-flip-card.flipped .devices-flip-card-front {
        z-index: 1; /* Front drops below back */
        transform: rotateY(-180deg);
        -webkit-transform: rotateY(-180deg) translateZ(1px);
        -moz-transform: rotateY(-180deg);
    }

    .devices-flip-card.flipped .devices-flip-card-back {
        z-index: 10; /* Back above front */
        transform: rotateY(0deg);
        -webkit-transform: rotateY(0deg) translateZ(1px);
        -moz-transform: rotateY(0deg);
        width: 300px; /* Match mobile size */
        height: 400px;
        box-shadow: 0 0 15px rgba(0, 153, 204, 0.3);
        position: absolute;
        padding: 15px;
    }

    /* Prevent back card children from capturing taps */
    .devices-flip-card-back img,
    .devices-flip-card-back p {
        pointer-events: none; /* Ensure taps reach the card */
    }

    .devices-flip-card-back img {
        margin-bottom: 3px;
    }

}


/*---------Trust Section---------------------------------------------------------------------------*/

.wrapper-trust-outside {
  width: 100%;
  height: auto;
  background: linear-gradient(to right, #fff, #ddd);
  margin-top: 0;
	display:flex;
	flex-wrap: wrap;
}

.wrapper-trust-inside {
  width: 100%;
  height: auto;
  margin: auto;

}

.trust-title {
  width: 100%;
  text-align: center;
	padding: 0 50px 0 50px;
}

.trust-title h2 {
  font-size: 40px;
  color: #333333;
  text-align: center;
  font-weight: normal;
  font-family: OratorStdMedium;
	margin-top: 100px;
	margin-bottom: 0;
	padding: 0 20px 0 20px;
}

.trust-title h2 span {
  color: #09C;
  font-weight: bold;
}

.trust-wrapper {
  width: 100%;
  height: auto;
  margin: auto;
  text-align: center;
  float: left;
  padding: 20px 0; /* Small buffer */
}

.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;
	
	
}

.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 h3 {
  font-size: 18px;
  font-weight: bold;
  font-family: candara;
  color: #999;
  margin: -10px;
}
.trust-card-back {
  transform: rotateY(180deg);
  z-index: 1;
  background: linear-gradient(to right, #000, #333333); /* Black to #333333 back */
  color: #eee;
  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 0 20px rgba(60, 131, 196, 0.7);
  position: absolute;
  left: 0; /* Default centered */
}
 .trust-card:nth-child(odd):hover .trust-card-back {
    top: -150px; 
}
 .trust-card:nth-child(even):hover .trust-card-back {
    top: -150px; 
}

/* 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: 20px;
  font-weight: bold;
  font-family: OratorStdMedium;
  margin: 0 0 10px;
}

.trust-card-back p {
  font-size: 18px;
  color: #eee;
  line-height: 1.4;
  margin: 0;
  font-family: Candara;
}

@media (max-width: 1200px) {
.trust-title h2 {
  font-size: 32px;
}
}
/* Responsive Adjustments */
@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-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-cards {
    flex-wrap: wrap;
    gap: 15px; /* Smaller gap for mobile */
	  
  }
 
  .trust-card:hover .trust-card-back {
    width: 350px; /* Even smaller for mobile */
    left: -50px; /* Center adjust */
  }
	.trust-card:nth-child(4):hover .trust-card-back {
	left: -50px;

  }
  .trust-card:nth-child(5):hover .trust-card-back {
    left: -150px; /* Consistent centering */
  }
  .trust-card:nth-child(3):hover .trust-card-back {
    left: -200px; /* Consistent centering */
  }
  .trust-card:nth-child(1):hover .trust-card-back {
    left: 30px;
	 /* Consistent centering */
  }
	 .trust-card:nth-child(1):hover .trust-card-back {
    top: -250px; 
}

  
}

@media (max-width: 685px) {
	.trust-title h2 {
  font-size: 30px;
		margin: 40px 5px 0 5px;
}

	.trust-card:nth-child(4):hover .trust-card-back {
	left: -50px; /* Consistent centering */
  }
  .trust-card:nth-child(5):hover .trust-card-back {
    left: -100px; /* Consistent centering */
  }
  .trust-card:nth-child(3):hover .trust-card-back {
    left: -140px; /* Consistent centering */
  }
  .trust-card:nth-child(1):hover .trust-card-back {
    left: -50px; /* Consistent centering */
  }
	  .trust-card:nth-child(2):hover .trust-card-back {
    left: -100px; /* Consistent centering */
  }

  
}

@media (max-width: 587px) {
		.trust-title h2 {
  font-size: 26px;
		margin: 40px 5px 0 5px;
			padding: 0;
}

	.trust-card:nth-child(4):hover .trust-card-back {
	left: -200px; /* Consistent centering */
  }
  .trust-card:nth-child(5):hover .trust-card-back {
    left: -50px; /* Consistent centering */
  }
  .trust-card:nth-child(3):hover .trust-card-back {
    left: 50px; /* Consistent centering */
  }
  .trust-card:nth-child(1):hover .trust-card-back {
    left: 50px; /* Consistent centering */
  }
	  .trust-card:nth-child(2):hover .trust-card-back {
    left: -200px; /* Consistent centering */
		
  }
	.trust-card-back p {
  font-size: 16px;
  color: #eee;

}
  
}
@media (max-width: 540px) {
.trust-title h2 {
  font-size: 28px;
}
	.trust-card {
  position: relative;
  width: 150px; /* 150px front */
  height: 150px; /* 150px front */
	}
	.trust-card-front img {
  width: 100px; /* Match card size */
  height: 100px; /* Match card size */
  object-fit: contain; /* Ensure full image shows */
}
  .trust-card:nth-child(2):hover .trust-card-back {
	left: -80px; /* Consistent centering */
  }
  .trust-card:nth-child(3):hover .trust-card-back {
    left: -220px; /* Consistent centering */
  }
  .trust-card:nth-child(4):hover .trust-card-back {
    left: 0; /* Consistent centering */
  }
  .trust-card:nth-child(5):hover .trust-card-back {
    left: -160px; /* Consistent centering */
  }
	
}
@media (max-width: 518px) {
	.trust-title h2 {
  font-size: 24px;
		margin: 40px 5px 0 5px;
			padding: 0;
}
	.trust-card:nth-child(1):hover .trust-card-back {
	left: -25px; /* Consistent centering */
  }
  .trust-card:nth-child(2):hover .trust-card-back {
    left: -190px; /* Consistent centering */
  }
  .trust-card:nth-child(3):hover .trust-card-back {
    left:-30px; /* Consistent centering */
  }
  .trust-card:nth-child(4):hover .trust-card-back {
    left: -190px; /* Consistent centering */
  }
	  .trust-card:nth-child(5):hover .trust-card-back {
    left: -110px; /* Consistent centering */
  }
	 
}

@media (max-width: 385px) {
	.trust-card:hover .trust-card-back {
    width: 320px; /* Smaller for tighter fit */
    left: 40px; /* Center adjust */
	}

	.trust-card:nth-child(1):hover .trust-card-back {
	left: -10px; /* Consistent centering */
  }
  .trust-card:nth-child(2):hover .trust-card-back {
    left: -170px; /* Consistent centering */
  }
  .trust-card:nth-child(3):hover .trust-card-back {
    left:-10px; /* Consistent centering */
  }
  .trust-card:nth-child(4):hover .trust-card-back {
    left: -170px; /* Consistent centering */
  }
	  .trust-card:nth-child(5):hover .trust-card-back {
    left: -90px; /* Consistent centering */
  }
  
}
@media (max-width: 350px) {
	.trust-card:hover .trust-card-back {
    width: 300px; /* Smaller for tighter fit */
    left: 40px; /* Center adjust */
	}

	.trust-card:nth-child(4):hover .trust-card-back {
	left: -80px; /* Consistent centering */
  }
  .trust-card:nth-child(5):hover .trust-card-back {
    left: -80px; /* Consistent centering */
  }
  .trust-card:nth-child(3):hover .trust-card-back {
    left:-80px; /* Consistent centering */
  }
  .trust-card:nth-child(1):hover .trust-card-back {
    left: -80px; /* Consistent centering */
  }
	  .trust-card:nth-child(2):hover .trust-card-back {
    left: -80px; /* Consistent centering */
  }
  
}
@media (max-width: 768px) {
  .trust-card {
    cursor: pointer; /* Clickable hint */
    -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 */
    height: auto; /* Allow content to expand */
    box-shadow: 0 0 20px rgba(60, 131, 196, 0.7); /* Match hover flair */
    position: absolute; /* Match hover positioning */
  }
}
@media (max-width: 768px) {
  .trust-card.flipped:nth-child(1) .trust-card-back { left: 30px; top: -150px;}
  .trust-card.flipped:nth-child(2) .trust-card-back { left: -100px; top: -150px;}
  .trust-card.flipped:nth-child(3) .trust-card-back { left: -200px; top: -150px;}
  .trust-card.flipped:nth-child(4) .trust-card-back { left: -50px; top: -300px;}
  .trust-card.flipped:nth-child(5) .trust-card-back { left: -150px; top: -300px; }
}
@media (max-width: 669px) {
  .trust-card.flipped:nth-child(1) .trust-card-back { left: -50px; top: -100px; }
  .trust-card.flipped:nth-child(2) .trust-card-back { left: -100px; top: -100px;}
  .trust-card.flipped:nth-child(3) .trust-card-back { left: -50px; top: -200px;}
  .trust-card.flipped:nth-child(4) .trust-card-back { left: -100px; top: -200px;}
  .trust-card.flipped:nth-child(5) .trust-card-back { left: -100px; top: -300px;}
}

@media (max-width: 587px) {
  .trust-card.flipped:nth-child(1) .trust-card-back { left: 50px; }
  .trust-card.flipped:nth-child(2) .trust-card-back { left: -200px; }
  .trust-card.flipped:nth-child(3) .trust-card-back { left: 50px; }
  .trust-card.flipped:nth-child(4) .trust-card-back { left: -200px; }
  .trust-card.flipped:nth-child(5) .trust-card-back { left: -50px; }
}
@media (max-width: 540px) {

.trust-card.flipped:nth-child(1) .trust-card-back { left: 50px; }
  .trust-card.flipped:nth-child(2) .trust-card-back { left: -110px; }
  .trust-card.flipped:nth-child(3) .trust-card-back { left: -220px; }
  .trust-card.flipped:nth-child(4) .trust-card-back { left: -50px; }
  .trust-card.flipped:nth-child(5) .trust-card-back { left: -130px; }
}
@media (max-width: 518px) {
.trust-card.flipped:nth-child(1) .trust-card-back { left: -17px; }
  .trust-card.flipped:nth-child(2) .trust-card-back { left: -180px; }
  .trust-card.flipped:nth-child(3) .trust-card-back { left: -17px; }
  .trust-card.flipped:nth-child(4) .trust-card-back { left: -180px; }
  .trust-card.flipped:nth-child(5) .trust-card-back { left: -100px; }
}

@media (max-width: 360px) {
  .trust-card.flipped .trust-card-back {
    width: 300px; /* Override to 300px at 360px */
  }
	.trust-card.flipped:nth-child(1) .trust-card-back { left: 1px; }
  .trust-card.flipped:nth-child(2) .trust-card-back { left: -160px; }
  .trust-card.flipped:nth-child(3) .trust-card-back { left: 1px; }
  .trust-card.flipped:nth-child(4) .trust-card-back { left: -160px; }
  .trust-card.flipped:nth-child(5) .trust-card-back { left: -80px; }
}
@media (max-width: 354px) {
  .trust-card.flipped .trust-card-back {
    width: 300px; /* Override to 300px at 360px */
  }
	.trust-card.flipped:nth-child(1) .trust-card-back { left: -80px; }
  .trust-card.flipped:nth-child(2) .trust-card-back { left: -80px; }
  .trust-card.flipped:nth-child(3) .trust-card-back { left: -80px; }
  .trust-card.flipped:nth-child(4) .trust-card-back { left: -80px; }
  .trust-card.flipped:nth-child(5) .trust-card-back { left: -80px; }
}

/* ---------Hero Section -H1 Header-------------------------------------------------------------------------------------------*/


.hero-section {
      width: 100%;
      background-color: #fff;
     
      padding: 50px 0;
      overflow: hidden;
	display: flex;
 	flex-direction: column;
	align-items: center;
    }
/* H1 Styling */
.hero-section h1 {
  color: #333;
  font-size: 48px;
  font-weight: bold;
  font-family: 'OratorStdMedium', sans-serif;
  text-align: center;
  margin: 0 auto 40px;
  width: 80%;
  line-height: 1.2;
}

.hero-section h1 span {
  color: #09c;
}

/* Two-Column Layout */
.hero-content {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  background: #000;
  padding: 20px;
  border-radius: 8px;
}

/* Vertically center the video */
.hero-left-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
	
}

/* Video Container */
.hero-video-container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
	border-radius: 8px;
}

 .hero-video-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 16/9;
	
	 
    }
    .video-placeholder {
     width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
		
    }
.hero-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;
}



/* Right section keeps its layout */
.hero-right-section {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right-section h2 {
  color: #333333;
  font-size: 36px;
  font-weight: bold;
  font-family: 'OratorStdMedium', sans-serif;
  margin: 0 0 10px;
  line-height: 1.1;
}

.hero-right-section h2 span {
  color: #09c;
}

.hero-right-section p {
  font-size: 19px;
  color: #333333;
  font-family: candara;
  margin: 10px 0;
  line-height: 1.2;
}

.hero-right-section h4 {
  font-size: 26px;
  color: #F36D26;
  font-family: candara;
  margin: 16px 0 5px;
  line-height: 1.1;
}



.hero-right-section ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0;
}

.hero-right-section li {
  font-size: 18px;
  color: #333333;
  font-family: candara;
  margin: 5px 0;
  position: relative;
  padding-left: 20px;
  line-height: 1.2;
}

.hero-right-section li span.checkmark {
  color: #999999;
  position: absolute;
  left: 0;
}

.hero-right-section li span:not(.checkmark) {
  color: #F36D26;
  font-weight: bold;
}

/* Testimonial Section - Flip Cards */
.testimonial-section {
  background: transparent; /* Match service section */
  padding: 0;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 50px; /* Match service section */
  font-weight: bold;
  font-family: 'OratorStdMedium', sans-serif;
  color: #ffffff; /* Adjusted for skyline */
  margin-bottom: 40px;
  margin-left: 50px;
  margin-right: 50px;
  padding-top: 0;
  position: relative;
}

.testimonial-section h2 span {
  color: #09c;
}


}

/* Flip Effect */
@media (min-width: 769px) {
  .testimonial-card:hover {
    z-index: 100; /* Bring forward on hover */
  }
  .testimonial-card:hover .testimonial-card-front {
    transform: rotateY(-180deg);
  }
  .testimonial-card:hover .testimonial-card-back {
    transform: rotateY(0deg);
    width: 300px; /* Expand like service cards */
    height: 200px;
    border: 2px solid #F36D26; /* Orange border */
	 
  }

}




@media (max-width: 1024px) {
  .hero-left-section {
    width: 100%;
  }
  .hero-right-section {
    width: 100%;
  }
  .hero-right-section h2 {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: auto;
  }
}

@media (max-width: 768px) {
  /* Hero Section / Video / Testimonials 768px */
   .hero-section {
    padding: 20px 0;
    margin-top: -25px;
  }
  .hero-section h1 {
    font-size: 36px;
    width: 90%;
  }
  .hero-content {
    width: 90%;
    padding: 15px;
  }
  .hero-left-section,
  .hero-right-section {
    width: 100%;
    margin-bottom: 15px;
  }
  .hero-right-section h2 {
    font-size: 28px;
  }
  .hero-right-section h3 {
    font-size: 22px;
  }
  .hero-right-section p,
  .hero-right-section li {
    font-size: 16px;
  }
  .testimonial-section {
    width: 95%;
    margin: 0;
	  padding: 0;
  }
  .testimonial-section h2 {
    font-size: 28px;
  }

}

@media (max-width: 480px) {
  /* Hero Section / Video / Testimonials 480px */
  .hero-section {
    padding: 20px 0;
    margin-top: -45px;
  }
  .hero-section h1 {
    font-size: 28px;
  }
  .hero-content {
    width: 95%;
    padding: 10px;
  }
  .hero-right-section h2 {
    font-size: 24px;
  }
  .hero-right-section h3 {
    font-size: 20px;
  }
  .hero-right-section p,
  .hero-right-section li {
    font-size: 14px;
  }
  .testimonial-section h2 {
    font-size: 24px;
  }
	.hero-right-section h4 {
  font-size: 20px;
  color: #F36D26;
  font-family: candara;
  margin: 16px 0 5px;
  line-height: 1.1;
}
}



/*-----------Industry Flip Card Section --------------------------------------------------------------*/

.industry-section {
    background: #ffffff;
    padding: 30px 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	
}

.industry-section h1 {
    font-size: 50px;
    font-weight: bold;
    font-family: 'OratorStdMedium', sans-serif;
    color: #333333;
    margin-bottom: 80px;
    margin-left: 50px;
    margin-right: 50px;
    position: relative;
    margin-top: 90px;
}

.industry-section h1 span {
    color: #09c;
}

/* Grid Layout */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(8, 140px);
    gap: 20px;
    justify-content: center;
    margin: 0 auto;
    z-index: 1;
    margin-bottom: 100px;
	margin-left:0;
	margin-right: 0;
	
}

/* 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;
	
}

.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;
}

/* 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: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.industry-card-back h2 {
    font-size: 22px;
    font-weight: bold;
    font-family: candara;
    color: #333333;
    margin-bottom: 15px;
}

.industry-card-back p {
    font-size: 18px;
    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);
				outline-color: red;
	outline-style: solid;
	outline-width: thin;
}

.industry-card:hover .industry-card-back {
    transform: rotateY(0deg);
    width: 350px;
    height: auto;
    border: 2px solid #F36D26;
}

/* 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-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);
        width: 380px;
    }
    .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;
    }
   
}
/* ------- Location Section------------------------------------------------------------------------*/




.location-container {
  width: 100%;
  margin: 0 auto;
  background: linear-gradient(to bottom left, #fff 25%, #fff 75%);
  padding: 20px;
  border-radius: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* 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: 1px solid #666;
  border-radius: 4px;
  display: block;
}

.location-map {
  margin-top: 20px;
}

.location-map iframe {
  width: 100%;
  height: 250px;
  border: 1px solid #666;
  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: 530px; /* 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: 1px solid #666;
  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;
	
}

.location-flip-back {
  transform: rotateY(180deg);
  position: relative;
  overflow: hidden;
}
/* 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;
}

.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: #fff;
  border: 1px solid #666;
  border-radius: 4px;
  padding: 20px;
  min-height: 150px;
  display: none;
}

.location-tab-pane {
  display: none;
  color: #666;
  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: #333;
}

.location-tab-pane a {
  color: #09C;
  text-decoration: none;
}

.location-tab-pane a:hover {
  text-decoration: underline;
}

/* Responsive Breakpoints */
@media (max-width: 1000px) {
  .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: 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: 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 {
    cursor: pointer; /* Clickable hint */
    -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 */
  }
}

/*--- 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 0 8px rgba(255,255,255,0.8),
              0 0 16px rgba(255,255,255,0.8);
}

.cta-quote-button .btn-quote:hover {
  background: #F88C4A;
}

@media screen and (max-width: 653px) {
		.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;
  }
}

/*-------Files We Recover When Disaster Strikes Section ---------------------------------------------------*/




.files-section {
  background: #ffffff;
  padding: 30px 0 100px;
  text-align: center;
	margin-bottom: 0;
	clear: both;

}

.files-section h2 {
  font-size: 45px;
  font-family: 'OratorStdMedium', sans-serif;
  color: #333333;
	margin: 0 50px 0;
	
}

.files-section h2 span {
  color: #09c;
}
.files-section h3 {
	font-size: 32px;
	color: #999999;
	font-family: candara;
	margin-top: 0;
	margin-bottom: 40px;
	font-weight: 200;
}

.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: flex-start; /* Pin icon left */
  transform: rotateY(0deg);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  z-index: 2;
  height: 100px; /* Locked */
	padding:10px;
	
}

.file-icon {
  width: 50px;
  height: 50px;
  margin: 0 0; /* Left padding + right spacing */
}

.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 */
}
.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: 22px;
	font-weight: 900;
	margin-top: 10px;
	font-family: 'OratorStdMedium', sans-serif;
	margin-bottom: 10px;
	  white-space: normal;
   word-break: break-word;
	overflow-wrap: break-word;
}
  .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: -100px;}
.file-card:nth-child(5):hover .file-card-back {top: -170px;}
.file-card:nth-child(6):hover .file-card-back {top: -170px;}
.file-card:nth-child(7):hover .file-card-back {top: -170px;}
.file-card:nth-child(8):hover .file-card-back {top: -170px;}
.file-card:nth-child(9):hover .file-card-back {top: -300px;}
.file-card:nth-child(10):hover .file-card-back {top: -300px;}
.file-card:nth-child(11):hover .file-card-back {top: -300px;}
.file-card:nth-child(12):hover .file-card-back {top: -300px;}

  .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.1);
  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;
	
	
}
.file-card-back .file-types strong {
  color: #09c;
}

.file-card-back .danger-icon {
  width: auto;
  height: 110px;
  margin: 0 0 10px 0;
}

.file-card-back .fix {
  font-size: 18px;
  font-family: candara;
  color: #333333;
  line-height: 1.4;
  margin-bottom: 20px;
	letter-spacing: -0.1px;
	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: 20px;
}
	.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: 32px;
	}
	.files-section h3 {
	font-size: 24px;
}
.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: -300px;}
.file-card:nth-child(11):hover .file-card-back {top: -300px;}
.file-card:nth-child(12):hover .file-card-back {top: -300px;}


	
}

@media (max-width: 630px) {
  	.files-section h2{
		font-size: 32px;
	}
	.files-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 410px; /* 200px * 2 + 10px */
  }
  .file-card:hover .file-card-back {
    width: 350px;
    height: auto;
  }
  /* Left column (1, 3, 5, 7, 9, 11) stays put */
  .file-card:nth-child(odd):hover .file-card-back {
    left: 0;
  }
  /* Shift right-side cards (column 2: 2, 4, 6, 8, 10, 12) right */
  .file-card:nth-child(even):hover .file-card-back {
    left: -150px; /* 350px back - 200px front = 150px right shift */
  }
}

@media (max-width: 540px) {
 	
	.files-section h2{
		font-size: 24px;
		width: 100%;
		margin: 0;

	}
	
	.files-section h3 {
	font-size: 20px;
		margin: 10px 10px 10px 10px;
}
	.files-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 410px;
  }
  .file-card:hover .file-card-back {
    width: 350px;
    height: auto;
  }
  .file-card:nth-child(odd):hover .file-card-back {
    left: 0;
  }
  .file-card:nth-child(even):hover .file-card-back {
    left: -150px; /* 300px back - 200px front = 100px right shift */
  }
}

/* Existing CSS unchanged above 420px—keep all content, styling, functionality as-is */

/* Adjust fronts at 420px to keep two columns */
@media (max-width: 420px) {
  .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:hover .file-card-back {
    width: 350px; /* Keep back size */
    height: auto;
  }
  /* Left column (odd: 1, 3, 5, 7, 9, 11) */
  .file-card:nth-child(odd):hover .file-card-back {
    left: 0; /* Back aligns with left front edge */
  }
  /* Right column (even: 2, 4, 6, 8, 10, 12) */
  .file-card:nth-child(even):hover .file-card-back {
    left: -170px; /* Right edge aligns with front’s right (350px - 180px = 170px) */
  }
}

/* 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:hover .file-card-back {
    width: 350px;
    height: auto;
    left: 50%; /* Center on screen */
    transform: translateX(-50%) rotateY(0deg); /* Proper centering like 360px */
  }
  /* Reset odd/even adjustments—center all */
  .file-card:nth-child(odd):hover .file-card-back,
  .file-card:nth-child(even):hover .file-card-back {
    left: 50%;
    transform: translateX(-50%) rotateY(0deg);
  }
}

/* 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:hover .file-card-back {
    width: 320px;
    height: auto;
    
    transform: translateX(-50%) rotateY(0deg); /* Center properly */
  }
  .file-card:nth-child(odd):hover .file-card-back,
  .file-card:nth-child(even):hover .file-card-back {
    left: 50%;
    transform: translateX(-1%) rotateY(0deg);
  }
}

@media (max-width: 360px) {
  .files-grid {
    grid-template-columns: 1fr;
    max-width: 200px;
  }
  .file-card {
    width: 200px;
    height: 100px;
  }
  .file-card:hover .file-card-back {
    width: 300px;
    height: auto;
    left: 0; /* Single column, no shift */
  }
	
	  .file-card:nth-child(odd):hover .file-card-back {
    left: -50px;
  }
  .file-card:nth-child(even):hover .file-card-back {
    left: -50px; /* 280px back - 180px front = 100px right shift */
  }
}

@media (max-width: 320px) {
  .files-grid {
    grid-template-columns: 1fr;
    max-width: 200px;
  }
  .file-card {
    width: 200px;
    height: 100px;
  }
  .file-card:hover .file-card-back {
    width: 300px;
    height: auto;
    left: 0;
  }
}
@media (max-width: 768px) {
  .file-card {
    cursor: pointer; /* Clickable hint */
    -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.1); /* Match hover flair */
    position: absolute; /* Match hover positioning */
  }
}
@media (max-width: 768px) {
  .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 */
}

/* Fourth row (cards 10, 11, 12) */
.file-card.flipped:nth-child(n+10) .file-card-back {
    top: -300px; /* Adjust as needed, e.g., shift furthest */
}
}
@media (max-width: 630px) {
  .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(n+12) .file-card-back {
    top: -300px; /* Adjust as needed, e.g., shift furthest */
}
}
@media (max-width: 420px) {
  .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 */
  }
}
@media (max-width: 390px) {
    .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 */
  }
}
@media (max-width: 360px) {
  .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 */
  }
}


/*-------File Type Flip Cards -------------------------------------------------------*/


.wrapper-file-type-outside {
  width: 100%;
  height: auto;
  background: linear-gradient(to right, #fff, #ddd);
  margin-top: 0;
  display: grid;
  flex-wrap: wrap;
  justify-content: center;
}

.wrapper-file-type-inside {
  width: 100%;
  height: auto;
  margin: auto;
}

.file-type-title {
  width: 100%;
  text-align: center;
}

.file-type-title h2 {
  font-size: 40px;
  color: #333333;
  text-align: center;
  font-weight: normal;
  font-family: OratorStdMedium;
  margin-top: 60px;
  margin-bottom: 0;
  padding: 0 20px 0 20px;
}

.file-type-title h2 span {
  color: #09C;
  font-weight: bold;
}

.file-type-wrapper {
  width: 100%;
  height: auto;
  margin: auto;
  text-align: center;
  float: left;
  padding: 20px 0;
}

.file-type-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 0 20px;
  position: relative;
  max-width: 1200px; /* 5 cards * (200px + 30px gap) */
}

.file-type-card {
  position: relative;
  width: 200px;
  height: 200px;
  perspective: 1000px;
}

.file-type-card-front,
.file-type-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;
}

.file-type-card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotateY(0deg);
  z-index: 2;
  overflow: visible;
}

.file-type-card-front img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.file-type-card-front h3 {
  font-size: 20px;
  text-decoration: none;
  margin-top: -10px;
  margin-bottom: 70px;
  text-align: center;
  white-space: nowrap;
  font-family: Candara, sans-serif;
  color: #999;
}

.file-type-card-back {
  transform: rotateY(180deg);
  z-index: 1;
  background: linear-gradient(to right, #000, #333333);
  color: #eee;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.file-type-card:hover {
  z-index: 100;
}

.file-type-card:hover .file-type-card-front {
  z-index: 1;
}

.file-type-card:hover .file-type-card-back {
  width: 350px;
  height: auto;
  z-index: 10;
  box-shadow: 0 0 20px rgba(60, 131, 196, 0.7);
  position: absolute;
  left: 0;
}

.file-type-card:nth-child(odd):hover .file-type-card-back {
  top: -150px;
}

.file-type-card:nth-child(even):hover .file-type-card-back {
  top: -150px;
}

/* Flip Directions */
.file-type-card:nth-child(1) .file-type-card-front,
.file-type-card:nth-child(2) .file-type-card-front,
.file-type-card:nth-child(3) .file-type-card-front,
.file-type-card:nth-child(6) .file-type-card-front,
.file-type-card:nth-child(7) .file-type-card-front,
.file-type-card:nth-child(8) .file-type-card-front {
  transform: rotateY(0deg);
}

.file-type-card:nth-child(1):hover .file-type-card-front,
.file-type-card:nth-child(2):hover .file-type-card-front,
.file-type-card:nth-child(3):hover .file-type-card-front,
.file-type-card:nth-child(6):hover .file-type-card-front,
.file-type-card:nth-child(7):hover .file-type-card-front,
.file-type-card:nth-child(8):hover .file-type-card-front {
  transform: rotateY(-180deg);
}

.file-type-card:nth-child(1) .file-type-card-back,
.file-type-card:nth-child(2) .file-type-card-back,
.file-type-card:nth-child(3) .file-type-card-back,
.file-type-card:nth-child(6) .file-type-card-back,
.file-type-card:nth-child(7) .file-type-card-back,
.file-type-card:nth-child(8) .file-type-card-back {
  transform: rotateY(180deg);
}

.file-type-card:nth-child(1):hover .file-type-card-back,
.file-type-card:nth-child(2):hover .file-type-card-back,
.file-type-card:nth-child(3):hover .file-type-card-back,
.file-type-card:nth-child(6):hover .file-type-card-back,
.file-type-card:nth-child(7):hover .file-type-card-back,
.file-type-card:nth-child(8):hover .file-type-card-back {
  transform: rotateY(0deg);
}

.file-type-card:nth-child(4) .file-type-card-front,
.file-type-card:nth-child(5) .file-type-card-front,
.file-type-card:nth-child(9) .file-type-card-front,
.file-type-card:nth-child(10) .file-type-card-front {
  transform: rotateY(0deg);
}

.file-type-card:nth-child(4):hover .file-type-card-front,
.file-type-card:nth-child(5):hover .file-type-card-front,
.file-type-card:nth-child(9):hover .file-type-card-front,
.file-type-card:nth-child(10):hover .file-type-card-front {
  transform: rotateY(180deg);
}

.file-type-card:nth-child(4) .file-type-card-back,
.file-type-card:nth-child(5) .file-type-card-back,
.file-type-card:nth-child(9) .file-type-card-back,
.file-type-card:nth-child(10) .file-type-card-back {
  transform: rotateY(-180deg);
}

.file-type-card:nth-child(4):hover .file-type-card-back,
.file-type-card:nth-child(5):hover .file-type-card-back,
.file-type-card:nth-child(9):hover .file-type-card-back,
.file-type-card:nth-child(10):hover .file-type-card-back {
  transform: rotateY(0deg);
  left: -200px;
}

/* Back Content Styling */
.file-type-card-back img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.file-type-card-back h4 {
  color: #09c;
  font-size: 20px;
  font-weight: bold;
  font-family: OratorStdMedium;
  margin: 0 0 10px;
}

.file-type-card-back p {
  font-size: 18px;
  color: #eee;
  line-height: 1.4;
  margin: 0;
  font-family: Candara;
}

@media (max-width: 1200px) {
  .file-type-title h2 {
    font-size: 32px;
  }
}

@media (max-width: 1024px) {
  .file-type-cards {
    gap: 25px;
  }
  .file-type-card:hover .file-type-card-back {
    width: 350px;
    left: 40px;
  }
  .file-type-card:nth-child(4):hover .file-type-card-back,
  .file-type-card:nth-child(5):hover .file-type-card-back,
  .file-type-card:nth-child(9):hover .file-type-card-back,
  .file-type-card:nth-child(10):hover .file-type-card-back {
    left: -250px;
  }
}

@media (max-width: 768px) {
  .file-type-cards {
    gap: 15px;
  }
  .file-type-card:hover .file-type-card-back {
    width: 350px;
    left: -50px;
  }
  .file-type-card:nth-child(4):hover .file-type-card-back {
    left: -50px;
  }
  .file-type-card:nth-child(5):hover .file-type-card-back {
    left: -150px;
  }
  .file-type-card:nth-child(3):hover .file-type-card-back {
    left: -200px;
  }
  .file-type-card:nth-child(1):hover .file-type-card-back {
    left: 30px;
  }
  .file-type-card:nth-child(1):hover .file-type-card-back {
    top: -250px;
  }
}

@media (max-width: 685px) {
  .file-type-card:nth-child(4):hover .file-type-card-back {
    left: -100px;
  }
  .file-type-card:nth-child(5):hover .file-type-card-back {
    left: -100px;
  }
  .file-type-card:nth-child(3):hover .file-type-card-back {
    left: -50px;
  }
  .file-type-card:nth-child(1):hover .file-type-card-back {
    left: -50px;
  }
  .file-type-card:nth-child(2):hover .file-type-card-back {
    left: -100px;
  }
}

@media (max-width: 587px) {
  .file-type-card:nth-child(4):hover .file-type-card-back {
    left: -200px;
  }
  .file-type-card:nth-child(5):hover .file-type-card-back {
    left: -50px;
  }
  .file-type-card:nth-child(3):hover .file-type-card-back {
    left: 50px;
  }
  .file-type-card:nth-child(1):hover .file-type-card-back {
    left: 50px;
  }
  .file-type-card:nth-child(2):hover .file-type-card-back {
    left: -200px;
  }
  .file-type-card-back p {
    font-size: 16px;
  }
}

@media (max-width: 540px) {
  .file-type-title h2 {
    font-size: 28px;
  }
  .file-type-card {
    width: 150px;
    height: 150px;
  }
  .file-type-card-front img {
    width: 100px;
    height: 100px;
  }
  .file-type-card:nth-child(2):hover .file-type-card-back {
    left: -80px;
  }
  .file-type-card:nth-child(3):hover .file-type-card-back {
    left: -220px;
  }
  .file-type-card:nth-child(4):hover .file-type-card-back {
    left: 0;
  }
  .file-type-card:nth-child(5):hover .file-type-card-back {
    left: -160px;
  }
}

@media (max-width: 518px) {
  .file-type-card:nth-child(1):hover .file-type-card-back {
    left: -25px;
  }
  .file-type-card:nth-child(2):hover .file-type-card-back {
    left: -190px;
  }
  .file-type-card:nth-child(3):hover .file-type-card-back {
    left: -30px;
  }
  .file-type-card:nth-child(4):hover .file-type-card-back {
    left: -190px;
  }
  .file-type-card:nth-child(5):hover .file-type-card-back {
    left: -110px;
  }
}

@media (max-width: 385px) {
  .file-type-card:hover .file-type-card-back {
    width: 320px;
    left: 40px;
  }
  .file-type-card:nth-child(1):hover .file-type-card-back {
    left: -10px;
  }
  .file-type-card:nth-child(2):hover .file-type-card-back {
    left: -170px;
  }
  .file-type-card:nth-child(3):hover .file-type-card-back {
    left: -10px;
  }
  .file-type-card:nth-child(4):hover .file-type-card-back {
    left: -170px;
  }
  .file-type-card:nth-child(5):hover .file-type-card-back {
    left: -90px;
  }
}

@media (max-width: 350px) {
  .file-type-card:hover .file-type-card-back {
    width: 300px;
    left: 40px;
  }
  .file-type-card:nth-child(1):hover .file-type-card-back,
  .file-type-card:nth-child(2):hover .file-type-card-back,
  .file-type-card:nth-child(3):hover .file-type-card-back,
  .file-type-card:nth-child(4):hover .file-type-card-back,
  .file-type-card:nth-child(5):hover .file-type-card-back {
    left: -80px;
  }
}

@media (max-width: 768px) {
  .file-type-card {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .file-type-card:hover .file-type-card-front,
  .file-type-card:hover .file-type-card-back {
    transform: none;
  }
  .file-type-card.flipped {
    z-index: 100;
  }
  .file-type-card.flipped .file-type-card-front {
    z-index: 1;
    transform: rotateY(-180deg);
  }
  .file-type-card.flipped .file-type-card-back {
    z-index: 10;
    transform: rotateY(0deg);
    width: 350px;
    height: auto;
    box-shadow: 0 0 20px rgba(60, 131, 196, 0.7);
    position: absolute;
  }
}

@media (max-width: 768px) {
  .file-type-card.flipped:nth-child(1) .file-type-card-back { left: 30px; top: -150px; }
  .file-type-card.flipped:nth-child(2) .file-type-card-back { left: -100px; top: -150px; }
  .file-type-card.flipped:nth-child(3) .file-type-card-back { left: -200px; top: -150px; }
  .file-type-card.flipped:nth-child(4) .file-type-card-back { left: -50px; top: -300px; }
  .file-type-card.flipped:nth-child(5) .file-type-card-back { left: -150px; top: -300px; }
  .file-type-card.flipped:nth-child(6) .file-type-card-back { left: 30px; top: -450px; }
  .file-type-card.flipped:nth-child(7) .file-type-card-back { left: -100px; top: -450px; }
  .file-type-card.flipped:nth-child(8) .file-type-card-back { left: -200px; top: -450px; }
  .file-type-card.flipped:nth-child(9) .file-type-card-back { left: -50px; top: -600px; }
  .file-type-card.flipped:nth-child(10) .file-type-card-back { left: -150px; top: -600px; }
}

@media (max-width: 669px) {
  .file-type-card.flipped:nth-child(1) .file-type-card-back { left: -50px; top: -100px; }
  .file-type-card.flipped:nth-child(2) .file-type-card-back { left: -100px; top: -100px; }
  .file-type-card.flipped:nth-child(3) .file-type-card-back { left: -50px; top: -200px; }
  .file-type-card.flipped:nth-child(4) .file-type-card-back { left: -100px; top: -200px; }
  .file-type-card.flipped:nth-child(5) .file-type-card-back { left: -100px; top: -300px; }
  .file-type-card.flipped:nth-child(6) .file-type-card-back { left: -50px; top: -400px; }
  .file-type-card.flipped:nth-child(7) .file-type-card-back { left: -100px; top: -400px; }
  .file-type-card.flipped:nth-child(8) .file-type-card-back { left: -50px; top: -500px; }
  .file-type-card.flipped:nth-child(9) .file-type-card-back { left: -100px; top: -500px; }
  .file-type-card.flipped:nth-child(10) .file-type-card-back { left: -100px; top: -600px; }
}

@media (max-width: 587px) {
  .file-type-card.flipped:nth-child(1) .file-type-card-back { left: 50px; }
  .file-type-card.flipped:nth-child(2) .file-type-card-back { left: -200px; }
  .file-type-card.flipped:nth-child(3) .file-type-card-back { left: 50px; }
  .file-type-card.flipped:nth-child(4) .file-type-card-back { left: -200px; }
  .file-type-card.flipped:nth-child(5) .file-type-card-back { left: -50px; }
  .file-type-card.flipped:nth-child(6) .file-type-card-back { left: 50px; }
  .file-type-card.flipped:nth-child(7) .file-type-card-back { left: -200px; }
  .file-type-card.flipped:nth-child(8) .file-type-card-back { left: 50px; }
  .file-type-card.flipped:nth-child(9) .file-type-card-back { left: -200px; }
  .file-type-card.flipped:nth-child(10) .file-type-card-back { left: -50px; }
}

@media (max-width: 540px) {
  .file-type-card.flipped:nth-child(1) .file-type-card-back { left: 50px; }
  .file-type-card.flipped:nth-child(2) .file-type-card-back { left: -110px; }
  .file-type-card.flipped:nth-child(3) .file-type-card-back { left: -220px; }
  .file-type-card.flipped:nth-child(4) .file-type-card-back { left: -50px; }
  .file-type-card.flipped:nth-child(5) .file-type-card-back { left: -130px; }
  .file-type-card.flipped:nth-child(6) .file-type-card-back { left: 50px; }
  .file-type-card.flipped:nth-child(7) .file-type-card-back { left: -110px; }
  .file-type-card.flipped:nth-child(8) .file-type-card-back { left: -220px; }
  .file-type-card.flipped:nth-child(9) .file-type-card-back { left: -50px; }
  .file-type-card.flipped:nth-child(10) .file-type-card-back { left: -130px; }
}

@media (max-width: 518px) {
  .file-type-card.flipped:nth-child(1) .file-type-card-back { left: -17px; }
  .file-type-card.flipped:nth-child(2) .file-type-card-back { left: -180px; }
  .file-type-card.flipped:nth-child(3) .file-type-card-back { left: -17px; }
  .file-type-card.flipped:nth-child(4) .file-type-card-back { left: -180px; }
  .file-type-card.flipped:nth-child(5) .file-type-card-back { left: -100px; }
  .file-type-card.flipped:nth-child(6) .file-type-card-back { left: -17px; }
  .file-type-card.flipped:nth-child(7) .file-type-card-back { left: -180px; }
  .file-type-card.flipped:nth-child(8) .file-type-card-back { left: -17px; }
  .file-type-card.flipped:nth-child(9) .file-type-card-back { left: -180px; }
  .file-type-card.flipped:nth-child(10) .file-type-card-back { left: -100px; }
}

@media (max-width: 360px) {
  .file-type-card.flipped .file-type-card-back {
    width: 300px;
  }
  .file-type-card.flipped:nth-child(1) .file-type-card-back { left: 1px; }
  .file-type-card.flipped:nth-child(2) .file-type-card-back { left: -160px; }
  .file-type-card.flipped:nth-child(3) .file-type-card-back { left: 1px; }
  .file-type-card.flipped:nth-child(4) .file-type-card-back { left: -160px; }
  .file-type-card.flipped:nth-child(5) .file-type-card-back { left: -80px; }
  .file-type-card.flipped:nth-child(6) .file-type-card-back { left: 1px; }
  .file-type-card.flipped:nth-child(7) .file-type-card-back { left: -160px; }
  .file-type-card.flipped:nth-child(8) .file-type-card-back { left: 1px; }
  .file-type-card.flipped:nth-child(9) .file-type-card-back { left: -160px; }
  .file-type-card.flipped:nth-child(10) .file-type-card-back { left: -80px; }
}

@media (max-width: 354px) {
  .file-type-card.flipped .file-type-card-back {
    width: 300px;
  }
  .file-type-card.flipped:nth-child(1) .file-type-card-back { left: -80px; }
  .file-type-card.flipped:nth-child(2) .file-type-card-back { left: -80px; }
  .file-type-card.flipped:nth-child(3) .file-type-card-back { left: -80px; }
  .file-type-card.flipped:nth-child(4) .file-type-card-back { left: -80px; }
  .file-type-card.flipped:nth-child(5) .file-type-card-back { left: -80px; }
  .file-type-card.flipped:nth-child(6) .file-type-card-back { left: -80px; }
  .file-type-card.flipped:nth-child(7) .file-type-card-back { left: -80px; }
  .file-type-card.flipped:nth-child(8) .file-type-card-back { left: -80px; }
  .file-type-card.flipped:nth-child(9) .file-type-card-back { left: -80px; }
  .file-type-card.flipped:nth-child(10) .file-type-card-back { left: -80px; }
}



	
	
/*--------5 easy steps flip card section ------------------------------------------------------*/


.wrapper-process-outside {
  width: 100%;
  height: auto;
  background: linear-gradient(to left, #222 25%, #000 75%);
  position: relative;
  bottom: 0px;

	float: left;
}

.wrapper-process-inside {
  width: 100%;
  height: auto;
  margin: auto;
  padding: 20px 0; /* Minimal padding - Trust-like */
}

.process-title {
  width: 100%;
  text-align: center;
}

.process-title h2 {
  font-size: 40px;
  color: #fff;
  text-align: center;
  font-weight: normal;
  font-family: OratorStdMedium;
	padding-top: 40px;
	margin-bottom: -30px;
	margin-left: 20px;
	margin-right: 20px;
}

.process-title h2 span {
  color: #09C;
  font-weight: bold;
}

.process-cards {
  display: flex;
  justify-content: center;
  gap: 30px; /* Base gap - Trust’s starting point */
  padding: 0;
  position: relative; /* Contain stacking context */
}

.process-card {
  position: relative;
  width: 200px;
  min-height: 250px;
  perspective: 1000px;
}

.process-card-front,
.process-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;
}

.process-card-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotateY(0deg);
  z-index: 2;
  overflow: visible; /* Prevent image clipping */
  background: transparent;
  color: #fff;
}

.process-card-front img {
  width: 115px;
  height: 115px;
  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 h5 {
  color: #09c;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 0;
  text-transform: uppercase;
  font-family: Candara;
}

.process-card-back {
  transform: rotateY(180deg);
  z-index: 1;
  background: linear-gradient(to bottom left, #ddd 25%, #fff 75%);
  color: #999999;
  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 {
  z-index: 1; /* Front drops below back - Trust’s key */
  transform: rotateY(-180deg); /* Explicit flip - Trust’s logic */
}

.process-card:hover .process-card-back {
  width: 350px;
  height: auto; /* Grows as needed */
  z-index: 10; /* Back above front - Trust’s key */
  transform: rotateY(0deg); /* Explicit flip - Trust’s logic */
  box-shadow: 0 0 20px rgba(60, 131, 196, 0.7); /* Optional Trust flair */
  position: absolute;
  left: 0; /* Default centered */
}

/* 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; /* 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; /* Right cards shift left - Trust’s Card 5 */
}

/* Back Content Styling */
.process-card-back img {
  width: 51px;
  height: 45px;
  margin-bottom: 15px;
}

.process-card-back h4 {
  color: #09c;
  font-size: 20px;
  font-weight: bold;
  font-family: OratorStdMedium;
  margin: 0 0 15px;
}

.process-card-back p {
  font-size: 18px;
  color: #333;
  line-height: 1.4;
  margin: 0;
  font-family: Candara;
	margin-bottom: 15px;
}

.process-card-back span {
  color: #F36D26;
}

/* Responsive Adjustments */
@media (max-width: 1550px) {
  .process-cards { gap: 25px; }
  .process-card { width: 180px; height: 220px; }
  .process-card-front img { width: 100px; height: 90px; }
  .process-card-front h5 { font-size: 16px; }
  .process-card-back { width: 180px; }
  .process-card:hover .process-card-back { width: 350px; }
  .process-card:nth-child(4):hover .process-card-back,
  .process-card:nth-child(5):hover .process-card-back { left: -170px; }
}

@media (max-width: 1080px) {
  .process-cards { gap: 25px; } /* Trust’s 1024px scaling */
  .process-card { width: 160px; height: 200px; }
  .process-card-front img { width: 90px; height: 80px; }
  .process-card-front h5 { font-size: 14px; }
  .process-card-back { width: 160px; }
  .process-card:hover .process-card-back { width: 350px; }
  .process-card:nth-child(4):hover .process-card-back,
  .process-card:nth-child(5):hover .process-card-back { left: -190px; }
  .process-title h2 {
  	font-size: 32px;
  
	}
}

@media (max-width: 967px) {
  .process-cards { gap: 15px; } /* Trust’s smoother scale */
  .process-card { width: 150px; height: 190px; }
  .process-card-front img { width: 85px; height: 75px; }
  .process-card-front h5 { font-size: 13px; }
  .process-card-back { width: 150px; }
  .process-card:hover .process-card-back { width: 350px; }
  .process-card:nth-child(4):hover .process-card-back,
  .process-card:nth-child(5):hover .process-card-back { left: -200px; }
}

@media (max-width: 881px) {
  .process-cards { gap: 10px; }
  .process-card { width: 140px; height: 180px; }
  .process-card-front img { width: 80px; height: 70px; }
  .process-card-front h5 { font-size: 12px; }
  .process-card-back { width: 140px; }
  .process-card:hover .process-card-back { width: 350px; }
  .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: -200px; }
  .process-card:nth-child(5):hover .process-card-back { left: -210px; }
}

@media (max-width: 838px) {
  .process-cards { gap: 10px; }
  .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: -200px; }
  .process-card:nth-child(5):hover .process-card-back { left: -250px; } /* Your manual edit */
}

@media (max-width: 825px) {
  .process-cards { gap: 10px; }
  .process-card:nth-child(5):hover .process-card-back { left: -250px; } /* Shift 100px left from -150px */
}

@media (max-width: 800px) {
  .process-cards {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 20px; /* Keep original padding */
    flex-wrap: wrap; /* Cards move to next row when they hit the wall */
    max-width: 100%; /* Ensure full container width */
  }

  .process-card {
    position: relative;
    width: 140px; /* Back to your original size */
    height: 180px;
    perspective: 1000px;
  }

  .process-card-front,
  .process-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;
  }

  .process-card-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotateY(0deg);
    z-index: 2;
    overflow: hidden; /* Contain content */
    background: transparent;
    color: #fff;
    padding: 10px; /* Consistent spacing */
    box-sizing: border-box;
  }

  .process-card-front img {
    width: 80px; /* Restore original front image size */
    height: 70px;
    object-fit: contain;
  }

  .process-card-front h5 {
    color: #999999;
    font-size: 12px; /* Original size */
    font-weight: bold;
    margin: 10px 0 0; /* Adjusted for fit */
    text-transform: uppercase;
    font-family: Candara;
    text-align: center;
    line-height: 1.2;
  }


  .process-card:hover {
    z-index: 100; /* Lift card on hover */
  }

  .process-card:hover .process-card-front {
    z-index: 1;
    transform: rotateY(-180deg);
  }

  .process-card:hover .process-card-back {
    width: 350px;
    height: auto;
    z-index: 10;
    transform: rotateY(0deg);
    box-shadow: 0 0 20px rgba(60, 131, 196, 0.7);
    position: absolute;
    left: 0;
  }

  /* Hover positions for back cards */
  .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: -200px; }
  .process-card:nth-child(5):hover .process-card-back { left: -250px; }
}
@media (max-width: 763px) {
  .process-cards { gap: 10px; }
  .process-card { width: 140px; height: 180px; }
  .process-card-front img { width: 80px; height: 70px; }
  .process-card-front h5 { font-size: 12px; }
  .process-card:hover .process-card-back { width: 350px; }
  .process-card:nth-child(1):hover .process-card-back { left: 50px; }
  .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: -200px; }
  .process-card:nth-child(5):hover .process-card-back { left: -210px; }
}

@media (max-width: 755px) {
  .process-cards { gap: 10px; }
  .process-card:nth-child(1):hover .process-card-back { left: 50px; }
  .process-card:nth-child(2):hover .process-card-back { left: -100px; }
  .process-card:nth-child(3):hover .process-card-back { left: -120px; }
  .process-card:nth-child(4):hover .process-card-back { left: -200px; }
  .process-card:nth-child(5):hover .process-card-back { left: -50px; }
}

@media (max-width: 607px) {
  .process-card:nth-child(1):hover .process-card-back { left: 50px; }
  .process-card:nth-child(2):hover .process-card-back { left: -100px; }
  .process-card:nth-child(3):hover .process-card-back { left: -180px; }
  .process-card:nth-child(4):hover .process-card-back { left: -100px; }
  .process-card:nth-child(5):hover .process-card-back { left: -190px; }
}

@media (max-width: 540px) {
  .process-card:nth-child(1):hover .process-card-back { left: -20px; }
  .process-card:nth-child(2):hover .process-card-back { left: -170px; }
  .process-card:nth-child(3):hover .process-card-back { left: -20px; }
  .process-card:nth-child(4):hover .process-card-back { left: -170px; }
  .process-card:nth-child(5):hover .process-card-back { left: -85px; }
	
}

@media (max-width: 480px) {
  .process-title h2 { font-size: 24px; }
  .process-cards { 
    flex-direction: column; 
    align-items: center; 
    gap: 20px; 
  }
  .process-title h2 {
  	font-size: 28px;
	  margin-bottom: -10px;
  
	}
  .process-card { width: 200px; height: 250px; }
  .process-card-front img { width: 125px; height: 110px; }
  .process-card-front h5 { font-size: 16px; }
  .process-card-back { width: 200px; }
  .process-card:hover .process-card-back { width: 350px; }
  .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,
  .process-card:nth-child(4):hover .process-card-back,
  .process-card:nth-child(5):hover .process-card-back {
    left: -75px; /* Center adjust: (350px - 200px) / 2 */
  }
	.process-card {
 margin:-30px;
		padding: 0;
}
}

@media (max-width: 415px) {
  .process-card { width: 180px; height: 220px; }
  .process-card-front img { width: 100px; height: 90px; }
  .process-card-front h5 { font-size: 14px; }
  .process-card-back { width: 180px; }
  .process-card:hover .process-card-back { width: 300px; }
  .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,
  .process-card:nth-child(4):hover .process-card-back,
  .process-card:nth-child(5):hover .process-card-back {
    left: -60px; /* Adjusted: (300px - 180px) / 2 */
  }
}

@media (max-width: 375px) {
  .process-card { width: 170px; height: 210px; }
  .process-card-front img { width: 95px; height: 85px; }
  .process-card-front h5 { font-size: 13px; }
  .process-card-back { width: 170px; }
  .process-card:hover .process-card-back { width: 275px; }
  .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,
  .process-card:nth-child(4):hover .process-card-back,
  .process-card:nth-child(5):hover .process-card-back {
    left: -52.5px; /* Adjusted: (275px - 170px) / 2 */
  }
}

@media (max-width: 320px) {
  .process-card { width: 160px; height: 200px; }
  .process-card-front img { width: 90px; height: 80px; }
  .process-card-front h5 { font-size: 12px; }
  .process-card-back { width: 160px; }
  .process-card:hover .process-card-back { width: 250px; }
  .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,
  .process-card:nth-child(4):hover .process-card-back,
  .process-card:nth-child(5):hover .process-card-back {
    left: -45px; /* Adjusted: (250px - 160px) / 2 */
  }
}
@media (max-width: 768px) {
  .process-card {
    cursor: pointer; /* Clickable hint */
    -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 */
    box-shadow: 0 0 20px rgba(60, 131, 196, 0.7); /* Match hover flair */
    position: absolute; /* Match hover positioning */
  }
}
@media (max-width: 800px) {
  .process-card.flipped:nth-child(1) .process-card-back { left: 0; }
  .process-card.flipped:nth-child(2) .process-card-back { left: -100px; }
  .process-card.flipped:nth-child(3) .process-card-back { left: -150px; }
  .process-card.flipped:nth-child(4) .process-card-back { left: -200px; }
  .process-card.flipped:nth-child(5) .process-card-back { left: -250px; }
}
@media (max-width: 763px) {
  .process-card.flipped:nth-child(1) .process-card-back { left: 10px; }
  .process-card.flipped:nth-child(2) .process-card-back { left: -100px; }
  .process-card.flipped:nth-child(3) .process-card-back { left: -150px; }
  .process-card.flipped:nth-child(4) .process-card-back { left: -200px; }
  .process-card.flipped:nth-child(5) .process-card-back { left: -130px; }
}
@media (max-width: 755px) {
  .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: -120px; }
  .process-card.flipped:nth-child(4) .process-card-back { left: -200px; }
  .process-card.flipped:nth-child(5) .process-card-back { left: -70px; }
}
@media (max-width: 629px) {
  .process-card.flipped:nth-child(1) .process-card-back { left: 10px; }
  .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: -100px; }
  .process-card.flipped:nth-child(5) .process-card-back { left: -190px; }
}
@media (max-width: 540px) {
  .process-card.flipped:nth-child(1) .process-card-back { left: -10px; }
  .process-card.flipped:nth-child(2) .process-card-back { left: -110px; }
  .process-card.flipped:nth-child(3) .process-card-back { left: -220px; }
  .process-card.flipped:nth-child(4) .process-card-back { left: -50px; }
  .process-card.flipped:nth-child(5) .process-card-back { left: -140px; }
}
@media (max-width: 480px) {
  .process-card.flipped .process-card-back {
    width: 350px; /* Match your adjustment */
  }
  .process-card.flipped:nth-child(1) .process-card-back,
  .process-card.flipped:nth-child(2) .process-card-back,
  .process-card.flipped:nth-child(3) .process-card-back,
  .process-card.flipped:nth-child(4) .process-card-back,
  .process-card.flipped:nth-child(5) .process-card-back {
    left: -75px; /* Center adjust: (350px - 200px) / 2 */
  }
}
@media (max-width: 415px) {
  .process-card.flipped .process-card-back {
    width: 300px; /* Match your adjustment */
  }
  .process-card.flipped:nth-child(1) .process-card-back,
  .process-card.flipped:nth-child(2) .process-card-back,
  .process-card.flipped:nth-child(3) .process-card-back,
  .process-card.flipped:nth-child(4) .process-card-back,
  .process-card.flipped:nth-child(5) .process-card-back {
    left: -60px; /* Adjusted: (300px - 180px) / 2 */
  }
}
@media (max-width: 375px) {
  .process-card.flipped .process-card-back {
    width: 275px; /* Match your adjustment */
  }
  .process-card.flipped:nth-child(1) .process-card-back,
  .process-card.flipped:nth-child(2) .process-card-back,
  .process-card.flipped:nth-child(3) .process-card-back,
  .process-card.flipped:nth-child(4) .process-card-back,
  .process-card.flipped:nth-child(5) .process-card-back {
    left: -52.5px; /* Adjusted: (275px - 170px) / 2 */
  }
}
@media (max-width: 320px) {
  .process-card.flipped .process-card-back {
    width: 250px; /* Match your adjustment */
  }
  .process-card.flipped:nth-child(1) .process-card-back,
  .process-card.flipped:nth-child(2) .process-card-back,
  .process-card.flipped:nth-child(3) .process-card-back,
  .process-card.flipped:nth-child(4) .process-card-back,
  .process-card.flipped:nth-child(5) .process-card-back {
    left: -45px; /* Adjusted: (250px - 160px) / 2 */
  }
}

/*----------National Reviews Section---------------------------------------------------------------------*/

.reviews-section {
    position: relative;
    z-index: 1000;
}
.national-scroll-carousel {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
      background: linear-gradient(100deg, #000, #666);
    padding: 20px;
    box-sizing: border-box;
    touch-action: pan-x pinch-zoom;
    user-select: none;
}

.national-scroll-track {
    display: flex;
    width: max-content;
    gap: 20px;
}

.national-scroll-track.no-animation {
    animation: none;
}

.national-scroll-card {
    flex: 0 0 auto;
    width: 350px;
    height: 250px;
    background: linear-gradient(135deg, #ffffff, #f0f4f8);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    isolation: isolate;
}

.national-scroll-google-logo {
    width: 40px;
    height: auto;
    vertical-align: middle;
    margin-left: 50px;
}

.national-scroll-card p {
    margin: 5px 0;
}

.national-scroll-text {
    max-height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    font-family: candara;
    letter-spacing: 2px;
}

.national-scroll-stars-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.national-scroll-rating {
    color: #f5c518;
    font-size: 20px;
    text-align: left;
    padding-right: 50px;
}

.national-scroll-author-city {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding-right: 30px;
}

.national-scroll-customer {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    color: #333;
    font-size: 16px;
    margin-left: 30px;
}

.national-scroll-location {
    font-style: italic;
    color: #777;
    font-size: 16px;
}

.national-scroll-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;
}

.national-scroll-read-more:hover {
    background: #0870a3;
}

.national-scroll-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 400px;
    min-height: 100px;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    will-change: transform, opacity;
}

.national-scroll-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;
}

.national-scroll-close-popup {
    background: #F36D26;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.national-scroll-close-popup:hover {
    background: #d35e20;
}

/* National Scroll Carousel - Mobile Scrolling */
@media (max-width: 768px) {
    .national-scroll-section {
        z-index: 1000;
    }
    .national-scroll-carousel {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        margin: 40px 0;
        padding: 20px;
        box-sizing: border-box;
    }
    .national-scroll-track {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
        gap: 15px;
    }
    .national-scroll-card {
        flex: 0 0 300px;
        height: 250px;
        margin-right: 15px;
        scroll-snap-align: center;
    }
    .national-scroll-read-more {
        font-size: 16px;
        padding: 4px 8px;
    }

    .national-scroll-popup {
        width: 95vw;
        max-width: 360px;
    }
}

@media (max-width: 465px) {
    .national-scroll-carousel {
        overflow-x: hidden;
    }
    .national-scroll-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        touch-action: pan-x;
    }
    .national-scroll-card {
        flex: 0 0 300px;
        height: 220px;
        margin-right: 10px;
    }
    .national-scroll-text {
        font-size: 16px;
        max-height: 80px;
    }
    .national-scroll-read-more {
        font-size: 14px;
    }
    .national-scroll-popup {
        width: 90vw;
        max-width: 300px;
    }
}
/*----------OS Flip Card Section ------------------------------------------------------------------*/



.OS-container {
  width: 100%;
  height: auto;
  background: linear-gradient(to bottom left, #333 25%, #000 75%);
  padding: 20px 0 60px;
  text-align: center;
}

.OS-container h2 {
  font-size: 40px;
  color: #fff;
  font-family: OratorStdMedium;
  margin: 60px 20px 40px 20px;
}

.OS-container h2 span {
  color: #09c;
}

.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;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom left, #333 25%, #000 75%);
  transform: rotateY(0deg);
}

.OS-flip-back {
  background: linear-gradient(to bottom left, #666 25%, #222 75%);
  transform: rotateY(180deg);
  padding: 20px;
  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: -170px;}
.OS-flip-card:nth-child(2):hover .OS-flip-back {top: -170px;}
.OS-flip-card:nth-child(3):hover .OS-flip-back {top: -170px;}
.OS-flip-card:nth-child(4):hover .OS-flip-back {top: -170px;}
.OS-flip-card:nth-child(5):hover .OS-flip-back {top: -170px;}
.OS-flip-card:nth-child(6):hover .OS-flip-back {
  left: -220px; /* Shift left—right edge aligns with front’s right (350px - 130px = 220px) */
	top: -170px;
}



.OS-small-logo {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  position: relative;
  top: 0; /* Lock position */
  transition: none; /* No transition on logo—prevents jump */
}

.OS-flip-back h4 {
  color: #09C;
  font-size: 20px;
  font-weight: bold;
  font-family: OratorStdMedium;
  margin: 0 0 10px;
}

.OS-flip-back p {
  font-size: 17px;
  font-family: Candara;
  letter-spacing: 2px;
  margin: 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 */
  }

  .OS-flip-card:hover .OS-flip-back {
    width: 350px;
  }
}
@media (max-width: 600px){
	.OS-container h2 {
  font-size: 30px;
 
}
}

@media (max-width: 465px) { /* Shrink backs only here */
	
	.OS-flip-card:nth-child(1):hover .OS-flip-back {
    left: -35px; /* Center on screen—half back width (350px / 2 = 175px) */
  }

  .OS-flip-card:nth-child(2):hover .OS-flip-back {
    left: -185px; /* Shift left—right edge aligns with front’s right */
  }

  .OS-flip-card:nth-child(3):hover .OS-flip-back {
    left: -35px; /* Center on screen—half back width */
  }

  .OS-flip-card:nth-child(4):hover .OS-flip-back {
    left: -185px; /* Shift left—right edge aligns with front’s right */
  }
.OS-flip-card:nth-child(5):hover .OS-flip-back {
    left: -35px; /* Shift left—right edge aligns with front’s right */
  }
	.OS-flip-card:nth-child(6):hover .OS-flip-back {
    left: -185px; /* Shift left—right edge aligns with front’s right */
  }
  
}
@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;
  }
}

@media (max-width: 1020px) {
  .OS-flip-card.flipped:nth-child(1) .OS-flip-back,
  .OS-flip-card.flipped:nth-child(2) .OS-flip-back,
  .OS-flip-card.flipped:nth-child(3) .OS-flip-back,
  .OS-flip-card.flipped:nth-child(4) .OS-flip-back,
  .OS-flip-card.flipped:nth-child(5) .OS-flip-back,
  .OS-flip-card.flipped:nth-child(6) .OS-flip-back {
    left: 0; /* Reset to center */
  }
	/* Third row (cards 1, 2, 3) */
.OS-flip-card.flipped:nth-child(-n+3).OS-flip-back {
    top: -100px; /* Adjust as needed, e.g., shift further */
}
/* Third row (cards 3, 4, 5) */
.OS-flip-card.flipped:nth-child(n+4) .OS-flip-back {
    top: -300px; /* Adjust as needed, e.g., shift further */
}
}
@media (max-width: 890px) {
  .OS-flip-card.flipped:nth-child(1) .OS-flip-back,
  .OS-flip-card.flipped:nth-child(4) .OS-flip-back {
    left: 0; /* Flip right—no shift */
  }
  .OS-flip-card.flipped:nth-child(2) .OS-flip-back {
    left: -110px; /* Center on screen */
  }
  .OS-flip-card.flipped:nth-child(3) .OS-flip-back {
    left: -220px; /* Shift left */
  }
  .OS-flip-card.flipped:nth-child(5) .OS-flip-back {
    left: -110px; /* Center on screen */
  }
  .OS-flip-card.flipped:nth-child(6) .OS-flip-back {
    left: -220px; /* Shift left */
  }
}
@media (max-width: 768px) {
  .OS-flip-card {
    cursor: pointer; /* Clickable hint */
    -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: 449px) {
  .OS-flip-card.flipped:nth-child(1) .OS-flip-back {
    left: -50px;
	  top: -150px;
  }
  .OS-flip-card.flipped:nth-child(2) .OS-flip-back {
    left: -190px;
	  top: -150px;
  }

  .OS-flip-card.flipped:nth-child(3) .OS-flip-back {
    left: -50px;
	  top: -200px;
  }
  .OS-flip-card.flipped:nth-child(4) .OS-flip-back {
    left: -190px;
	  top: -200px;
  }
  .OS-flip-card.flipped:nth-child(5) .OS-flip-back {
    left: -50px;
	  top: -300px;
  }
  .OS-flip-card.flipped:nth-child(6) .OS-flip-back {
    left: -190px;
	  top: -300px;
  }

	}
@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: -20px;
  }
  .OS-flip-card.flipped:nth-child(2) .OS-flip-back {
    left: -160px;
  }
  .OS-flip-card.flipped:nth-child(3) .OS-flip-back {
    left: -20px;
  }
  .OS-flip-card.flipped:nth-child(4) .OS-flip-back {
    left: -160px;
  }
  .OS-flip-card.flipped:nth-child(5) .OS-flip-back {
    left: -20px;
  }
  .OS-flip-card.flipped:nth-child(6) .OS-flip-back {
    left: -160px;
  }
}



/*----Legendary Wins | Avoidable Disasters Section ----------------------------------------------*/



.stories-section {
  background: #eee;
  padding: 30px 0;
  text-align: center;
}

.stories-section h2 {
  font-size: 45px;
  font-family: 'OratorStdMedium', sans-serif;
  color: #333333;
  margin-bottom: 10px;
  margin-left: 50px;
  margin-right: 50px;
}
.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;
}
.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 */
}
.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 0 10px rgba(60, 131, 196, 0.5); /* Blue glow */
}

.horror-card .card-front {
  width: 210px;
  height: 70px; /* 4 * 70px + 20px * 3 = 340px */
  box-shadow: 0 0 10px rgba(243, 109, 38, 0.5); /* Orange glow */
}

.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: 16px;
  font-family: 'Open Sans Condensed', sans-serif;
  color: #333333;
  margin: 0; /* Remove default margins */
  flex-grow: 1; /* Fill remaining space */
  text-align: center; /* Center text horizontally within its space */
}
.card-back {
  transform: rotateY(180deg);
  z-index: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.horror-container .card-back h5 {
  font-size: 20px;
  font-family: 'Open Sans Condensed', sans-serif;
  color: #F36D26;
  margin-bottom: 15px;
}
.wins-container .card-back h5 {
  font-size: 20px;
  font-family: 'Open Sans Condensed', sans-serif;
  color: #09c;
  margin-bottom: 15px;
}
.card-back img {
	width: 40px;
	height: auto;
	text-align:left;
	
}

.card-back p {
  font-size: 17px;
  font-family: 'Open Sans Condensed', sans-serif;
  color: #333333;
  line-height: 1.4;
}

/* 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 */
}

.cta-button {
  display: block;
  font-size: 20px;
  font-family: 'Open Sans Condensed', sans-serif;
  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;
}

.cta-button:hover {
  background: #041E3D;
}

/* 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 {
    cursor: pointer; /* Clickable hint */
    -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-color: #fff;
    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 h3 {
    font-size: 45px;
    font-family: OratorStdMedium;
    color: #333;
    text-align: center;
}

.emergency-left h3 span {
    color: #09c;
}

.emergency-left p {
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
}

.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) {
    .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) {
    .wrapper-emergency-inside {
        width: 100%;
    }
    .emergency-left {
        width: 90%;
    }
}

@media screen and (max-width: 540px) {
    .emergency-left h3 {
        font-size: 25px;
    }
}

	
	
	/*---- How Fast Can You Recover My Data ----------------------------------------------*/



.speed-section {
  background: #ffffff;
  padding: 30px 0;
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
}

.speed-section h2 {
  font-size: 45px;
  font-family: 'OratorStdMedium', sans-serif;
  color: #333333;
  margin: 40px 20px 40px 20px;
}

.speed-section h2 span {
  color: #09c;
}

.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;
}

.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: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.speed-card-back h4 {
  font-size: 20px;
  font-family: 'OratorStdMedium', sans-serif;
  color: #09C;
  margin: 0 0 15px;
  letter-spacing: -1px;
}

.speed-card-back p {
  font-size: 18px;
  font-family: 'Candara', sans-serif;
  color: #FFF;
  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);
}

/* Mobile Click-to-Flip Rules */
@media (max-width: 768px) {
  .speed-card {
    cursor: pointer; /* Clickable hint */
    -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: 28px;
  }
}
@media (max-width: 400px) {
  .speed-section {
    padding: 20px 0;
  }
  .speed-card {
    width: 300px;
    height: 350px;
  }
  .speed-card-front h2 {
    font-size: 24px;
  }
  .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, #222, #111);
  padding: 30px 0 0;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1000;
	overflow: hidden;
}

.brands-section h2 {
  font-size: 55px;
  font-family: 'OratorStdMedium', sans-serif;
  color: #ffffff;
  margin-bottom: 60px;
  margin-left: 50px;
  margin-right: 50px;
  margin-top: 0;
}

.brands-section h2 span {
  color: #09c;
}

.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: -150px; 
}
 .brand-card:nth-child(even):hover .brand-card-back {
    top: -150px; 
}
.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: 22px;
  font-weight: 700;
  font-family: candara;
  max-width: 320px;
  margin: 0 0 20px;
  white-space: normal;
}

.brand-card-back p {
  font-size: 18px;
  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: 800px) {
  .brands-section h2 {
    font-size: 36px;
  }
}
/* 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: 32px;
  }
}




/*------------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-top: 0;
}

.promise-title h2 {
    font-size: 2.5rem;
    color: #fff;
    font-family: 'OratorStdMedium', sans-serif;
    margin: 0; /* Removes potential extra top margin */
}

.promise-title h2 span {
    color: #09c;
}

.promise-left p {
    font-size: 20px;
    color: #ccc;
    line-height: 1.6;
	margin-bottom: 20px;
}
.about-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);   
	}

.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('file:///C|/Users/brent/My Drive/FileSavers/Images/our-promise.png') 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: 20px;
    }
   
}
@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;
	}
}
	
@media screen and (max-width: 479px){
	
.promise-left h2
	{
		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;}
/* Footer Media Queries */
/* No specific media queries found for .footer or .footertext in the provided CSS */

/* Miscellaneous Section (Accordion and Other Unsectioned Styles) */
.wrapper-content-outside {
    width: 100%;
    height: auto;
    background-image: url(file:///C|/Users/brent/My%20Drive/FileSavers/Images/hard-drive.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    float: left;
    position: relative;
}
.wrapper-content-inside {
    margin: auto;
    width: 50%;
}
.tab {
    position: relative;
    margin-bottom: 1px;
    width: 100%;
    color: #333;
    overflow: hidden;
    font-size: 25px;
    font-family: verdana;
}
.tab input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.tab label {
    position: relative;
    display: block;
    background: none;
    font-weight: bold;
    height: auto;
    text-align: center;
    padding-top: 50px;
}
.tab-content {
    max-height: 0;
    overflow: hidden;
    background: #none;
    -webkit-transition: max-height .35s;
    -o-transition: max-height .35s;
    transition: max-height .35s;
    font-size: 16px;
    padding-top: 50px;
    width: 100%;
    float: left;
    text-align: center;
}
.tab-content p {
    font-size: 14px;
}
.tab-content h3 {
    font-size: 20px;
    color: #F36D26;
}
.tab input:checked ~ .tab-content {
    max-height: 900vh;
}

/*----test section ------------------------------------------------------------------------*/
 /* Flip Card Styles */
    .flip-card {
        perspective: 1000px;
    }
    .flip-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 0.6s;
        transform-style: preserve-3d;
    }
    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
    }
    .flip-card-front, .flip-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
    }
    .flip-card-back {
        transform: rotateY(180deg);
    }
/* Miscellaneous Media Queries */
/* No specific media queries found for .wrapper-content-outside, .tab, etc. in the provided CSS */

