
    body {
        font-family: 'Segoe UI', Arial, sans-serif;
        background: #fafbfc;
        margin: 0;
        padding: 0;
        color: #222;
        min-height: 100vh;
        background: linear-gradient(135deg, #fffbe6 0%, #f3f7fa 100%);
        transition: background 0.7s cubic-bezier(.77,0,.18,1);
    }
    .heroc {
        height: 40vh;
        margin: 90px 0 20px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(90deg, #fffbe6 0%, #fff 100%);
        border-bottom: 1px solid #f3f3f3;
        box-shadow: 0 8px 32px 0 rgba(243,99,0,0.04);
        position: relative;
        overflow: hidden;
    }
    .heroc::before {
        content: "";
        position: absolute;
        left: -80px; top: -80px;
        width: 220px; height: 220px;
        background: radial-gradient(circle, #ffe0b2 0%, #fffbe6 80%, transparent 100%);
        opacity: 0.7;
        z-index: 0;
        filter: blur(12px);
        animation: floatGlow 8s ease-in-out infinite alternate;
    }
    @keyframes floatGlow {
        0% { transform: translateY(0) scale(1);}
        100% { transform: translateY(30px) scale(1.08);}
    }
    .hero_feat {
        text-align: center;
        position: relative;
        z-index: 1;
    }
    .hero_feat h2 {
        font-size: 3.5rem;
        color: #F36300;
        margin-bottom: 0.5rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-shadow: 0 4px 24px #fffbe6, 0 1px 0 #fff;
        filter: drop-shadow(0 2px 8px #f3630033);
    }
    .hero_feat p {
        color: #F36300;
        font-size: 1.25rem;
        margin: 0;
        letter-spacing: 1px;
        text-shadow: 0 2px 8px #fffbe6;
    }
    .inquire {
        width: 100%;
        margin: 0 auto 30px auto;
    }
    .inquire p {
        text-align: center;
        width: 60%;
        margin: 0 auto;
        font-size: 1.15rem;
        color: #555;
        line-height: 1.6;
        background: rgba(255,251,230,0.7);
        border-radius: 8px;
        padding: 18px 0;
        box-shadow: 0 2px 12px 0 rgba(243,99,0,0.03);
    }
    .cont {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
        margin: 30px 0;
        gap: 40px;
        background: linear-gradient(120deg, #fff 60%, #fffbe6 100%);
        border-radius: 18px;
        box-shadow: 0 8px 32px 0 rgba(243,99,0,0.04);
        position: relative;
        overflow: hidden;
        min-height: 420px;
    }
    .cont::before, .cont::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        filter: blur(32px);
        opacity: 0.18;
        z-index: 0;
        pointer-events: none;
    }
    .cont::before {
        width: 180px; height: 180px;
        left: -60px; top: 40px;
        background: radial-gradient(circle, #f36300 0%, #fffbe6 100%);
        animation: parallaxGlow1 10s ease-in-out infinite alternate;
    }
    .cont::after {
        width: 120px; height: 120px;
        right: -40px; bottom: 30px;
        background: radial-gradient(circle, #f36300 0%, #fff 100%);
        animation: parallaxGlow2 12s ease-in-out infinite alternate;
    }
    @keyframes parallaxGlow1 {
        0% { transform: translateY(0);}
        100% { transform: translateY(40px);}
    }
    @keyframes parallaxGlow2 {
        0% { transform: translateY(0);}
        100% { transform: translateY(-30px);}
    }
    .contact-details {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.06);
        padding: 40px 30px;
        max-width: 500px;
        width: 100%;
        position: relative;
        z-index: 1;
        transition: box-shadow 0.3s;
    }
    .contact-details:hover {
        box-shadow: 0 8px 32px rgba(243,99,0,0.10);
    }
    .contd h3 {
        color: #F36300;
        font-size: 1.3rem;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 600;
        letter-spacing: 1px;
        text-shadow: 0 2px 8px #fffbe6;
    }
    .contact-side {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
    }
    .contact-side img {
        width: 26px;
        height: 26px;
        object-fit: contain;
        filter: drop-shadow(0 2px 8px #f3630033);
        transition: transform 0.2s cubic-bezier(.77,0,.18,1);
    }
    .contact-side a {
        color: #444;
        margin-left: 14px;
        font-size: 1.1rem;
        text-decoration: none;
        transition: color 0.2s, text-shadow 0.2s;
        text-shadow: 0 1px 0 #fffbe6;
    }
    .contact-side a:hover {
        color: #F36300;
        text-decoration: underline;
        text-shadow: 0 2px 8px #fffbe6;
    }
    .support_icon {
        width: 340px;
        border-radius: 16px;
        box-shadow: 0 2px 24px rgba(243,99,0,0.08);
        object-fit: cover;
        position: relative;
        z-index: 1;
        transition: box-shadow 0.3s;
    }
    .support_icon:hover {
        box-shadow: 0 8px 32px rgba(243,99,0,0.13);
    }
    @media (max-width: 900px) {
        .cont {
            flex-direction: column;
            align-items: center;
            gap: 20px;
            min-height: unset;
        }
        .support_icon {
            width: 90%;
            margin: 0 auto;
            display: block;
        }
        .contact-details {
            max-width: 95%;
            padding: 30px 10px;
        }
        .inquire p {
            width: 90%;
        }
    }
    @media (max-width: 500px) {
        .heroc {
            height: auto;
            margin: 60px 0 10px 0;
            padding: 20px 0;
        }
        .hero_feat h2 {
            font-size: 2.2rem;
        }
        .inquire p {
            font-size: 1rem;
        }
        .contact-details {
            padding: 18px 5px;
        }
    }