/* why choose */
        .single-section {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            color: #5e3b90;
            overflow: hidden;
            position: relative;
            /* width: 1300px; */
        }
        .scrolling-text {
            height: 100px;
            overflow: hidden;
            position: relative;
        }
        .scrolling-text div {
            position: absolute;
            animation: scroll 10s linear infinite;
        }
        @keyframes scroll {
            0% {
                top: 100%;
            }
            100% {
                top: -100%;
            }
        }
        h3 {
            text-align: center;
            color: #452a6c;
            margin-bottom: 15px;
            margin-left: 200px;
        }
        .content p {
            margin: 5px 0;
        }
        .btn-custom {
            background-color: #5e3b90;
            color: #fff;
            border: none;
            border-radius: 5px;
            padding: 10px 15px;
            font-size: 16px;
            cursor: pointer;
        }
        .btn-custom:hover {
            background-color: #026269;
        }


        /* services */
    .outer-box {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
    }

    .inner-box {
        position: relative;
    }

    .content-box {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7); /* Dark overlay */
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        border-radius: 15px;
        padding: 10px;
    }

    .inner-box:hover .content-box {
        opacity: 1;
    }

    .inner-box img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        transition: transform 0.3s, box-shadow 0.3s;
        border-radius: 15px;
    }

    .inner-box:hover img {
        transform: scale(1.1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }


    /* service */

    .subscribe-section {
      background-color: #eee;
      padding: 60px 0;
      font-family: 'Segoe UI', sans-serif;
      color: #333;
      overflow: hidden;
    }
  
    .subscribe-content,
    .subscribe-image {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
  
    .visible {
      opacity: 1 !important;
      transform: translateY(0) !important;
    }
  
    .subscribe-content {
      flex: 1 1 50%;
    }
  
    .subscribe-image {
      flex: 1 1 50%;
      padding: 10px;
    }
  
    .subscribe-content h1 {
      font-size: 3rem;
      font-weight: 400;
      margin-bottom: 20px;
    }
  
    .subscribe-content p {
      font-size: 1.1rem;
      line-height: 1.6;
    }
  
    .subscribe-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
    }
   
    /*gallery  */
    .fade-zoom {
      opacity: 0.8;
      transition: all 0.5s ease-in-out;
      transform: scale(1);
    }

    .fade-zoom:hover {
      opacity: 1;
      transform: scale(1.05);
    }

    /* Optional: Smooth zoom and fade-in */
    section {
      padding: 60px 0;
      background-color: whitesmoke;
    }

    .img-fluid {
      height: 28vh;
      width: 100%;
      object-fit: cover;
    }



    /* <!-- Services Start --> */
     .service-card {
       transition: all 0.3s ease;
       box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
       border: none;
       border-radius: 10px;
     }
 
     .service-card:hover {
       background-color: #f0f8ff;
       box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
       cursor: pointer;
     }
   


    /* form */
    body {
      font-family: 'Roboto', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #fff;
    }
    .franchise-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 40px;
      background-color: #f9f9f9;
    }
    .franchise-content, .franchise-form {
      flex: 1;
      min-width: 300px;
      margin: 20px;
    }
    .franchise-content h2,
    .franchise-form h2 {
      font-size: 24px;
      margin-bottom: 20px;
    }
    .franchise-content p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .inquire-box {
      background-color: #2c2c2c;
      color: #fff;
      padding: 15px 20px;
      display: inline-flex;
      align-items: center;
      border-radius: 4px;
      font-size: 16px;
      margin-top: 20px;
    }
    .inquire-box i {
      margin-right: 10px;
    }
    .franchise-form {
      background: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .franchise-form label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
    }
    .franchise-form input[type="text"],
    .franchise-form input[type="email"] {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    .franchise-form .radio-group {
      margin-bottom: 15px;
    }
    .franchise-form .radio-group label {
      font-weight: normal;
      margin-right: 20px;
    }
    .franchise-form button {
      background-color: #000;
      color: #fff;
      padding: 12px 20px;
      border: none;
      cursor: pointer;
      border-radius: 4px;
      width: 100%;
    }
    .required {
      color: red;
    }
