/* Reset some default browser styles */
body, h1, p, a {
    margin: 0;
    padding: 0;
    /* font-family: Arial, sans-serif; */
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

/* Main styles for the header */
.header {
    display: flex;
    align-items: center;
    padding: 5px;
    background-color: #f4f4f4;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Slight shadow for header */
}

.logo {
    width: 30vw;
    margin-right: 10px;
    margin-top: 0px;
}

.header-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

h1 {
    font-size: 20px;
    color: #333; /* Dark gray */
}

h2 {
    font-size: 18px;
    color: #333; /* Dark gray */
}

h3 {
    font-size: 10px;
    color: #333; /* Dark gray */
}


p {
    color: #555; /* Medium gray */
}

.cta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 5px 5px;
    gap: 10px;

}

.phone-section {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #555; /* Medium gray */
}

.call-now {
    background-color: #000;
    color: white;
    padding: 10px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.call-now:hover {
    background-color: #333; /* Dark gray on hover */
}

/* Styles for the WhatsApp widget */
.whatsapp-widget {
    display: inline-block;
}

/* Styles for the WhatsApp widget */
.whatsapp-widget img {
    height: 60px;  /* Set height instead of width to control aspect ratio */
    width: auto; /* Let width adjust automatically */
    max-width: calc(100vw - 40px); /* Ensure it never exceeds screen width minus padding */
}

/* Icon styles */
.bi {
    margin-right: 5px; /* Space between icon and following text */
}

.testimonial-section {
    background-color: #ffffff; /* Color of the section */
    padding: 20px 0; /* Padding top and bottom */
    display: flex;
    justify-content: center;
}

.testimonial-content {
    max-width: 1200px; /* Or whatever max-width you prefer */
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-image {
    width: 100px; /* Adjust width accordingly */
    border-radius: 50%; /* Makes the image circular */
    box-shadow: 0 0 10px rgba(0,0,0,0.15); /* Optional shadow */
}

blockquote {
    font-style: italic;
    max-width: 800px; /* Or adjust to your preference */
    color: #000000; /* White text color */
}

cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    color: #000000; /* White text color */
}

/* Media Queries for desktop adjustments */
@media (min-width: 992px) { /* Adjusting for screens bigger than 992px */
  
    /* Main container adjustments */
    .container {
      max-width: 1200px; /* Or whatever max-width you prefer */
      margin: 0 auto; /* This centers the container */
    }
  
    /* Adjustments for the header */
    .logo {
      width: 200px; /* Fixed width on desktop, adjust as needed */
    }
  
    h1 {
      font-size: 32px; /* Bigger font size for headers on desktop */
    }
  
    h2 {
      font-size: 28px; /* Bigger font size for sub headers on desktop */
    }
  
    h3 {
      font-size: 16px; /* Adjust font for subtext on desktop */
    }
  
    /* Call to Action section adjustments */
    .cta-section {
      gap: 20px;
    }
  
    .phone-section {
      gap: 10px;
      font-size: 18px;
    }
  
    .call-now {
      padding: 12px 20px; /* Bigger button on desktop */
      font-size: 18px;
    }
  
    /* Testimonial adjustments */
    .testimonial-image {
      width: 150px; /* Bigger testimonial image */
    }
  
    blockquote {
      font-size: 24px;
    }
  
    cite {
      font-size: 18px;
    }
  
    /* WhatsApp widget adjustments */
    .whatsapp-widget img {
      height: 80px;  /* Slightly larger on desktop but still reasonable */
      max-width: 300px; /* Set reasonable max width for desktop */
    }
    
  }
  
