
        body {
            margin: 0;
            font-family: 'Sora', sans-serif;
            background: #fff;
            color: #1e293b;
        }

        .new-contactus-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
            position: relative;
        }

        .new-contactus-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .new-contactus-header h2 {
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .new-contactus-header p {
            font-size: 18px;
            color: #64748b;
        }

        .new-contactus-container {
            margin-top: 76px;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 30px;

        }

        /* Left info box */
        .new-contactus-info {
            background: linear-gradient(to top, #7502af, #5a0b85);
            color: white;
            border-radius: 12px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            /* for circles */
            overflow: hidden;
            /* keep circles inside */
        }

        .new-contactus-info div h3 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #fff;
        }

        .new-contactus-info div p {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 400;
            opacity: 0.7;
            color: #C9C9C9;
        }

        .new-contactus-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 15px;
        }

        .new-contactus-info-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 80px;
        }

        .new-contactus-info-item span {
            margin-right: 10px;
            font-size: 18px;
        }

        .new-contactus-locations {
            position: relative;
            font-size: 15px;
            display: flex;
            gap: 50px;
        }

        .locations-divider {
            background-color: #fff;
            height: 90px;
            width: 3px;
        }

        .new-contactus-social {
            display: flex;
            gap: 25px;
            margin-top: 100px;
        }

        .new-contactus-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            text-decoration: none;
            transition: background 0.3s;
        }




        .social_icon_wrapper img {
            width: 40px;
            height: 40px;
            transition: filter 0.3s ease;
        }

        .social_icon_wrapper:hover img {
            filter: invert(1);
        }

        /* --- Decorative circles in bottom-right --- */
        .new-contactus-info::before {
            content: "";
            position: absolute;
            border-radius: 50%;
            background: #5B0B86;
            z-index: 1;
        }

        .new-contactus-info::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            background: #7B00B8;
            z-index: 0;
        }

        .new-contactus-info::before {
            width: 250px;
            height: 250px;
            bottom: -100px;
            right: -100px;
        }

        .new-contactus-info::after {
            width: 150px;
            height: 150px;
            bottom: 20px;
            right: 35px;
        }




        /* Right form */
        .new-contactus-form {
            background: #fff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .new-contactus-form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .new-contactus-form-group {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .message-wrapper {
            margin-top: 20px;
        }

        .new-contactus-form-group label {
            font-size: 14px;
            margin-bottom: 5px;
            color: #475569;
        }


        .new-contactus-form-group input,
        .new-contactus-form-group textarea {
            border: none;
            border-bottom: 1px solid #cbd5e1;
            padding: 8px 0;
            font-size: 15px;
            outline: none;
        }

        .new-contactus-form-group textarea {
            resize: none;
            height: 100px;
        }

        .new-contactus-radio {
            display: flex;
            gap: 20px;
            margin-top: 8px;
        }

        .new-contactus-radio label {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: #475569;
        }

        .new-contactus-locations-name {
            display: flex;
            flex-direction: column;
            gap: 5px;
            margin-left: 10px;
        }

        .new-contactus-locations-name h4 {
            margin: 8px 0px;
            color: white;

        }

        .place-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }


        .new-contactus-btn {
            margin-top: 20px;
            background: #5a0b85;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
            transform: translateX(270%);
        }

        .new-contactus-btn:hover {
            background: #6b21a8;
        }


        /* Responsive */
        @media (max-width: 900px) {
            .new-contactus-container {
                grid-template-columns: 1fr;
            }

            .new-contactus-info {
                padding: 30px;
            }

            .new-contactus-form {
                padding: 30px;
            }
        }

        /* --- Mobile adjustments --- */
        @media (max-width: 768px) {

            .new-contactus-container {
                display: flex;
                flex-direction: column;
            }

            .new-contactus-form-row {
                flex-direction: column;
            }

            .new-contactus-btn {
                transform: translateX(0%);
            }

            .new-contactus-info {
                padding: 25px;
            }

            .new-contactus-info h3 {
                font-size: 22px;
            }

            .new-contactus-info p {
                font-size: 16px;
            }

            .new-contactus-info-content {
                margin-top: 50px;
                gap: 30px;
            }

            .new-contactus-social {
                margin-top: 40px;
            }

            .new-contactus-info::before {
                width: 180px;
                height: 180px;
                bottom: -80px;
                right: -80px;
            }

            .new-contactus-info::after {
                width: 100px;
                height: 100px;
                bottom: -30px;
                right: 50px;
            }
        }

        /* FAQ section */

        .faq-section {
            margin: auto;
            text-align: center;
            margin-top: 100px;
        }

        .faq-new-home-page-container {
            width: 100%;
            max-width: 1250px;
            display: flex;
            gap: 40px;
            margin: 90px auto;
            margin-top: 40px;
        }

        .faq-col {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
        }

        .faq {
            background: white;
            color: #1B1139;
            border-radius: 10px;
            margin-bottom: 12px;
            padding: 18px 20px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            display: flex;
            gap: 20px;
            align-items: center;
            text-align: left;
        }

        .faq h3::before {
            content: '+';
            font-size: 22px;
            transition: transform 0.3s ease;
        }

        .faq.active h3::before {
            content: '-';
            transform: rotate(180deg);
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, opacity 0.3s ease;
            opacity: 0;
            margin-top: 8px;
        }

        .faq.active .faq-content {
            max-height: 210px;
            /* adjust as needed */
            opacity: 1;
        }

        .faq-content p {
            margin: 0;
            color: #555;
            line-height: 1.5;
            font-size: 14px;
            text-align: left;
            height: fit-content;
            margin-left: 30px;
        }

        @media (max-width: 700px) {
            .faq-new-home-page-container {
                flex-direction: column;
                gap: 10px;
            }

            .faq-col {
                flex-direction: column;
            }
        }

        /* Locations Section */
        .locations-section {
            max-width: 1200px;
            margin: 140px auto;
            padding: 0 20px;
            text-align: center;
        }

        .locations-heading {
            font-size: 28px;
            margin-bottom: 40px;
        }

        .locations-container {
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
            /* helps if there are more than 3 */
        }

        .location-box {
            flex: 1;
            min-width: 300px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);

            border-radius: 15px;

        }

        .location-box h3 {
            margin: 10px 0px;

            font-size: 18px;
            color: #1e293b;
        }

        .map {
            width: 100%;
            height: 450px;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }

        /* Mobile: stack vertically */
        @media (max-width: 768px) {
            .locations-container {
                flex-direction: column;
            }
        }

        .icon {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
        }

        .icon-left {
            left: 5%;
            bottom: -20%;
            animation-delay: 0s;
        }

        .icon-right {
            right: 5%;
            top: 5%;
            animation-delay: 2s;
        }

        .icon-left2 {
            left: 5%;
            bottom: 0%;
            animation-delay: 0s;
        }

        .icon-right2 {
            right: 5%;
            top: 5%;
            animation-delay: 2s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }
        }