	
@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');
}



body 
	{
		margin: 0;
		padding: 0;
		color: #fff;
		background-color: #000;
		font-family:'Open Sans Condensed', sans-serif;
		letter-spacing:1.5px;
		font-size: 75%;
		line-height: 1.4;
	}



/* ~~ This fixed width container surrounds all other divs ~~ */

.container {
    min-height: 100vh; /* Full viewport height minus header margin */
    display: flex;
    flex-direction: column;
	background-color: #ffffff;
	margin-top: 0;
	
}
.content {
    flex-grow: 1; /* Expand to push footer down */
}


/* ~~ The header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo. ~~ */

/* ------- Start of Main Menu ------------------------------------------------------------------------*/

/* Fixed Header */
.fixed-header {
  position: fixed;
  top: 0;
	left: 0;
  width: 100%;
	z-index: 99999;
	background-color: #09c;
	
}

/* Top Menu */
.top-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  margin: 0 auto;
  background: #09c;
  padding: 10px 0;
  height: 20px;
	z-index: 99999;
	
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 5px;
	

}
.phone-number a{
 
	font-weight: 900;
	text-decoration: none;
}
.phone-number a:hover {
	color: #ddd;
}
.phone-number span
{
	padding-right: 5px;
}

.phone-icon {
  width: 24px;
  height: 24px;
	margin-right: 10px;
}
.cta-call-for-help {
	color: #333;
	font-size: 24px;
}
.phone-link {
  color: #fff; /* Blue option */
  font-size: 24px;
  text-decoration: none;
  font-family: 'OratorStdMedium', sans-serif;
	
}




.quote-button .btn-quote {
  background: #F36D26; /* Orange */
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  font-family: candara;
  font-weight: bold;
	letter-spacing: 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;
  }
	}


/*-----------Reasons Flip Card Section --------------------------------------------------------------*/
   
        .reasons-section {
            background: #ffffff;
            padding: 30px 0;
            text-align: center;
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
        }

        .reasons-section h1 {
            font-size: 40px;
            font-weight: bold;
            font-family: 'OratorStdMedium', sans-serif;
            color: #333333;
            margin-bottom: 0px;
            width: 95%;
            padding-top: 50px;
            position: relative;
			margin-top: 90px;
			letter-spacing: -3px;
        }

        .reasons-section h1 span {
            color: #09c;
        }
       .reasons-section h2 {
            font-size: 24px;
            margin-bottom: 40px;
            line-height: 1.2;
            font-family: Candara;
            color: #999;
            font-weight: bold;
        }
        /* Grid Layout */
        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(4, 250px);
            gap: 25px;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
			z-index:1;
			margin-bottom: 100px;
        }

        /* Card Container */
        .reason-card {
            position: relative;
            width: 250px;
            height: 250px;
            perspective: 1000px;
            z-index: 1;
            margin: 0;
            padding: 0;
        }
