    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --primary-orange: #FF5F15;
        --secondary-orange: #FFA802;
        --gradient-primary: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
        --bg-dark: #0d163e;
        --text-light: #ffffff;
        --transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
    }

    body {
        background: var(--bg-dark);
        color: #fff;
        font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
        min-height: 100vh;
        overflow-x: hidden;
    }



    .container-fluid {
        max-width: 1850px;
    }

    /* Insurance Hero Section */
    /* .insurance-hero-section {
            background: linear-gradient(135deg, #0a0f2c 0%, #1a1f3a 50%, #0a0f2c 100%);
    position: relative;
      min-height: 75vh !important;
      display: flex;
      padding: clamp(80px, 15vw, 100px) 0 clamp(60px, 12vw, 70px);

      align-items: center;
      overflow: hidden;
      margin-top: 5rem;
      border-bottom: 4px solid var(--primary-orange);
      border-radius: 0px 0px 30px 30px;
        } */



    @media (min-width: 1200px) and (max-width: 1900px) {
        .insurance-hero-section {
            padding: 52px 20px !important;
        }
    }

    /* Insurance Hero Section - Matched to Privacy/Terms Height */
    .insurance-hero-section {
        background: linear-gradient(135deg, #0a0f2c 0%, #1a1f3a 50%, #0a0f2c 100%);
        position: relative;
        min-height: 75vh;
        display: flex;
        padding: clamp(80px, 15vw, 100px) 0 clamp(60px, 12vw, 70px);
        align-items: center;
        overflow: hidden;
        margin-top: 5rem;
        border-bottom: 4px solid var(--primary-orange);
        border-radius: 0 0 30px 30px;
    }

    /* Hero Content Wrapper - Matched Structure */
    .insurance-hero-section .container-fluid {
        position: relative;
        z-index: 5;
        width: 100%;
        max-width: 1850px;
        margin: 0 auto;
        padding: 0 max(40px, 3vw);
    }

    .insurance-hero-section .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        /*width: 100%;*/
        min-height: 56.5vh;
        /* Exact match to privacy/terms */
    }

    /* Left Content Column */
    .insurance-hero-section .col-lg-6:first-child {
        position: relative;
        z-index: 3;
        margin-top: 0;
        max-width: 700px;
        width: 100%;
    }

    /* Remove the inline margin-top style and use CSS */
    .insurance-hero-section .col-lg-6:first-child>div {
        margin-top: 0 !important;
    }

    /* Background Animations */
    .insurance-shield-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.08;
        z-index: 1;
        overflow: hidden;
    }

    .shield-pattern {
        position: absolute;
        width: 200px;
        height: 200px;
        border: 2px solid #FF5F15;
        border-radius: 50%;
        animation: shieldFloat 6s ease-in-out infinite;
    }

    .shield-pattern:nth-child(1) {
        top: 10%;
        left: 5%;
        animation-delay: 0s;
    }

    .shield-pattern:nth-child(2) {
        top: 60%;
        right: 8%;
        animation-delay: 2s;
    }

    .shield-pattern:nth-child(3) {
        bottom: 10%;
        left: 50%;
        animation-delay: 4s;
    }

    @keyframes shieldFloat {

        0%,
        100% {
            transform: translateY(0px) rotate(0deg);
            opacity: 0.3;
        }

        50% {
            transform: translateY(-30px) rotate(10deg);
            opacity: 0.6;
        }
    }

    .insurance-content {
        position: relative;
        z-index: 5;
        animation: fadeInLeft 1s ease-out;
    }

    /* Insurance Badge - Matched Spacing */
    .insurance-badge {
        display: inline-flex !important;
        align-items: center !important;
        gap: 10px !important;
        background: rgba(255, 95, 21, 0.1) !important;
        border: 2px solid rgba(255, 95, 21, 0.3) !important;
        color: var(--secondary-orange) !important;
        padding: 12px 24px !important;
        border-radius: 50px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        margin-bottom: 30px !important;
        backdrop-filter: blur(10px) !important;
        animation: slideInLeft 1s ease-out !important;
    }

    .insurance-badge i {
        font-size: 16px !important;
        animation: pulse 2s infinite !important;
    }

    @keyframes pulseBadge {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(255, 95, 21, 0.4);
        }

        50% {
            box-shadow: 0 0 0 15px rgba(255, 95, 21, 0);
        }
    }

    /* Insurance Main Title - Matched Font Sizing */
    .insurance-main-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
        font-weight: 750;
        line-height: 1.1;
        color: white;
        margin-bottom: 25px;
        animation: slideInLeft 1.2s ease-out 0.3s both;
    }

    /* Insurance Subtitle - Matched Spacing */
    .insurance-subtitle {
        font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important;
        color: rgba(255, 255, 255, 0.85) !important;
        line-height: 1.6 !important;
        margin-bottom: 35px !important;
        animation: slideInLeft 1.2s ease-out 0.6s both !important;
    }


    .highlight-word {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        display: inline-block;
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.8;
        }
    }


    /* Insurance Actions - Matched Layout */
    .insurance-actions {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        animation: slideInLeft 1.2s ease-out 0.9s both;
    }

    .insurance-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        border: none;
        cursor: pointer;
    }

    .insurance-btn.primary {
        background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
        color: white;
        box-shadow: 0 10px 30px rgba(255, 95, 21, 0.3);
    }

    .insurance-btn.primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }

    .insurance-btn.primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 95, 21, 0.4);
        color: white;
    }

    .insurance-btn.primary:hover::before {
        left: 100%;
    }

    .insurance-btn.secondary {
        background: transparent;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
    }

    .insurance-btn.secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #FF5F15;
        color: #FF5F15;
        transform: translateY(-3px);
    }

    /* Right Illustration */
    /* Insurance Illustration Container */
    /* Right Image Column - Matched Positioning */
    .insurance-hero-section .col-lg-6.insurance-image-col {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        animation: slideInRight 1.2s ease-out 0.6s both;
        height: 100%;
        max-height: calc(100vh - 200px);
        width: 100%;
        max-width: 700px;
        justify-self: end;
    }

    /* Insurance Illustration Container */
    .insurance-illustration {
        position: relative;
        width: 100%;
        max-width: 550px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* Shield Protection System */
    .shield-protection-system {
        position: relative;
        width: 500px;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Central 3D Shield */
    .central-shield-3d {
        position: absolute;
        width: 160px;
        height: 180px;
        transform-style: preserve-3d;
        animation: shield3DRotate 8s ease-in-out infinite;
        z-index: 10;
    }

    .shield-face {
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #FF5F15, #FFA802);
        border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 20px 60px rgba(255, 95, 21, 0.5);
        backface-visibility: hidden;
    }

    .shield-face i {
        font-size: 70px;
        color: white;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    }

    .shield-face.back {
        transform: rotateY(180deg);
        background: linear-gradient(135deg, #ffa6020c, #ff5f1507);
    }

    .back img {
        height: 120px;
        width: 120px;
        object-fit: contain';

    }

    .shield-glow {
        position: absolute;
        width: 200%;
        height: 200%;
        top: -50%;
        left: -50%;
        background: radial-gradient(circle, rgba(255, 95, 21, 0.3) 0%, transparent 70%);
        animation: glowPulse 3s ease-in-out infinite;
    }

    @keyframes shield3DRotate {

        0%,
        100% {
            transform: rotateY(0deg) rotateX(0deg);
        }

        25% {
            transform: rotateY(180deg) rotateX(10deg);
        }

        50% {
            transform: rotateY(360deg) rotateX(0deg);
        }

        75% {
            transform: rotateY(180deg) rotateX(-10deg);
        }
    }

    @keyframes glowPulse {

        0%,
        100% {
            opacity: 0.5;
            transform: scale(1);
        }

        50% {
            opacity: 1;
            transform: scale(1.2);
        }
    }

    /* Orbiting Insurance Icons */
    .insurance-orbit {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .orbit-path {
        position: absolute;
        width: 100%;
        height: 100%;
        /* animation: orbitRotate 12s linear infinite; */
    }



    @keyframes orbitRotate {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .insurance-icon-card {
        position: absolute;
        width: 85px;
        height: 85px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 95, 21, 0.3);
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        transition: all 0.4s ease;
    }

    .insurance-icon-card:hover {
        background: rgba(255, 95, 21, 0.2);
        border-color: #FF5F15;
        transform: scale(1.2);
        box-shadow: 0 15px 40px rgba(255, 95, 21, 0.4);
        z-index: 100;
    }

    .insurance-icon-card i {
        font-size: 30px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .insurance-icon-card span {
        font-size: 11px;
        color: white;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Position Cards on Orbits */

    .orbit-2 .insurance-icon-card {
        top: 50%;
        right: -10px;
        transform: translateY(-50%) rotate(0deg);
    }

    .orbit-3 .insurance-icon-card {
        bottom: 15px;
        left: 36%;
        transform: translateX(-50%) rotate(0deg);
    }

    .orbit-4 .insurance-icon-card {
        top: 15%;
        left: 135px;
        transform: translateY(-50%) rotate(0deg);
    }

    /* Protection Waves */
    .protection-wave {
        position: absolute;
        width: 300px;
        height: 300px;
        border: 2px solid rgba(255, 95, 21, 0.2);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: waveExpand 4s ease-out infinite;
    }

    .wave-1 {
        animation-delay: 0s;
    }

    .wave-2 {
        animation-delay: 1.3s;
    }

    .wave-3 {
        animation-delay: 2.6s;
    }

    @keyframes waveExpand {
        0% {
            width: 180px;
            height: 180px;
            opacity: 0.8;
            border-width: 3px;
        }

        100% {
            width: 500px;
            height: 500px;
            opacity: 0;
            border-width: 1px;
        }
    }

    /* Data Stream Lines */
    .data-streams {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
    }

    .stream-dot {
        fill: #FFA802;
        filter: drop-shadow(0 0 8px #FF5F15);
        animation: streamPulse 2s ease-in-out infinite;
    }

    .dot-1 {
        animation-delay: 0s;
    }

    .dot-2 {
        animation-delay: 0.5s;
    }

    .dot-3 {
        animation-delay: 1s;
    }

    .dot-4 {
        animation-delay: 1.5s;
    }

    @keyframes streamPulse {

        0%,
        100% {
            r: 3;
            opacity: 1;
        }

        50% {
            r: 8;
            opacity: 0.3;
        }
    }

    /* Floating Stats Badges */
    .stat-badge {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 95, 21, 0.3);
        border-radius: 15px;
        padding: 12px 18px;
        display: flex;
        align-items: center;
        gap: 12px;
        animation: floatBadge 4s ease-in-out infinite;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .stat-badge:hover {
        background: rgba(255, 95, 21, 0.2);
        border-color: #FF5F15;
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 35px rgba(255, 95, 21, 0.3);
    }

    .badge-1 {
        top: 15%;
        right: 8%;
        animation-delay: 0s;
    }

    .badge-2 {
        bottom: 30%;
        left: 5%;
        animation-delay: 1.3s;
    }

    .badge-3 {
        bottom: 12%;
        right: 12%;
        animation-delay: 2.6s;
    }

    @keyframes floatBadge {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-15px);
        }
    }

    .badge-icon {
        width: 40px;
        height: 40px;
        background: var(--gradient-primary);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: white;
    }

    .badge-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .badge-text strong {
        font-size: 16px;
        color: white;
        font-weight: 700;
    }

    .badge-text span {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Particle System */
    .insurance-particles {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
    }

    .particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: radial-gradient(circle, #FF5F15, #FFA802);
        border-radius: 50%;
        opacity: 0;
        animation: particleFloat 6s ease-in-out infinite;
    }

    .particle:nth-child(1) {
        top: 20%;
        left: 15%;
        animation-delay: 0s;
    }

    .particle:nth-child(2) {
        top: 60%;
        right: 10%;
        animation-delay: 1.2s;
    }

    .particle:nth-child(3) {
        bottom: 25%;
        left: 8%;
        animation-delay: 2.4s;
    }

    .particle:nth-child(4) {
        top: 40%;
        right: 20%;
        animation-delay: 3.6s;
    }

    .particle:nth-child(5) {
        bottom: 15%;
        right: 25%;
        animation-delay: 4.8s;
    }

    @keyframes particleFloat {

        0%,
        100% {
            transform: translateY(0px) scale(1);
            opacity: 0;
        }

        10% {
            opacity: 1;
        }

        50% {
            transform: translateY(-50px) scale(1.5);
            opacity: 1;
        }

        90% {
            opacity: 1;
        }
    }

    /* Responsive */
    @media (max-width: 991px) {
        .shield-protection-system {
            width: 400px;
            height: 400px;
        }

        .central-shield-3d {
            width: 130px;
            height: 150px;
        }

        .shield-face i {
            font-size: 55px;
        }
    }

    @media (max-width: 768px) {
        .insurance-illustration {
            height: 450px;
        }

        .shield-protection-system {
            width: 350px;
            height: 350px;
        }

        .stat-badge {
            display: none;
        }

        .insurance-icon-card {
            width: 70px;
            height: 70px;
        }

        .insurance-icon-card i {
            font-size: 24px;
        }
    }

    @media (max-width: 576px) {
        .insurance-illustration {
            height: 400px;
        }

        .shield-protection-system {
            width: 300px;
            height: 300px;
        }

        .central-shield-3d {
            width: 110px;
            height: 130px;
        }

        .shield-face i {
            font-size: 45px;
        }
    }

    /* Floating Insurance Particles */
    .insurance-particles {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .particle-icon {
        position: absolute;
        font-size: clamp(20px, 4vw, 35px);
        color: rgba(255, 95, 21, 0.15);
        animation: particleFloat 6s ease-in-out infinite;
        pointer-events: none;
    }

    .particle-icon:nth-child(1) {
        top: 10%;
        left: 5%;
        animation-delay: 0s;
        animation: particleFloat 7s ease-in-out infinite;
    }

    .particle-icon:nth-child(2) {
        top: 70%;
        right: 8%;
        animation-delay: 1s;
        animation: particleFloat 8s ease-in-out infinite;
    }

    .particle-icon:nth-child(3) {
        top: 40%;
        right: 2%;
        animation-delay: 2s;
        animation: particleFloat 9s ease-in-out infinite;
    }

    .particle-icon:nth-child(4) {
        bottom: 15%;
        left: 10%;
        animation-delay: 1.5s;
        animation: particleFloat 7.5s ease-in-out infinite;
    }

    @keyframes particleFloat {

        0%,
        100% {
            transform: translateY(0px) rotate(0deg);
            opacity: 0.1;
        }

        50% {
            transform: translateY(-25px) rotate(180deg);
            opacity: 0.3;
        }
    }

    /* Animated Background Gradient */
    .card-gradient-bg {
        position: absolute;
        width: 400px;
        height: 300px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle at 30% 40%, rgba(255, 95, 21, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 70% 60%, rgba(255, 168, 2, 0.06) 0%, transparent 50%);
        border-radius: 50%;
        filter: blur(40px);
        z-index: 0;
        animation: gradientShift 8s ease-in-out infinite;
    }

    @keyframes gradientShift {

        0%,
        100% {
            transform: translate(-50%, -50%) scale(1);
        }

        50% {
            transform: translate(-50%, -50%) scale(1.1);
        }
    }

    /* Accent Lines */
    .accent-lines {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .line {
        position: absolute;
        background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.3), transparent);
        opacity: 0;
        animation: lineAnim 3s ease-in-out infinite;
    }

    .line:nth-child(1) {
        width: 300px;
        height: 1px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .line:nth-child(2) {
        width: 250px;
        height: 1px;
        bottom: 25%;
        right: 10%;
        animation-delay: 0.5s;
    }

    @keyframes lineAnim {

        0%,
        100% {
            opacity: 0;
            transform: translateX(0);
        }

        50% {
            opacity: 1;
            transform: translateX(20px);
        }
    }

    /* Animations */
    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Responsive Design */

    /* Responsive - Tablet */
    @media (max-width: 1024px) {
        .insurance-hero-section .row {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .insurance-hero-section .col-lg-6:first-child {
            text-align: center;
            order: 2;
            margin-top: 1rem;
            max-width: 100%;
            justify-self: center;
        }

        .insurance-hero-section .col-lg-6.insurance-image-col {
            order: 1;
            max-height: none;
            justify-self: center;
        }

        .insurance-illustration {
            max-width: 450px;
        }
    }

    @media (max-width: 768px) {
        .insurance-hero-section {
            padding: 60px 0;
            min-height: 60vh;
        }

        .insurance-hero-section .container-fluid {
            padding: 0 20px;
        }

        .insurance-hero-section .row {
            gap: 20px;
            min-height: auto;
        }

        .insurance-hero-section .col-lg-6:first-child {
            margin-top: 0.5rem;
        }

        .insurance-badge {
            padding: 10px 20px !important;
            font-size: 12px !important;
        }

        .insurance-illustration {
            max-width: 380px;
        }

        .insurance-content {
            text-align: center;
            margin-bottom: 30px;
        }

        .insurance-badge {
            margin-left: auto;
            margin-right: auto;
        }

        .insurance-actions {
            justify-content: center;
        }

        .insurance-trust-badge {
            display: none;
        }

        .insurance-btn {
            width: 100%;
            justify-content: center;
        }
    }

    @media (max-width: 576px) {
        .insurance-hero-section {
            padding: 60px 0 40px;
        }

        .insurance-illustration {
            max-width: 320px;
        }
    }



    @media (max-width: 480px) {
        .insurance-illustration {
            max-width: 280px;
        }

        .insurance-hero-section {
            padding: 70px 0 50px;
        }

        .insurance-illustration {
            max-width: 280px;
            height: 280px;
        }

        .insurance-orbit {
            width: 200px;
            height: 200px;
        }

        .central-shield {
            width: 80px;
            height: 80px;
        }

        .central-shield i {
            font-size: 40px;
        }

        .insurance-element {
            width: 40px;
            height: 40px;
        }

        .insurance-element i {
            font-size: 18px;
        }

        .insurance-main-title {
            margin-bottom: 15px;
        }

        .insurance-subtitle {
            margin-bottom: 25px;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }
    }

    /* Services Section */
    .services-section {
        padding: 90px 0 110px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .section-title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        font-weight: 700;
        margin-bottom: 18px;
    }

    .section-title .gradient-text {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-subtitle {
        font-size: clamp(1.05rem, 2.5vw, 1.3rem);
        color: rgba(255, 255, 255, 0.78);
        max-width: 750px;
        margin: 0 auto;
    }

    /* Insurance Categories */
    .insurance-categories {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 34px;
        max-width: 1300px;
        margin: 0 auto;
    }

    .category-card {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 28px;
        padding: 45px 32px;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .category-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-primary);
        opacity: 0;
        transition: opacity 0.4s;
        z-index: 0;
    }

    .category-card:hover::before {
        opacity: 0.1;
    }

    .category-card:hover {
        transform: translateY(-15px);
        border-color: rgba(255, 95, 21, 0.45);
        box-shadow: 0 28px 55px rgba(255, 95, 21, 0.28);
    }

    .category-card-content {
        position: relative;
        z-index: 1;
    }

    .category-header {
        font-size: clamp(22px, 3.5vw, 26px);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 35px;
        padding-bottom: 18px;
        border-bottom: 3px solid transparent;
        border-image: var(--gradient-primary) 1;
    }

    .insurance-services-grid {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .insurance-service-item {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 18px;
        padding: 22px;
        display: flex;
        align-items: center;
        gap: 22px;
        cursor: pointer;
        transition: var(--transition);
    }

    .insurance-service-item:hover {
        background: linear-gradient(135deg, rgba(255, 95, 21, 0.14) 0%, rgba(255, 168, 2, 0.1) 100%);
        border-color: rgba(255, 95, 21, 0.35);
        transform: translateX(12px);
    }

    .insurance-service-icon {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
        transition: var(--transition);
    }

    .insurance-service-item:hover .insurance-service-icon {
        transform: scale(1.18) rotate(5deg);
        filter: brightness(1.25) saturate(1.35);
    }

    .insurance-service-info h4 {
        font-size: 18px;
        font-weight: 600;
        color: white;
        margin-bottom: 6px;
    }

    .insurance-service-info p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.68);
        margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .insurance-stats {
            grid-template-columns: repeat(2, 1fr);
        }

        .insurance-categories {
            grid-template-columns: repeat(1, 1fr);
            gap: 35px;
        }
    }




    @media (max-width: 576px) {
        .hero-badge {
            font-size: 13px;
            padding: 10px 22px;
        }

        .insurance-stats {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .category-card {
            padding: 28px 22px;
        }

        .insurance-service-item {
            padding: 15px;
        }

        .insurance-service-icon {
            width: 55px;
            height: 55px;
        }

        .insurance-service-info h4 {
            font-size: 16px;
        }

        .insurance-service-info p {
            font-size: 13px;
        }
    }
    
    
    
    @media (max-width: 1024px) {
    .insurance-hero-section .row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .insurance-hero-section .col-lg-6:first-child {
        text-align: center;
        order: 2;
        margin-top: 1rem;
        max-width: 100%;
        justify-self: center;
    }
    .insurance-hero-section .col-lg-6.insurance-image-col {
        order: 1;
        max-height: none;
        justify-self: center;
    }
    .insurance-illustration {
        max-width: 450px;
    }
    .shield-protection-system {
        width: 400px;
        height: 400px;
    }
}
@media (max-width: 768px) {
    .insurance-hero-section {
        padding: 60px 0;
        min-height: 60vh;
    }
    
    .insurance-hero-section .col-lg-6.insurance-image-col {
        justify-content: center;
    }
    .insurance-hero-section .container-fluid {
        padding: 0 20px;
    }
    .insurance-hero-section .row {
        gap: 20px;
        min-height: auto;
    }
    .insurance-hero-section .col-lg-6:first-child {
        margin-top: 0.5rem;
    }
    .insurance-badge {
        padding: 10px 20px !important;
        font-size: 12px !important;
    }
    .insurance-illustration {
        max-width: 380px;
        height: auto;
    }
    .shield-protection-system {
        width: 350px;
        height: 350px;
    }
    .central-shield-3d {
        width: 120px;
        height: 140px;
    }
    .shield-face i {
        font-size: 50px;
    }
    .back img {
        height: 100px;
        width: 100px;
    }
    .insurance-icon-card {
        width: 70px;
        height: 70px;
    }
    .insurance-icon-card i {
        font-size: 24px;
    }
    .insurance-icon-card span {
        font-size: 9px;
    }
    .stat-badge {
        padding: 8px 12px;
        display: none;
    }
    .protection-wave {
        width: 250px;
        height: 250px;
    }
    .insurance-content {
        text-align: center;
        margin-bottom: 30px;
    }
    .insurance-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .insurance-actions {
        justify-content: center;
    }
    .insurance-btn {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 576px) {
    .insurance-hero-section {
        padding: 60px 0 40px;
    }
    .insurance-illustration {
        max-width: 300px;
    }
    .shield-protection-system {
        width: 280px;
        height: 280px;
    }
    .central-shield-3d {
        width: 100px;
        height: 120px;
    }
    .shield-face i {
        font-size: 40px;
    }
    .back img {
        height: 80px;
        width: 80px;
    }
    .insurance-icon-card {
        width: 60px;
        height: 60px;
    }
    .insurance-icon-card i {
        font-size: 20px;
    }
    .insurance-icon-card span {
        font-size: 8px;
    }
    .orbit-2 .insurance-icon-card {
        right: -5px;
    }
    .orbit-3 .insurance-icon-card {
        left: 32%;
    }
    .orbit-4 .insurance-icon-card {
        left: 100px;
    }
    .protection-wave {
        width: 200px;
        height: 200px;
    }
}
@media (max-width: 480px) {
    .insurance-illustration {
        max-width: 260px;
    }
    .shield-protection-system {
        width: 240px;
        height: 240px;
    }
    .central-shield-3d {
        width: 90px;
        height: 110px;
    }
    .shield-face i {
        font-size: 35px;
    }
    .back img {
        height: 70px;
        width: 70px;
    }
    .insurance-icon-card {
        width: 50px;
        height: 50px;
    }
    .insurance-icon-card i {
        font-size: 18px;
    }
    .insurance-icon-card span {
        font-size: 7px;
    }
    .orbit-2 .insurance-icon-card {
        right: 0;
    }
    .orbit-3 .insurance-icon-card {
        left: 30%;
        bottom: 10px;
    }
    .orbit-4 .insurance-icon-card {
        left: 80px;
        top: 10%;
    }
    .protection-wave {
        width: 180px;
        height: 180px;
    }
    .insurance-main-title {
        margin-bottom: 15px;
    }
    .insurance-subtitle {
        margin-bottom: 25px;
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
    .particle {
        display: none;
    }
}