.services-section {
      background: linear-gradient(to right, #f04e5e, #fc766a);
      color: white;
      padding: 60px 20px;
      border-radius: 15px;
      margin-top: 20px;
    }
    .service-card {
      background-color: white;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding: 30px 20px;
      height: 100%; /* Ensures equal height cards */
    }
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    }
    .service-icon {
      background: linear-gradient(to right, #fc766a, #f04e5e);
      color: white;
      width: 80px;
      height: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      font-size: 30px;
      margin: -20px auto 20px;
    }
    .service-card h5 {
      font-weight: 600;
      color: #333;
    }
    .service-card p {
      color: #666;
      font-size: 14px;
    }
    .btn-book {
      background-color: #f04e5e;
      color: white;
      border: none;
      transition: background-color 0.3s ease;
    }
    .btn-book:hover {
      background-color: #fc766a;
    }
    .mb-4{
          margin-bottom:40px;
    }

     /* Hero Section Styling */
    .hero-section {
      position: relative;
      background: url(../images/promo-bg.jpg) no-repeat center center;
      color: #fff;
      text-align: center;
      padding: 120px 20px;
    }
    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 87, 51, 0.5));
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    .hero-title {
      font-size: 2.5rem;
      font-weight: bold;
      text-transform: uppercase;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    }
    .hero-description {
      font-size: 2.2rem;
      margin-top: 20px;
      line-height: 1.6;
    }
    .hero-btn {
      background: #ff5733;
      border: none;
      color: #fff;
      padding: 15px 30px;
      font-size: 1.2rem;
      border-radius: 50px;
      margin-top: 30px;
      box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
      text-decoration: none;
    }
    .hero-btn:hover {
      background: #e64e2d;
      text-decoration: none;
      box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    }
    .icon-style {
      margin-right: 8px;
    }
    /* Container for fixed icons */
    .fixed-icons {
      position: fixed;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    /* Styling for each icon button */
    .fixed-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      text-decoration: none;
      font-size: 1.8rem;
      color: #fff;
      background: linear-gradient(135deg, #25d366, #128c7e); /* WhatsApp gradient */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: all 0.4s ease-in-out;
    }

    .fixed-icons a.call {
      background: linear-gradient(135deg, #ff4081, #d500f9); /* Call button gradient */
    }

    /* Hover animations */
    .fixed-icons a:hover {
      transform: scale(1.2) rotate(15deg);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    }

    /* Tooltip styling */
    .fixed-icons a span {
      position: absolute;
      left: 80px;
      background: rgba(0, 0, 0, 0.8);
      color: #fff;
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 0.9rem;
      white-space: nowrap;
      visibility: hidden;
      opacity: 0;
      transition: all 0.3s ease;
    }

    .fixed-icons a:hover span {
      visibility: visible;
      opacity: 1;
      left: 90px;
    }
    .icon-section {
      display: flex;
      
      justify-content: center;
      gap: 20px;
      margin: 40px 0;
    }
    .icon-box {
      text-align: center;
      padding: 20px;
      border: 1px solid #ddd;
      border-radius: 10px;
      transition: all 0.3s ease;
    }
    .icon-box:hover {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transform: scale(1.05);
    }
    .icon-box i {
      font-size: 3rem;
      color: #007bff;
      margin-bottom: 15px;
    }

   

         .fixed-buttons {
            position: fixed;
            bottom: 20px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 1000;
        }
        .fixed-buttons .btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .fixed-buttons .btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        .btn-whatsapp {
            background-color: #25d366;
            color: white;
            font-size: 24px;
        }
        .btn-call {
            background-color: #007bff;
            color: white;
            font-size: 24px;
        }


     /* Highlight blinking offer */
    .highlight-offer1 {
      color: #ff5722;
      font-weight: bold;
      animation: blink 1s infinite;
      position: relative;
      display: inline-flex;
      align-items: center;
    }

    .highlight-offer1::before {
      content: "🔥";
      margin-right: 8px;
      font-size: 20px;
    }

    @keyframes blink {
      50% {
        opacity: 0.5;
      }
    }

    /* Card hover effect */
    .service-card1 {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      background-color: #f9f9f9;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card1:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .btn-custom1 {
      background-color: #ff5722 ;
      color: #fff !important;
      border: none;
      border-radius: 20px;
      padding: 10px 20px;
      transition: background-color 0.3s ease;
      margin-bottom:10px ;
    }

    .btn-custom1:hover {
      background-color: #e64a19;
    }

    .icon1 {
      font-size: 40px;
      color: #ff5722;
    }

    .card-body h3 {
      font-size: 1.5rem;
      font-weight: bold;
    }

    .card-body p {
      color: #666;
    }
   

 
