section {
    padding: 80px 8%;
    box-sizing: border-box;
  }
  
  h1, h2, h3, h5 {
    color: #222;
    margin-bottom: 20px;
  }
  
  p {
    color: #555;
    line-height: 1.7;
  }
  
  .btn, .hero-btn, .all-services {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .btn:hover, .hero-btn:hover, .all-services:hover {
    background: #ff6b00;
  }
  
  /* ===== Hero Section ===== */
  .service-hero {
    position: relative;
    /* background: url('{{ service.service_img.url }}') center/cover no-repeat; */
    color: #fff;
    text-align: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    object-fit: cover;
    z-index: -1;
  }
  

  .service-hero .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.55);
  }
  
  .service-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
  }
  
  .service-hero h1 span {
    color: #ff6b00;
  }
  
  /* ===== About Section ===== */
  .service-about {
    background: #fff;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
  }
  
  .about-text {
    flex: 1 1 45%;
  }
  
  .about-text ul {
    list-style: none;
    margin-top: 20px;
  }
  
  .about-text li {
    margin-bottom: 10px;
    color: #444;
  }
  
  .about-text i {
    color: #ff6b00;
    margin-right: 10px;
  }
  
  .about-image {
    flex: 1 1 45%;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  /* ===== Process Section ===== */
  .work-process {
    background: #f9f9f9;
    text-align: center;
  }
  
  .process-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
  }
  
  .process-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 25px;
    flex: 1 1 300px;
    max-width: 340px;
    transition: 0.3s;
  }
  
  .process-card:hover {
    transform: translateY(-5px);
  }
  
  .process-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .process-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .process-img .icon {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b00;
    color: #fff;
    border-radius: 50%;
    padding: 12px;
    font-size: 18px;
  }

  /* -------------------------------------- pricing cards css start here-------------------------- */
  /* ===== Pricing Section ===== */
  .pricing-section {
    background: #fff;
    text-align: center;
  }
  
  .pricing-wrap {
    color: #ff6b00;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
  }
  

  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 1s;
  }


  .pricing-card {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-radius: 6px;
    overflow: hidden;
    width: 280px;
  }
  

  
  /* Card Header with curved bottom */
  .pricing-card .card-header {
    background: #0b3d46;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
    
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
  }
  
  .pricing-card .card-header::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 100px;
    transition: 3s;
    z-index: -1;
  }
  
  .pricing-card .card-header h3 {
    font-size: 12px;
    font-weight: 600;
    background: #f8c300;
    color: #0b3d46;
    display: inline-block;
    padding: 8px 14px;
    border-radius: 3px;
    margin-bottom: 15px;
  }
  .pricing-card:hover .card-header{
    
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
    background: #0b3d46;
    transition: 1s;

  }
  
  .pricing-card .price {
    font-size: 32px;
    font-weight: 700;
  }
  
  .pricing-card .price span {
    font-size: 14px;
    font-weight: 400;
  }
  
  /* Card Body */
  .pricing-card .card-body {
    padding: 25px 20px;
    font-size: 14px;
    color: #444;
  }
  
  .pricing-card .card-body p {
    margin-bottom: 15px;
  }
  
  .pricing-card .card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .pricing-card .card-body ul li {
    margin: 10px 0;
  }
  
  /* Card Footer */
  .pricing-card .card-footer {
    text-align: center;
    padding: 20px;
  }
  

  
  .pricing-card .card-footer a {
    background: #0b3d46;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: background 0.3s;
  }


  
  /* ===== Responsive ===== */
  @media (max-width: 900px) {
    .about-container {
      flex-direction: column;
    }
    .process-cards, .pricing-container {
      flex-direction: column;
      align-items: center;
    }
    .service-hero {
      height: 55vh;
    }
  }
