
      /* Global Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Arial", sans-serif;
      }

      body {
        line-height: 1.6;
        color: #333;
      }

      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      /* Header Styles */
      header {
        background-color: #0078d7;
        color: white;
        padding: 15px 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      }

      .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-size: 24px;
        font-weight: bold;
      }

      .logo span {
        color: #ffcc00;
      }

      nav ul {
        display: flex;
        list-style: none;
      }

      nav ul li {
        margin-left: 20px;
      }

      nav ul li a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
      }

      nav ul li a:hover {
        color: #ffcc00;
      }

      .mobile-menu {
        display: none;
        font-size: 24px;
        cursor: pointer;
      }

      /* Hero Section */
      .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
          url("img/fridgebanner.png");
        background-size: cover;
        background-position: center;
        height: 100vh;
        display: flex;
        align-items: center;
        text-align: center;
        color: white;
        margin-top: 60px;
      }

      .hero-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
      }

      .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
      }

      .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
      }

      .btn {
        display: inline-block;
        background-color: #ffcc00;
        color: #333;
        padding: 12px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
      }

      .btn:hover {
        background-color: #e6b800;
      }

      /* About Section */
      .about {
        padding: 80px 0;
        background-color: #f9f9f9;
      }

      .section-title {
        text-align: center;
        margin-bottom: 50px;
        font-size: 2rem;
        color: #0078d7;
      }

      .about-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
      }

      .about-text {
        flex: 1;
        min-width: 300px;
        padding: 0 20px;
      }

      .about-image {
        flex: 1;
        min-width: 300px;
        padding: 20px;
      }

      .about-image img {
        width: 100%;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      /* Services Section */
      .services {
        padding: 80px 0;
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }

      .service-card {
        background-color: white;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
      }

      .service-card:hover {
        transform: translateY(-10px);
      }

      .service-image {
        height: 200px;
        overflow: hidden;
      }

      .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
      }

      .service-card:hover .service-image img {
        transform: scale(1.1);
      }

      .service-content {
        padding: 20px;
      }

      .service-content h3 {
        margin-bottom: 10px;
        color: #0078d7;
      }

      /* Contact Section */
      .contact {
        padding: 80px 0;
        background-color: #f9f9f9;
      }

      .contact-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
      }

      .contact-info {
        flex: 1;
        min-width: 300px;
        padding: 20px;
      }

      .contact-info h3 {
        margin-bottom: 20px;
        color: #0078d7;
      }

      .contact-info p {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
      }

      .contact-info i {
        margin-right: 10px;
        color: #0078d7;
      }

      .contact-form {
        flex: 1;
        min-width: 300px;
        padding: 20px;
      }

      .form-group {
        margin-bottom: 20px;
      }

      .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
      }

      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
      }

      .form-group textarea {
        height: 150px;
      }

      /* Footer */
      footer {
        background-color: #222;
        color: white;
        padding: 40px 0 20px;
        text-align: center;
      }

      .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 30px;
      }

      .footer-section {
        flex: 1;
        min-width: 250px;
        padding: 0 20px;
        margin-bottom: 20px;
      }

      .footer-section h3 {
        margin-bottom: 20px;
        color: #ffcc00;
      }

      .social-links a {
        color: white;
        margin: 0 10px;
        font-size: 20px;
        transition: color 0.3s;
      }

      .social-links a:hover {
        color: #ffcc00;
      }

      .copyright {
        border-top: 1px solid #444;
        padding-top: 20px;
      }

      /* Responsive Styles */
      @media (max-width: 768px) {
        .header-container {
          flex-direction: column;
          text-align: center;
        }

        nav ul {
          margin-top: 15px;
          flex-direction: column;
          align-items: center;
        }

        nav ul li {
          margin: 5px 0;
        }

        .mobile-menu {
          display: block;
          position: absolute;
          top: 15px;
          right: 15px;
        }

        nav {
          display: none;
          width: 100%;
        }

        nav.active {
          display: block;
        }

        .hero h1 {
          font-size: 2rem;
        }

        .hero p {
          font-size: 1rem;
        }

        .about-content {
          flex-direction: column;
        }

        .contact-container {
          flex-direction: column;
        }
      }
      
       .fixed-contact-buttons {
    position: fixed;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 999;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .call-button, .whatsapp-button {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    width: 140px;
  }
  
  .call-button {
    background-color: #28a745;
    margin-left: 10px;
  }
  
  .whatsapp-button {
    background-color: #25D366;
    margin-right: 10px;
  }
  
  .call-button:hover, .whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  }
  
  .call-button i, .whatsapp-button i {
    margin-right: 8px;
    font-size: 18px;
  }
  
  /* Font Awesome Icons (add this if not already in your project) */
  .fas, .fab {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
  }
  
  @media (max-width: 768px) {
    .call-button, .whatsapp-button {
      padding: 10px 15px;
      font-size: 14px;
      width: 120px;
    }
    
    .call-button i, .whatsapp-button i {
      font-size: 16px;
    }
  }
    /* Testimonials */
        .testimonials {
            padding: 60px 0;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .testimonial-card {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            padding: 0 20px;
        }

        .testimonial-text::before,
        .testimonial-text::after {
            content: '"';
            font-size: 40px;
            color: var(--primary-color);
            opacity: 0.3;
            position: absolute;
        }

        .testimonial-text::before {
            top: -15px;
            left: 0;
        }

        .testimonial-text::after {
            bottom: -30px;
            right: 0;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-details h4 {
            color: var(--primary-color);
            margin-bottom: 5px;
        }
    
        /* Global Styles */
        :root {
            --primary-color: #0078d7;
            --secondary-color: #ffcc00;
            --dark-color: #333;
            --light-color: #f9f9f9;
            --success-color: #28a745;
            --whatsapp-color: #25D366;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Arial", sans-serif;
        }

        body {
            line-height: 1.6;
            color: var(--dark-color);
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
        }

        .logo span {
            color: var(--secondary-color);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 20px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--secondary-color);
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url("https://blog.hellomistri.com/wp-content/uploads/2024/03/Refrigerator-Repair-Hyderabad-Hellomistri.png");
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 60px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--dark-color);
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #e6b800;
            transform: translateY(-2px);
        }

        /* Breadcrumb */
        .breadcrumb {
            padding: 15px 0;
            background-color: #f5f5f5;
            margin-top: 60px;
        }

        .breadcrumb-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .breadcrumb span {
            margin: 0 10px;
            color: #777;
        }

        /* Location Section */
        .location-section {
            padding: 60px 0;
        }

        .location-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .location-info {
            flex: 1;
            min-width: 300px;
        }

        .location-info h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 2rem;
        }

        .location-info p {
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .location-features {
            margin: 25px 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .feature-icon {
            background-color: var(--primary-color);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .location-map {
            flex: 1;
            min-width: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            min-height: 350px;
            border: none;
        }

        /* Services Section */
        .services {
            padding: 60px 0;
            background-color: var(--light-color);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2rem;
            color: var(--primary-color);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            margin: 15px auto;
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-image {
            height: 200px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 20px;
        }

        .service-content h3 {
            margin-bottom: 10px;
            color: var(--primary-color);
        }

       
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url("https://static.homeguide.com/assets/images/content/homeguide-refrigerator-repair-technician-fixing-a-refrigerator-thumbnail.jpg");
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
            color: white;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* Footer */
        footer {
            background-color: #222;
            color: white;
            padding: 40px 0 20px;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            padding: 0 20px;
            margin-bottom: 20px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            color: var(--secondary-color);
        }

        .social-links a {
            color: white;
            margin: 0 10px;
            font-size: 20px;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--secondary-color);
        }

        .copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
        }

        /* Fixed Contact Buttons */
        .fixed-contact-buttons {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 999;
        }

        .call-button, .whatsapp-button {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px 20px;
            border-radius: 30px;
            color: white;
            font-weight: bold;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            width: 180px;
        }

        .call-button {
            background-color: var(--success-color);
        }

        .whatsapp-button {
            background-color: var(--whatsapp-color);
        }

        .call-button:hover, .whatsapp-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }

        .call-button i, .whatsapp-button i {
            margin-right: 8px;
            font-size: 18px;
        }

        /* Service Areas Section */
        .service-areas {
            padding: 60px 0;
            background-color: var(--light-color);
        }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .area-item {
            background-color: white;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .area-item:hover {
            transform: translateY(-5px);
        }

        .area-item a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }

            nav ul {
                margin-top: 15px;
                flex-direction: column;
                align-items: center;
            }

            nav ul li {
                margin: 5px 0;
            }

            .mobile-menu {
                display: block;
                position: absolute;
                top: 15px;
                right: 15px;
            }

            nav {
                display: none;
                width: 100%;
            }

            nav.active {
                display: block;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .call-button, .whatsapp-button {
                padding: 10px 15px;
                font-size: 14px;
                width: 160px;
            }
        }
   /* Fixed Contact Buttons */
  .fixed-contact-buttons {
    position: fixed;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 999;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .call-button, .whatsapp-button {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    width: 140px;
  }
  
  .call-button {
    background-color: #28a745;
    margin-left: 10px;
  }
  
  .whatsapp-button {
    background-color: #25D366;
    margin-right: 10px;
  }
  
  .call-button:hover, .whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  }
  
  .call-button i, .whatsapp-button i {
    margin-right: 8px;
    font-size: 18px;
  }
  
  /* Font Awesome Icons (add this if not already in your project) */
  .fas, .fab {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
  }
  
  @media (max-width: 768px) {
    .call-button, .whatsapp-button {
      padding: 10px 15px;
      font-size: 14px;
      width: 120px;
    }
    
    .call-button i, .whatsapp-button i {
      font-size: 16px;
    }
  }
