/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    background: #f4f4f4;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  h1, h2, h3 {
    margin: 0;
    padding: 0;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, #ff6f61, #ff4a3d);
    color: #fff;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* Header */
  /* Header */
header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header .logo img {
    height: 50px;
    margin-right: 20px;
  }
  
  header .title h1 {
    font-size: 1.5rem;
    margin: 0;
  }
  
  header .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }


  
  /* Hamburger Menu Animation */
    header .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    header .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    header .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    header .hamburger span {
        width: 25px;
        height: 3px;
        background: #fff;
        transition: all 0.3s ease;
    }
  
  header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
  }
  
  header nav ul li a {
    color: #fff;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  header nav ul li a:hover {
    color: #ff6f61;
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    header .hamburger {
      display: flex;
    }
  
    header nav {
      position: absolute;
      top: 60px;
      right: 0;
      background: #333;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
  
    header nav.active {
      max-height: 300px;
    }
  
    header nav ul {
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
    }
  
    header .title {
      flex-grow: 1;
      text-align: center;
    }
  }
  
  /* Hero Section */
  .hero {
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
  }
  
  .hero .btn {
    position: relative;
    z-index: 1;
    animation: fadeIn 1.5s ease;
  }

  /* Survey Section */
.survey {
    background: #ff6f61;
    color: #fff;
    padding: 80px 0;
    text-align: center;
  }
  
  .survey h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .survey p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .survey ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
  }
  
  .survey ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  /* Survey Section */
.survey {
    background: #ff6f61;
    color: #fff;
    padding: 80px 0;
    text-align: center;
  }
  
  .survey h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .survey p {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
  
  /* Survey Section */
.survey {
    background: #ff6f61;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .survey h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .survey p {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
  
  /* Speedometers Container */
  .speedometers {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow speedometers to wrap on smaller screens */
    margin-bottom: 40px;
  }
  
  /* Individual Speedometer */
  .speedometer {
    text-align: center;
    flex: 1 1 200px; /* Flexible width with a minimum of 200px */
    max-width: 250px; /* Maximum width for larger screens */
  }
  
  .gauge {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 50%; /* Maintain aspect ratio (2:1) */
    margin: 0 auto 10px;
    overflow: hidden;
  }
  
  .gauge-body {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    border-radius: 150px 150px 0 0;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
  }
  
  .gauge-fill {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    transform-origin: center top;
    transform: rotate(0turn);
    transition: transform 2s ease;
  }
  
  .gauge-cover {
    width: 75%;
    height: 120%;
    background: #ff6f61;
    border-radius: 50%;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
  }
  
  .speedometer p {
    font-size: 1rem;
    margin-top: 10px;
  }
  
  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .survey h2 {
      font-size: 1.8rem;
    }
  
    .survey p {
      font-size: 0.9rem;
    }
  
    .speedometers {
      gap: 15px;
    }
  
    .speedometer {
      flex: 1 1 150px; /* Smaller width for mobile */
      max-width: 180px;
    }
  
    .gauge-cover {
      font-size: 1.2rem;
    }
  
    .speedometer p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .survey h2 {
      font-size: 1.5rem;
    }
  
    .survey p {
      font-size: 0.8rem;
    }
  
    .speedometers {
      gap: 10px;
    }
  
    .speedometer {
      flex: 1 1 120px; /* Even smaller width for very small screens */
      max-width: 140px;
    }
  
    .gauge-cover {
      font-size: 1rem;
    }
  
    .speedometer p {
      font-size: 0.8rem;
    }
  }
  
  .survey .btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: transform 0.3s ease;
  }
  
  .survey .btn:hover {
    background: #555;
  }
  

  /* About Us Section */