.reason-card-flipped {
	z-index:100;
}
        /* Front and Back Base Styles */
        .reason-card-front,
        .reason-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;
            border-radius: 8px;
            transform-style: preserve-3d;
			
        }

        /* Front Styling */
        .reason-card-front {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: rotateY(0deg);
			background: #fff;
        }

        .reason-icon {
            width: 100px;
            height: 100px;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
        }

        .reason-card-front h4 {
            font-size: 18px;
            font-weight: bold;
            font-family: candara;
            color: #09c;
            margin: 15px 10px 10px 10px;
        }

        /* Back Styling */
        .reason-card-back {
            transform: rotateY(180deg);
            width: 250px; /* Base matches front */
            height: auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            text-align: center;
			background: linear-gradient(to right, #eee, #fff); /* Black to #333333 back */
			
        }

        .reason-back-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 15px;
        }

        .reason-card-back h4 {
            font-size: 20px;
            font-weight: bold;
            font-family: OratorStdMedium;
            color: #F36D26;
            margin-bottom: 5px;
			letter-spacing: -2px;
			line-height: 1.5;
        }

        .reason-card-back p {
            font-size: 16px;
            font-family: candara;
            color: #333333;
            line-height: 1.4;
            flex-grow: 1;
        }

        /* Flip Effect with Z-Index */
        .reason-card:hover {
            z-index: 100;
        }

        .reason-card:hover .reason-card-front {
            transform: rotateY(-180deg);
        }

        .reason-card:hover .reason-card-back {
            transform: rotateY(0deg);
            width: 350px;
            height: auto;
             box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Added drop shadow */
        }
         /* Top Row Cards (1,2,3,4) - Shift Up */
        .reason-card:nth-child(1):hover .reason-card-back,
        .reason-card:nth-child(2):hover .reason-card-back,
        .reason-card:nth-child(3):hover .reason-card-back,
        .reason-card:nth-child(4):hover .reason-card-back{
            top: -50px;
        }
          /* Middle Row Cards (5,6,7,8) - Shift Up */
        .reason-card:nth-child(5):hover .reason-card-back,
        .reason-card:nth-child(6):hover .reason-card-back,
        .reason-card:nth-child(7):hover .reason-card-back, 
        .reason-card:nth-child(8):hover .reason-card-back {
            top: -50px;
        }
        /* Bottom Row Cards (9,10,11,12) - Shift Up */
        .reason-card:nth-child(9):hover .reason-card-back,
        .reason-card:nth-child(10):hover .reason-card-back,
        .reason-card:nth-child(11):hover .reason-card-back, 
        .reason-card:nth-child(12):hover .reason-card-back {
            top: -50px;
        }

        /* Right-Side Cards Adjustment (Columns 3, 6, 9) */
        .reason-card:nth-child(4n):hover .reason-card-back {
            left: -140px;
        }

     

        /* Responsive Design */
        @media (max-width: 1200px) {
			  /* Grid Layout */
        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(3, 250px);
            gap: 20px;
            width: 790px;
          
        }
            .reason-card:nth-child(3n):hover .reason-card-back {
				
                left: -140px;
            }
			 .reason-card:nth-child(8):hover .reason-card-back,
			 .reason-card:nth-child(4):hover .reason-card-back {
				
                left: 0px;
            }
        }

        @media (max-width: 900px) {
            .reasons-grid {
                grid-template-columns: repeat(2, 250px);
                width: 540px;
         
            }
            .reason-card {
                width: 250px;
                height: 250px;
            }
            .reason-card-front,
            .reason-card-back {
                width: 100%;
                height: 100%;
            }
            .reason-card:hover .reason-card-back {
                width: 350px;
                height: auto;
            }
          
			   .reason-card:nth-child(1n):hover .reason-card-back {
				
                left: 0;
            }
			    .reason-card:nth-child(2n):hover .reason-card-back {
				
                left: -140px;
            }
        }

      

        @media (max-width: 768px) {
			 .reasons-section h1 {
                font-size: 35px;              
                margin-bottom: 50px;
                margin-left: 20px;
                margin-right: 20px;        
                margin-top: 60px;
        }
			   .reasons-grid {
                grid-template-columns: repeat(2, 250px);
                max-width: 520px;
            }
            .reason-card {
                cursor: pointer;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
            }
			 .reason-card:hover .reason-card-back {
                width: 350px;
                height: auto;
            }
            .reason-card:hover .reason-card-front,
            .reason-card:hover .reason-card-back {
                transform: none;
            }
            .reason-card.flipped {
                z-index: 100;
            }
            .reason-card.flipped .reason-card-front {
                transform: rotateY(-180deg);
            }
            .reason-card.flipped .reason-card-back {
                transform: rotateY(0deg);
                width: 350px;
                height: auto;
                border: 2px solid #F36D26;
                position: absolute;
            }
    
            .reason-card.flipped:nth-child(even) .reason-card-back {
                left: -140px;
            }
            .reason-card.flipped:nth-child(odd) .reason-card-back {
                left: 0;
            }
			
            /* Top Row Cards (1,2) - Shift Up */
            .reason-card:nth-child(1) .reason-card-back,
            .reason-card:nth-child(2) .reason-card-back {
                top: -150px;
            }
            /* 2nd Row Cards (3,4) - Shift Up */
            .reason-card:nth-child(3) .reason-card-back,
            .reason-card:nth-child(4) .reason-card-back {
                top: -150px;
            }
            /* 3rd Row Cards (5,6) - Shift Up */
            .reason-card:nth-child(5) .reason-card-back,
            .reason-card:nth-child(6) .reason-card-back {
                top: -150px;
            }
            /* 4th Row Cards (7,8) - Shift Up */
            .reason-card:nth-child(7) .reason-card-back,
            .reason-card:nth-child(8) .reason-card-back {
                top: -150px;
            }
            /* 5th Row Cards (9,10) - Shift Up */
            .reason-card:nth-child(9) .reason-card-back,
            .reason-card:nth-child(10) .reason-card-back {
                top: -150px;
            }
			  /* 6th Row Cards (11,12) - Shift Up */
            .reason-card:nth-child(11) .reason-card-back,
            .reason-card:nth-child(12) .reason-card-back {
                top: -150px;
            }
        }
 @media (max-width: 600px) {
	        .reasons-grid {
                grid-template-columns: repeat(2, 200px);
                max-width: 420px;
            }
            .reason-card {
                width: 200px;
				height: 200px;
            }
	        .reason-card-front {
		        width: 200px;
		        height: 200px;
	        }
	        .reason-card-front img {
		        width: 100px;
		        height: 100px;
	        }
            .reasons-section h1 {
                font-size: 30px;
            }      
	 .reason-card.flipped:nth-child(odd) .reason-card-back{
	            left: 15px;
	 }
            .reason-card.flipped:nth-child(even) .reason-card-back {
                left: -205px;
            }
         
        }
