
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@font-face {
  font-family: 'AvenirLT-book';
  src: url('../../fonts/Avenir LT Std 45 Book.otf');
 
}
@font-face {
  font-family: 'AvenirLT-med';
  src: url('../../fonts/Avenir LT Std 65 Medium.otf');
 
}
@font-face {
  font-family: 'AvenirLT-bold';
  src: url('../../fonts/Avenir LT Std 85 Heavy.otf');
 
}

@font-face {
  font-family: 'AvenirLT-extrabold';
  src: url('../../fonts/Avenir LT Std 95 Black.otf');
 
}

body, html {
    margin: 0;
    padding: 0;
    font-family:AvenirLT-book, sans-serif;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}
b, strong {
    font-family: 'AvenirLT-extrabold';
}
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    position: relative;
    z-index: 10;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #000;
}

.header-phone {
    font-size: 1.1em;
    font-weight: bold;
    color: #e60000;
    text-decoration:none;
}
.header-phone:hover{
    color:#e60000 !important;
}

/* Hero Section - Full Width Banner */
.hero {
    text-align: center;
    padding: 80px 20px;
    background-image: url('../../images/banner.webp'); /* YOUR FULL-WIDTH BANNER IMAGE */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
}
.hero-product{
     background-image: url('../../images/product-banner.webp');
     position: relative;
}

@media only screen and (max-width: 768px) {
    .hero-product{
        position:relative;
    }
  .hero-product {
    background-image: url('../../images/mob-banner.webp');
  }
  .hero-product::before {
    background-color: rgba(0, 0, 0, 0.5);
   
}
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.5);*/
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-family: 'AvenirLT-bold';
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero .sub-headline {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.hero .cta-text {
        font-family: 'AvenirLT-bold';
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

/* CTA Button Animations */
@keyframes pulse-animation { /* NEW pulse animation */
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05); /* Slightly larger */
  }
}

@keyframes glow-animation { /* Existing glow animation */
    0% {
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.6), 0 0 10px rgba(255, 0, 0, 0.4);
    }
    100% {
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.8), 0 0 25px rgba(255, 0, 0, 0.6);
    }
}

.cta-button {
    display: inline-block;
    background-color: #e60000;
    color: #fff;
    padding: 18px 35px;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Transition only background-color */
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    /* Apply pulse animation by default */
    animation: pulse-animation 2s infinite ease-in-out;
}

.cta-button:hover {
    background-color: #c00000; /* Darker red on hover */
    /* transform: translateY(-2px); Removed to avoid conflict with pulse animation's transform */
}

.cta-button.glow {
    /* If .glow is added, apply both pulse and glow animations.
       The glow animation's box-shadow will take precedence. */
    animation: pulse-animation 2s infinite ease-in-out,
                 glow-animation 1.5s infinite alternate;
}


.hero .small-text {
    font-size: 0.9em;
    color: #ddd;
    margin-top: 15px;
    
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Trust Icons Section */
.trust-icons {
    text-align: center;
    padding: 25px 0;
    background-color: #f1e9e9;
    margin-top: 0;
}

.trust-icons img {
    /*height: 30px;*/
    margin: 0 15px;
    /*opacity: 0.7;*/
    transition: opacity 0.3s ease;
}
.trust-icons img:hover {
    opacity: 1;
}

/* Quote Section */
.quote-section {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.quote-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.quote-mark {
    font-size: 5em;
    color: #e60000;
    position: absolute;
    top: 10px;
    left: 15px;
    /*opacity: 0.8;*/
    line-height: 1;
}

.quote-text {
      font-family: Arial, Helvetica, sans-serif;
    font-size: 1.3em;
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
    padding-left: 30px;
    text-align: left;
}

.quote-attribution {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    font-weight: bold;
    color: #e60000;
    text-align: left;
    padding-left: 30px;
}


/* Footer */
footer {
    background-color: #000000; /* CHANGED to black */
    color: #ccc;
    padding: 30px 0 10px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #444; /* Border might be less visible on pure black, consider #333 or #222 */
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.footer-column .logo {
    color: #fff;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.footer-column p, .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9em;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-column ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-icons img {
    /*width: 32px;*/
    /*height: 32px;*/
    margin-right: 0px;
    opacity: 0.8;
    object-fit: contain;
}
.social-icons img:hover {
    opacity: 1;
}


.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.85em;
    padding: 5px 10px;
}
.footer-bottom-links a:hover {
    color: #fff;
    text-decoration: underline;
}


.copyright {
    text-align: center;
    font-size: 0.8em;
    color: #777; /* This color might be hard to see on pure black, consider #999 or #aaa */
    padding-top: 15px;
    border-top: 1px solid #444; /* Similar to above, border color contrast */
    margin-top: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header .container {
        flex-direction: column;
        gap: 10px;
    }
    .logo { font-size: 1.5em; }
    .header-phone { font-size: 1em; }

    .hero { padding: 60px 15px; }
    .hero h1 { font-size: 2em; }
    .hero .sub-headline { font-size: 1.2em; }
    .cta-button { font-size: 1.3em; padding: 15px 30px; }

    .trust-icons img { height: 31px; margin: 0 10px; }
    
    .quote-mark { font-size: 4em; top: 5px; left: 10px; }
    .quote-text { font-size: 1.1em; padding-left: 20px; }
    .quote-attribution { padding-left: 20px; }
    .quote-content { padding: 20px; }

    .footer-content { flex-direction: column; align-items: center; text-align: center; }
    .footer-column { min-width: 100%; margin-bottom: 20px; }
    .social-icons { text-align: center; }
    .footer-bottom-links { flex-direction: column; gap: 10px; }
}

  
@media (max-width: 480px) {
    .hero { padding: 40px 10px; }
    .hero h1 { font-size: 1.7em; }
    .hero .sub-headline { font-size: 1em; }
    .hero .cta-text { font-size: 1.1em; }
    .cta-button {
        font-size: 1.2em;
        padding: 12px 20px;
        width: 90%;
        box-sizing: border-box;
    }
    .quote-section { padding: 30px 15px; }
}

.header-phone{
    display:flex;
    align-items:center;
}
.header-phone svg{
      margin-right: 4px;
}
.dot{
    content: '';
    display: inline-block;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #00ff12;
    margin: 0 5px
}
.client-head{
    
    font-size: 22px;
line-height: 29px;
text-transform: uppercase;
color: #000000;
font-weight: 400;
font-family: "Lato", sans-serif;
margin:0;
}
.client-container{
    padding:20px 0 0 0;
}


/*FAQS*/
.accordion-button {
    font-size: calc(1.3rem + .6vw);
    color:#000;
}
.accordion-button:not(.collapsed){
     color:#000;
    background-color: transparent;
    box-shadow:none;
}
.accordion-item:not(:first-of-type) {
    border: 1px solid rgba(0, 0, 0, .125);
}
.accordion-item:first-of-type .accordion-button,.accordion-item:first-of-type,.accordion-item:last-of-type {
    border-radius:0;
}
.accordion-button:not(.collapsed)::after,.accordion-button::after{
    background-image:none;
}

@media (min-width: 1200px) {
    .accordion-button {
        font-size: 1.6rem;
    }
}

.page-title{
    font-family: "Lato", sans-serif;
    font-size:30px;
    font-weight:bold;
}
.privacy-content h2{
    font-size:20px;
    font-weight:bold;
    
}
.page-contact p, .page-contact strong{
   font-size: 1.3rem;
   line-height:normal;
   margin:0;
}
.page-header{
      font-family: 'AvenirLT-extrabold';
}
.page-contact a{
    text-decoration:none;
}
/*FAQS*/