        /* Franchise Slider Styling */
        .franchise-slider {
            position: relative;
            overflow: hidden;
            width: 100%;
            /* background: linear-gradient(135deg, #ff9a8b, #ff6a88);
            background: #1c8ac0;
            padding: 50px 0; */
            color: #fff;
            max-width: 900px;
            margin: 0 auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .franchise-slide {
            text-align: center;
            padding: 40px;
            /* background-color: rgba(255, 255, 255, 0.1); */
            background: linear-gradient(135deg, #6a11cb, #2575fc);
            border-radius: 10px;
        }

        .franchise-text h2 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-transform: uppercase;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
            color: white;
        }

        .franchise-text p {
            font-size: 1.2rem;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .franchise-text span {
            display: block;
            font-size: 1rem;
            line-height: 1.8;
            color: #ffe0e6;
        }

        .franchise-text strong {
            font-weight: bold;
            color: #ffedc2;
        }

        /* Form Section */
        .form-section {
            background-color: #fff;
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 40px 20px;
        }

        .form-section h4 {
            color: #555;
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-align: center;
            text-transform: capitalize;
        }

        .form-section input,
        .form-section select,
        .form-section textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            color: #555;
            background-color: #f9f9f9;
            transition: border-color 0.3s ease;
        }

        .form-section input:focus,
        .form-section select:focus,
        .form-section textarea:focus {
            border-color: #ff6a88;
            outline: none;
        }

        .form-section button {
            background-color: #ff6a88;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .form-section button:hover {
            background-color: #ff4c68;
        }

        /* Info Section */
        .info-section {
            background-color: #fefefe;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 40px 20px;
        }

        .info-section h4 {
            color: #ff6a88;
            margin-bottom: 20px;
            font-size: 1.8rem;
            text-align: center;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            border-radius: 10px;
            background-color: #fff;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .info-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .info-item i {
            font-size: 2.5rem;
            margin-right: 15px;
            color: #ff6a88;
        }

        .info-item p {
            margin: 0;
            font-size: 1rem;
            color: #555;
        }

        .info-item p span {
            font-weight: bold;
            color: #ff6a88;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .franchise-text h2 {
                font-size: 2rem;
            }

            .franchise-text p {
                font-size: 1rem;
            }

            .franchise-text span {
                font-size: 0.9rem;
            }

            .info-item {
                flex-direction: column;
                text-align: center;
            }

            .info-item i {
                margin-bottom: 10px;
            }
        }

        .form-section {
            background-color: #e0f7ff;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .form-section h4 {
            color: #333;
            margin-bottom: 20px;
            text-align: center;
        }

        .form-section input,
        .form-section select,
        .form-section textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }

        .form-section button {
            background-color: #ff4d4d;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
        }

        .form-section button:hover {
            background-color: #e60000;
        }

        .info-section {
            padding: 30px;
        }

        .info-section h4 {
            color: #e60000;
            margin-bottom: 20px;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .info-item i {
            font-size: 40px;
            margin-right: 20px;
            color: #333;
        }

        .info-item p {
            margin: 0;
            color: #333;
        }

        .info-item p span {
            font-weight: bold;
        }

        /* Card styling for info-item */
        .info-card {
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            gap: 20px;
        }

        .info-card i {
            font-size: 30px;
            margin-right: 20px;
            color: #e60000;
            width: 47px;
        }

        .info-card p {
            margin: 0;
            color: #333;
            font-size: 16px;
        }

        .info-card p span {
            font-weight: bold;
        }

        /* Hover effect */
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }

        /* Add a light background color to make it stand out when hovered */
        .info-card:hover {
            background-color: #f8f8f8;
        }

        .faq-heading {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            color: #004085;
            text-transform: uppercase;
            margin-bottom: 40px;
            letter-spacing: 1px;
        }

        .accordion-button:not(.collapsed) {
            position: relative;
            overflow: hidden;
            color: #fff;
            background-color: #004085;
        }

        .accordion-button:not(.collapsed)::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: #004085;
            z-index: -1;
            transition: width 0.5s ease-in-out;
        }

        .accordion-button:not(.collapsed)::after {
            width: 100%;
            /* Color spreads to cover the background */
        }

        .accordion-button {
            font-size: 1.2rem;
            font-weight: bold;
            background-color: #f8f9fa;
            color: #004085;
            border: 1px solid #b5d6f7;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .accordion-button i {
            margin-right: 10px;
            font-size: 1.2rem;
            width: 30px;
        }

        .accordion-button:hover {
            background-color: #e9f2fa;
            color: #002a5c;
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .accordion-button:not(.collapsed) {
            color: #fff;
            background-color: #004085;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .accordion-item {
            border: none;
            margin-bottom: 15px;
        }

        .accordion-body {
            background-color: #ffffff;
            padding: 20px;
            line-height: 1.8;
            border: 1px solid #ddd;
            border-top: none;
            border-radius: 0 0 5px 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        /* Responsive Styling */
        @media (max-width: 768px) {
            .faq-heading {
                font-size: 2rem;
            }

            .accordion-button {
                font-size: 1rem;
            }

            .accordion-body {
                font-size: 0.95rem;
                padding: 15px;
            }
        }

        @media (max-width: 480px) {
            .faq-heading {
                font-size: 1.5rem;
            }

            .accordion-button {
                font-size: 0.9rem;
                padding: 10px;
            }

            .accordion-body {
                font-size: 0.85rem;
                padding: 10px;
            }

            .info-card {
                display: block;
                padding: 10px;
                text-align: justify;
            }

            .info-card i {
                display: flex;
                width: 100%;
                justify-content: center;
                margin-bottom: 10px;
            }
        }

        .accordion-item {
            position: relative;
            border: none;
            margin-bottom: 15px;
            overflow: hidden;
        }

        /*   .accordion-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: #004085; 
            transition: all 0.3s ease;
            z-index: 1;
            opacity: 0; 
        }*/

        .accordion-button {
            font-size: 1.2rem;
            font-weight: bold;
            background-color: #f8f9fa;
            color: #004085;
            border: 1px solid #b5d6f7;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 2;
            /* Ensures it appears above the color bar */
        }

        .accordion-button:not(.collapsed) {
            color: #fff;
            background-color: #004085;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .accordion-item:not(.collapsed)::before {
            opacity: 1;
            /* Make the bar visible when open */
            width: 100%;
            /* Spread the color bar across the background */
        }

        .accordion-body {
            background-color: #ffffff;
            padding: 20px;
            line-height: 1.8;
            border: 1px solid #ddd;
            border-top: none;
            border-radius: 0 0 5px 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2;
            /* Ensures it appears above the background color */
        }

        .vn-orange a {
            background-color: #f39c12;
            display: inline-block;
            position: relative;
            margin: 30px 5px;
            padding: 20px 20px 20px 80px;
            color: #fff;
            transition: all 0.4s ease;
            border-radius: 3px
        }

        .vn-orange a:before {
            content: "\f019";
            font-family: fontAwesome;
            position: absolute;
            font-style: normal;
            font-weight: normal;
            text-decoration: inherit;
            font-size: 28px;
            border-radius: 0 20px 0 0;
            color: #000;
            background-color: #fff;
            opacity: 0.3;
            padding: 20px;
            top: 0;
            left: 0
        }

        .vn-orange a:hover {
            background: #7f8c8d
        }
        
        
        
         @media (max-width: 991px) {
            .info-card img {
                display: block;
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (max-width: 767px) {
            .info-card img {
                width: 45px;
            }
        }
        
        
          @media (min-width: 575px) and (max-width: 991px)  {
             .info-card img {
                display: block;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
        }