.about {
    padding: 80px 0;
    background: #f4f4f4;
    text-align: center;
  }
  
  .about h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-text h3 {
    font-size: 1.8rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .about-image {
    flex: 1;
    text-align: center;
  }
  
  .about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .about-video {
    flex: 1;
    text-align: center;
  }
  
  .about-video video,
.about-video iframe {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

  

  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
      text-align: center;
    }
  
    .about-text h3 {
      font-size: 1.5rem;
    }
  
    .about-text p {
      font-size: 1rem;
    }

    .about-video video,
    .about-video iframe {
      max-width: 100%;
    }
  }

  /* Why Choose Us Section */
  .why-choose-us {
    padding: 80px 0;
    text-align: center;
  }
  
  .why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .why-choose-us .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .why-choose-us .card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .why-choose-us .card:hover {
    transform: translateY(-10px);
  }
  
  .why-choose-us .card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  
  .why-choose-us .card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .why-choose-us .card p {
    font-size: 1rem;
    color: #666;
  }
  
  /* Services Section */
  .services {
    padding: 80px 0;
    text-align: center;
  }
  
  .services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .services .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .services .card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .services .card:hover {
    transform: translateY(-10px);
  }
  
  .services .card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  
  .services .card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .services .card p {
    font-size: 1rem;
    color: #666;
  }
  
  /* Service Process Section */
  .process {
    padding: 80px 0;
    text-align: center;
  }
  
  .process h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .process .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  
  .process .step {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .process .step:hover {
    transform: translateY(-10px);
  }
  
  .process .step span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ff6f61;
    margin-bottom: 10px;
  }
  
  .process .step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .process .step p {
    font-size: 1rem;
    color: #666;
  }

  /* Background Video Section */
.video-section {
    position: relative;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
  }
  
  .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  #bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the entire section */
    transform: translate(-50%, -50%);
    z-index: -1; /* Places video behind the overlay */
  }
  
  .video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1; /* Places overlay on top of the video */
  }

  .video-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease;
  }
  
  .video-overlay p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
  }
  
  .video-overlay h2 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .video-overlay p {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .video-overlay .btn {
    background: #ff6f61;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background 0.3s ease;
  }
  
  .video-overlay .btn:hover {
    background: #ff4a3d;
  }
  
  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .video-overlay h2 {
      font-size: 2rem;
    }
  
    .video-overlay p {
      font-size: 1.2rem;
    }
  
    .video-overlay .btn {
      font-size: 1rem;
    }
  }

  
  /* Testimonials Section */
  .testimonials {
    padding: 80px 0;
    text-align: center;
  }
  
  .testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .testimonials .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .testimonials .card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .testimonials .card:hover {
    transform: translateY(-10px);
  }
  
  .testimonials .card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
  }
  
  .testimonials .card h3 {
    font-size: 1.2rem;
    color: #ff6f61;
  }
  
  /* FAQ Section */
  /* FAQ Section */
.faq {
    padding: 80px 0;
    text-align: center;
  }
  
  .faq h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
  }
  
  .faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
  }
  
  .faq-question .icon {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .faq-answer p {
    font-size: 1rem;
    color: #666;
    padding: 0 20px;
  }
  
  .faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content */
    padding: 15px 0;
  }
  
  .faq-item.active .icon {
    transform: rotate(45deg);
  }
  
  /* Call-to-Action Banner */
  .cta-banner {
    background: #333;
    color: #fff;
    padding: 80px 0;
    text-align: center;
  }
  
  .cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  /* Contact Section */
  .contact {
    background: #333;
    padding: 80px 0;
    text-align: center;
  }
  
  .contact h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  
  .contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact form input, .contact form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .contact form button {
    background: linear-gradient(45deg, #ff6f61, #ff4a3d);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 5px;
    transition: transform 0.3s ease;
  }
  
  .contact form button:hover {
    transform: translateY(-5px);
  }

  /* Popup Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .modal-content {
    background: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    position: relative;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .close:hover {
    color: #ff6f61;
  }
  
  #modal-message {
    font-size: 1.2rem;
    margin: 20px 0;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    header nav ul {
      flex-direction: column;
      gap: 10px;
    }
  
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .why-choose-us .grid, .services .grid, .process .steps, .testimonials .grid {
      grid-template-columns: 1fr;
    }
  }