@media (max-width: 510px) {
	        .reasons-grid {
                grid-template-columns: repeat(2, 170px);
                width: 380px;
            }
            .reason-card {
                width: 170px;
				
            }
	        .reason-card-front {
		        width: 170px;
		        
	        }
	        .reason-card-front img {
		        width: 80px;
		        height: 80px;
	        }
	   .reason-card-back {
		        max-width: 300px;
		    }
            .reasons-section h1 {
                font-size: 28px;
				padding-top: 40px;
            }      
	        .reason-card .reason-card-back {
            
            max-width: 300px;
          
        }
	 .reason-card.flipped:nth-child(odd) .reason-card-back{
	            left: 10px;
	 }
            .reason-card.flipped:nth-child(even) .reason-card-back {
                left: -180px;
            }
         
        }
    @media (max-width: 450px) {
	        .reasons-grid {
                grid-template-columns: repeat(2, 150px);
                width: 320px;
            }
            .reason-card {
                width: 150px;
				
            }
	        .reason-card-front {
		        width: 150px;
		        
	        }
	        .reason-card-front img {
		        width: 80px;
		        height: 80px;
	        }
	   .reason-card-back {
		        max-width: 300px;
		    }
              
	        .reason-card .reason-card-back {
            
            max-width: 300px;
          
        }
	 .reason-card.flipped:nth-child(odd) .reason-card-back{
	            left: -10px;
	 }
            .reason-card.flipped:nth-child(even) .reason-card-back {
                left: -180px;
            }
         
        }
 @media (max-width: 400px) {
	        .reasons-grid {
                grid-template-columns:auto;
                width: 320px;
            }
            .reason-card {
                width: 250px;
				
            }
	        .reason-card-front {
		        width: 250px;
		        
	        }
	        .reason-card-front img {
		        width: 120px;
		        height: 120px;
	        }
	   .reason-card-back {
		        max-width: 250px;
		    }
            .reasons-section h1 {
                font-size: 26px;
            }      
	        .reason-card .reason-card-back {
            
            max-width: 250px;
          
        }
	 .reason-card.flipped:nth-child(odd) .reason-card-back{
	            left: -20px;
	 }
            .reason-card.flipped:nth-child(even) .reason-card-back {
                left: -20px;
            }
         
        }

   

     


/*-- Footer Section -----------------------------------------------------------------------------------------------------------------------*/
.footer {
    background-color: #000;
    color: #999;
    padding: 20px 0;
    font-size: 16px;
    line-height: 1.5;
	margin-bottom: 0;
	bottom: 0;
	display:flex;
	flex-wrap: wrap;
	
	
}

.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;}
	