

  

      .section-about-title {
        color: #1a3d5d;
        font-weight: 700;
        margin-bottom: 1.5rem;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .about-content {
        padding-right: 2rem;
      }

      .about-text {
        color: #4a5568;
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 2rem;
      }

      .features-list {
        list-style: none;
        padding: 0;
      }

      .features-list li {
        margin-bottom: 1.5rem;
        padding-left: 3rem;
        position: relative;
      }

      .features-list .icon {
        position: absolute;
        left: 0;
        top: 0;
        width: 50px;
        height: 50px;
        background: rgba(253, 126, 20, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fd7e14;
        font-size: 1.5rem;
      }

      .features-list h5 {
        color: #1a3d5d;
        font-weight: 600;
        margin-bottom: 0.5rem;
      }

      .features-list p {
        color: #4a5568;
        margin-bottom: 0;
        line-height: 1.6;
      }

      .about-image {
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
      }

      .stats-container {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 2rem;
        margin-top: 2rem;
      }

      .stat-item {
        text-align: center;
      }

      .stat-number {
        color: #fd7e14;
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1;
      }

      .stat-label {
        color: #1a3d5d;
        font-weight: 600;
      }

      @media (max-width: 992px) {
        .about-content {
          padding-right: 0;
          margin-bottom: 2rem;
        }
      }



 
     
    .section-area-title {
      color: #1a3d5d;
      font-weight: 700;
      margin-bottom: 2rem;
      position: relative;
      text-align: center;
      font-size: 2rem;
    }

    .service-content {
      padding-right: 2rem;
    }

    .service-text {
      color: #4a5568;
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .cities-container {
      background: #fff;
      border-radius: 10px;
      padding: 2rem;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .cities-title {
      color: #1a3d5d;
      font-weight: 600;
      margin-bottom: 1.5rem;
      font-size: 1.4rem;
    }

    .cities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1rem;
    }

    .city-item {
      display: flex;
      align-items: center;
      padding: 0.4rem 0;
      font-size: 1rem;
    }

    .city-item i {
      color: #fd7e14;
      margin-right: 10px;
      font-size: 0.95rem;
    }

    .service-image {
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .service-image:hover {
      transform: scale(1.02);
    }

    .coverage-note {
      background: rgba(253, 126, 20, 0.1);
      border-left: 4px solid #fd7e14;
      padding: 1.2rem;
      border-radius: 6px;
      margin-top: 1.5rem;
    }

    .highlight {
      color: #fd7e14;
      font-weight: 600;
    }

    @media (max-width: 992px) {
      .service-content {
        padding-right: 0;
        margin-bottom: 2rem;
      }
    }


    .services-section {
        padding: 5rem 0;
        background: linear-gradient(to bottom, #ffffff 0%, #f1f7fd 100%);
    }
    .section-title {
        color: #1a3d5d;
        font-weight: 700;
        margin-bottom: 3rem;
        position: relative;
        text-align: center;
    }
    .section-title:after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: #fd7e14;
        margin: 15px auto;
    }
    .service-card {
        background: white;
        border-radius: 10px;
        padding: 2.5rem;
        margin-bottom: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid rgba(253, 126, 20, 0.1);
    }
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        border-color: rgba(253, 126, 20, 0.3);
    }
    .service-icon {
        width: 80px;
        height: 80px;
        background: rgba(253, 126, 20, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fd7e14;
        font-size: 2.5rem;
        margin: 0 auto 1.5rem;
        transition: all 0.3s ease;
    }
    .service-card:hover .service-icon {
        background: #fd7e14;
        color: white;
        transform: scale(1.1);
    }
    .service-title {
        color: #1a3d5d;
        font-weight: 700;
        margin-bottom: 1.2rem;
        text-align: center;
        font-size: 1.5rem;
    }
    .service-description {
        color: #4a5568;
        line-height: 1.8;
        text-align: center;
    }
    .service-features {
        margin-top: 1.5rem;
        padding-left: 0;
        list-style-type: none;
    }
    .service-features li {
        margin-bottom: 0.8rem;
        padding-left: 1.8rem;
        position: relative;
        color: #4a5568;
    }
    .service-features li:before {
        content: "✓";
        color: #fd7e14;
        font-weight: bold;
        position: absolute;
        left: 0;
    }
    .btn-service {
        background-color: #fd7e14;
        color: white;
        border: none;
        padding: 0.6rem 1.5rem;
        border-radius: 5px;
        font-weight: 600;
        margin-top: 1.5rem;
        transition: all 0.3s ease;
        display: inline-block;
    }
    .btn-service:hover {
        background-color: #e76f11;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        color: white;
    }
    .text-center {
        text-align: center;
    }


      
            .why-choose-section {
                padding: 5rem 0;
                background: linear-gradient(to bottom, #ffffff 0%, #f1f7fd 100%);
                position: relative;
                overflow: hidden;
            }
            .section-title {
                color: #1a3d5d;
                font-weight: 700;
                margin-bottom: 3rem;
                position: relative;
                text-align: center;
            }
            .section-title:after {
                content: '';
                display: block;
                width: 80px;
                height: 4px;
                background: #fd7e14;
                margin: 15px auto;
            }
            .feature-card {
                background: white;
                border-radius: 15px;
                padding: 2.5rem 2rem;
                margin-bottom: 2rem;
                box-shadow: 0 10px 30px rgba(0,0,0,0.08);
                transition: all 0.4s ease;
                height: 100%;
                border: 1px solid rgba(253, 126, 20, 0.1);
                position: relative;
                overflow: hidden;
            }
            .feature-card:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 5px;
                height: 0;
                background: #fd7e14;
                transition: all 0.4s ease;
            }
            .feature-card:hover:before {
                height: 100%;
            }
            .feature-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            }
            .feature-icon {
                width: 80px;
                height: 80px;
                background: rgba(253, 126, 20, 0.1);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fd7e14;
                font-size: 2.2rem;
                margin: 0 auto 1.5rem;
                transition: all 0.4s ease;
                position: relative;
                z-index: 1;
            }
            .feature-card:hover .feature-icon {
                background: #fd7e14;
                color: white;
                transform: scale(1.1) rotate(5deg);
            }
            .feature-title {
                color: #1a3d5d;
                font-weight: 700;
                margin-bottom: 1.2rem;
                text-align: center;
                font-size: 1.4rem;
                position: relative;
                z-index: 1;
            }
            .feature-description {
                color: #4a5568;
                line-height: 1.8;
                text-align: center;
                position: relative;
                z-index: 1;
            }
            .stats-container {
                background: linear-gradient(135deg, #1a3d5d 0%, #2c5282 100%);
                border-radius: 15px;
                padding: 3rem 2rem;
                margin: 3rem auto;
                box-shadow: 0 15px 35px rgba(0,0,0,0.1);
                color: white;
                position: relative;
                overflow: hidden;
            }
            .stats-container:before {
                content: '';
                position: absolute;
                top: -50%;
                right: -50%;
                width: 100%;
                height: 200%;
                background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23fd7e14' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
                opacity: 0.5;
            }
            .stat-item {
                text-align: center;
                padding: 1rem;
                position: relative;
                z-index: 1;
            }
            .stat-number {
                color: #fd7e14;
                font-size: 2.8rem;
                font-weight: 700;
                line-height: 1;
                margin-bottom: 0.5rem;
            }
            .stat-label {
                color: white;
                font-weight: 600;
                font-size: 1.1rem;
            }
            .guarantee-badge {
                position: absolute;
                top: -15px;
                right: -15px;
                background: #fd7e14;
                color: white;
                font-weight: 700;
                padding: 0.5rem 1.5rem;
                border-radius: 30px;
                transform: rotate(5deg);
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
                font-size: 0.9rem;
            }
            .testimonial-box {
                background: white;
                border-radius: 15px;
                padding: 2rem;
                margin-top: 2rem;
                box-shadow: 0 10px 25px rgba(0,0,0,0.08);
                border-left: 5px solid #fd7e14;
            }
            .testimonial-text {
                font-style: italic;
                color: #4a5568;
                line-height: 1.8;
                margin-bottom: 1rem;
            }
            .testimonial-author {
                font-weight: 600;
                color: #1a3d5d;
            }
            .testimonial-location {
                color: #fd7e14;
                font-size: 0.9rem;
            }
            @media (max-width: 992px) {
                .stat-number {
                    font-size: 2.2rem;
                }
            }



       
            .contact-section {
                padding: 5rem 0;
                background: linear-gradient(to bottom, #ffffff 0%, #f1f7fd 100%);
            }
            .section-title {
                color: #1a3d5d;
                font-weight: 700;
                margin-bottom: 3rem;
                position: relative;
                text-align: center;
            }
            .section-title:after {
                content: '';
                display: block;
                width: 80px;
                height: 4px;
                background: #fd7e14;
                margin: 15px auto;
            }
            .contact-card {
                background: white;
                border-radius: 15px;
                padding: 3rem;
                box-shadow: 0 15px 35px rgba(0,0,0,0.1);
                height: 100%;
                border: 1px solid rgba(253, 126, 20, 0.1);
            }
            .contact-info-item {
                display: flex;
                align-items: flex-start;
                margin-bottom: 2rem;
                padding: 1.5rem;
                border-radius: 10px;
                background: rgba(253, 126, 20, 0.05);
                transition: all 0.3s ease;
            }
            .contact-info-item:hover {
                background: rgba(253, 126, 20, 0.1);
                transform: translateX(5px);
            }
            .contact-icon {
                width: 60px;
                height: 60px;
                background: rgba(253, 126, 20, 0.1);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fd7e14;
                font-size: 1.5rem;
                margin-right: 1.5rem;
                flex-shrink: 0;
            }
            .contact-details h3 {
                color: #1a3d5d;
                font-weight: 600;
                margin-bottom: 0.5rem;
                font-size: 1.3rem;
            }
            .contact-details p {
                color: #4a5568;
                margin-bottom: 0;
                line-height: 1.6;
            }
            .contact-details a {
                color: #4a5568;
                text-decoration: none;
                transition: all 0.3s ease;
            }
            .contact-details a:hover {
                color: #fd7e14;
            }
            .map-container {
                border-radius: 15px;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                height: 100%;
                min-height: 300px;
            }
            .hours-box {
                background: linear-gradient(135deg, #1a3d5d 0%, #2c5282 100%);
                border-radius: 15px;
                padding: 2rem;
                color: white;
                margin-top: 2rem;
            }
            .hours-title {
                color: #fd7e14;
                font-weight: 700;
                margin-bottom: 1.5rem;
                text-align: center;
            }
            .hours-item {
                display: flex;
                justify-content: space-between;
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hours-item:last-child {
                border-bottom: none;
            }
            .day {
                font-weight: 600;
            }
            .time {
                color: #fd7e14;
                font-weight: 600;
            }
            .social-links {
                display: flex;
                justify-content: center;
                margin-top: 2rem;
            }
            .social-link {
                width: 45px;
                height: 45px;
                background: rgba(253, 126, 20, 0.1);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fd7e14;
                font-size: 1.2rem;
                margin: 0 0.5rem;
                transition: all 0.3s ease;
            }
            .social-link:hover {
                background: #fd7e14;
                color: white;
                transform: translateY(-3px);
            }
            @media (max-width: 992px) {
                .map-container {
                    margin-top: 2rem;
                    min-height: 250px;
                }
            }
