
    
      @font-face {
            font-family: 'bahnschrift';
            src: url('{{ asset("/assets/axis/fonts/bahnschrift-webfont.woff2") }}') format('woff2'),
            url('{{ asset("/assets/axis/fonts/bahnschrift-webfont.woff") }}') format('woff');
            font-weight: normal;
            font-style: normal;
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #6C6C6C;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #BD9A60 !important;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            background-color: #c4a366;
            color: white;
            padding: 12px 24px;
            border-radius: 4px;
            font-weight: 500;
            transition: background-color 0.3s ease;
            text-align: center;
        }

        .btn:hover {
            background-color: #51574d;
            color: white;
        }

        .section-padding {
            padding: 60px 0;
        }

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

        .head-font {
            font-family: 'bahnschrift', sans-serif;
        }

        .text-secondary {
            color: #51524A;
        }

        .text-gradient {
            background: linear-gradient(to right, #c4a366, #51574d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Featured Title Section */
        #featured-title {
            position: relative;
            margin-bottom: 40px;
        }

        .strip-bg img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .title {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            color: white;
            text-align: center;
        }

        .title h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .title h3 {
            font-size: 18px;
            font-weight: 400;
        }

        /* Breadcrumb */
        .breadcrumb-wrapper {
            padding: 15px 0;
            background: #f5f5f5;
        }

        .breadcrumb {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .breadcrumb li {
            margin-right: 10px;
            font-size: 14px;
        }

        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 10px;
            color: #777;
        }

        /* Insurance Brokers Block */
        .insurance-brokers-block {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 40px;
        }

        .insurance-card {
            background: #f8f9fa;
            border-radius: 8px;
            overflow: hidden;
            width: calc(25% - 20px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .insurance-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .card-img {
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: #fff;
        }

        .card-img img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }

        .card-content {
            padding: 20px;
        }

        .card-content h4 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #333;
        }

        .card-content p {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
        }

        /* Featured Title Section */
        .featured-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url('{{ asset("/assets/axis/images/businessbanner.jpg") }}');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .featured-section h1 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .featured-section h3 {
            font-size: 22px;
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Breadcrumb Container */
        .breadcrumb-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            background: #f8f8f8;
            padding: 15px 8%;
        }

        .fitsc-button {
            background: #51524A;
            color: white;
            padding: 12px 25px;
            border-radius: 4px;
            font-weight: 500;
            display: inline-block;
            transition: background 0.3s ease;
        }

        .fitsc-button:hover {
            background: #3a3a34;
            color: white;
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .insurance-card {
                width: calc(33.333% - 20px);
            }
        }

        @media (max-width: 768px) {
            .featured-section h1 {
                font-size: 32px;
            }

            .featured-section h3 {
                font-size: 18px;
            }

            .insurance-card {
                width: calc(50% - 20px);
            }

            .breadcrumb-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .fitsc-buttons {
                margin-top: 15px;
                width: 100%;
            }

            .fitsc-button {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .insurance-card {
                width: 100%;
            }

            .featured-section {
                padding: 60px 15px;
            }

            .featured-section h1 {
                font-size: 28px;
            }
        }

        /* Promo Section */
        .promo-section {
            background: linear-gradient(to right, #c4a366, #51574d);
            color: white;
            padding: 40px 0;
            margin-top: 40px;
            text-align: center;
        }

        .promo-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .promo-content p {
            font-size: 20px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        /* Section Headings */
        .section-heading {
            font-size: 36px;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #c4a366;
        }

        .section-subheading {
            font-size: 18px;
            color: #666;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .container-p {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            background-color: white;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            margin-bottom: 3rem;
            padding: 2rem;
        }

        .wave {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            transform: scale(0);
        }

        .effective-date {
            font-style: italic;
            color: #7f8c8d;
            margin-bottom: 2rem;
            text-align: right;
        }

        .divider {
            border-top: 1px dashed #ddd;
            margin: 1.5rem 0;
        }

        /* .floating-button {
         position: fixed;
         bottom: 65px;
         right: 20px;
         display: flex;
         justify-content: center;
         align-items: center;
         width: 45px;
         height: 45px;
         border-radius: 50%;
         background-color: #25d366;
         background-image: "/logo/whatsapp.png}}";
         box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
         z-index: 999;
      } */

        /* .floating-button .wave {
         animation: wave 2s ease-in-out infinite;
      }

      .wave {
         position: absolute;
         width: 60px;
         height: 60px;
         border-radius: 50%;
         background-color: rgba(255, 255, 255, 0.5);
         transform: scale(0);
      } */

        @keyframes wave {
            0% {
                transform: scale(0);
                opacity: 1;
            }

            100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        /* For desktop/larger screens */

        .breadcrumb-wrapper {
            flex: 1;
        }

        .fitsc-buttons {
            margin-left: 0px;
            padding-right: 8%;
            /* New: Give 20% space from right side */
        }

        .fitsc-button {
            padding: 14px 20px;
            /* Slightly adjust padding */
            font-size: 14px;
            max-width: 200px;
            width: 100%;
        }

        /* For mobile screens */
        @media (max-width: 768px) {
            .main {
                margin-top: 50px;
            }

            .breadcrumb-container {
                flex-direction: column;
                align-items: flex-start;
                justify-content: center;
            }

            .fitsc-buttons {
                justify-items: center;
                margin: 10px 10px 10px 10px;
                width: 100%;
                padding-right: 0;
            }

            .fitsc-button {
                display: block;
                width: 30%;
                /* Make button smaller for mobile */
                margin-right: 0px;
                /* border-radius: 20px; */
                justify-items: center;
                text-align: center;
                font-size: 12px;
                /* Make text slightly smaller */
                padding: 12px 15px;
                /* Adjust padding */
                max-width: none;
            }
        }

        @media (max-width: 440px) {
            .main {
                margin-top: 50px;
            }

            .breadcrumb-container {
                flex-direction: column;
                align-items: flex-start;
                justify-content: center;
            }

            .fitsc-buttons {
                justify-items: center;
                margin: 10px 10px 10px 10px;
                width: 100%;
                padding-right: 0;
            }

            .fitsc-button {
                display: block;
                width: 50%;
                /* Make button smaller for mobile */
                margin-right: 0px;
                /* border-radius: 20px; */
                justify-items: center;
                text-align: center;
                font-size: 12px;
                /* Make text slightly smaller */
                padding: 12px 15px;
                /* Adjust padding */
                max-width: none;
            }
        }
        
    /* Coverage We Arrange Section */
    .coverage-section {
        padding: 4rem 0 6rem;
        text-align: center;
    }

    .coverage-heading {
        font-size: 2.25rem;
        font-weight: 700;
        color: #51524A;
        margin-bottom: 0;
    }

    .coverage-sub-heading {
        margin-top: 1rem;
        font-size: 1.45rem;
        font-weight: 600;
        color: #51524A;
        margin-bottom: 0;
    }

    .text-gradient {
        background: linear-gradient(to right, #c4a366, #51574d);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .insurance-brokers-block {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        margin-top: 2rem;
        justify-content: center;
    }

    .insurance-card {
        text-align: center;
        width: calc(20% - 2rem);
        display: flex;
        flex-direction: column;
        background: #f9fafb;
        padding: 1rem 1.5rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
    }

    .insurance-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .insurance-card img {
        height: 7rem;
        margin: 0 auto;
    }

    .insurance-card h4 {
        margin-top: 1rem;
        color: #000;
        font-weight: 500;
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .insurance-card p {
        color: #6b7280;
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .quote-button {
        background: #c4a366;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 0.375rem;
        margin-top: 1.25rem;
        font-size: 0.875rem;
        font-weight: 500;
        transition: opacity 0.3s ease;
        margin-top: auto;
    }

    .quote-button:hover {
        background: #c4a366 !important;
        color: white !important;
        text-decoration: none !important;
        opacity: 1 !important;
    }



    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .insurance-card {
            width: calc(25% - 2rem);
        }
    }

    @media (max-width: 768px) {
        .insurance-card {
            width: calc(50% - 2rem);
        }

        .coverage-heading {
            font-size: 1.875rem;
        }
    }

    @media (max-width: 640px) {
        .insurance-card {
            width: 100%;
            max-width: 300px;
        }

        .coverage-section {
            padding: 3rem 1rem;
        }
    }

    section {
        width: 100%;

    }

    .container-head {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .left-content {
        text-align: left;
        flex: 1;
        min-width: 300px;
    }

    .right-content {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 15px;
    }

    h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #51524A;
        margin-bottom: 0;
        line-height: 1.2;
    }

    h2 {
        margin-top: 0.5rem;
        font-size: 1.75rem;
        font-weight: 600;
        color: #51524A;
        margin-bottom: 0;
    }

    .rating-container {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .rating {
        font-size: 1.1rem;
        font-weight: 600;
        color: #51524A;
    }

    .stars {
        font-size: 1.1rem;
        color: #ffcc00;
    }

    .reviews {
        font-size: 1rem;
        color: #777;
    }

    .button-req {
        display: inline-block;
        background-color: #c4a366;
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 600;
        transition: background-color 0.3s;
    }

    .button-req:hover {
        background: #c4a366 !important;
        color: white !important;
        text-decoration: none !important;
        opacity: 1 !important;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .container-head {
            flex-direction: column;
            align-items: center;
        }

        .container-head .left-content {
            text-align: center;
            width: 100%;
        }

        .container-head .left-content h1,
        .container-head .left-content h2 {
            text-align: center;
        }

        .right-content {
            align-items: center;
            width: 100%;
            margin-top: 20px;
        }
    }
