    :root {
        --main-color: #2c1438;
        --text-color: #444;
        --hover-color: #5b3c6d;
        --white-color: #fff;
    }

    body {
        margin: 0px;
        padding: 0px;
    }

    .ux-heading {
        font-size: 32px;
        font-weight: bold;
        color: var(--main-color);
        margin-bottom: 20px;
    }

    .ux-des {
        font-size: 18px;
        font-weight: bold;
        color: var(--text-color);
        margin-bottom: 20px;
    }

    .wp-header {
        margin: 0;
        font-family: Arial, sans-serif;
    }

    /* Header */
    .wp-header .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px;
        border-bottom: 1px solid var(--main-color);
    }

    .wp-header .logo img {
        height: 75px;
    }

    .ftrlgo {
        width: 115px;
    }

    /* Navbar */
    .wp-header .nav {
        display: flex;
        gap: 25px;
        align-items: center;
    }

    .wp-header .nav a {
        color: var(--main-color);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        position: relative;
        padding-bottom: 5px;
        transition: 0.3s;
    }

    /* Active underline (Desktop) */
    .wp-header .nav a.active::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--main-color);
        border-radius: 2px;
    }

    .wp-header .nav a:hover {
        color: var(--hover-color);
    }

    /* Button */
    .wp-header .header-btn {
        background: var(--main-color);
        color: #fff;
        border: none;
        padding: 14px 18px;
        border-radius: 4px;
        font-size: 15px;
        cursor: pointer;
        transition: 0.3s;
    }

    .wp-header .header-btn:hover {
        background: var(--hover-color);
    }

    /* Toggle (mobile) */
    .wp-header .menu-toggle {
        font-size: 22px;
        cursor: pointer;
        color: var(--main-color);
        border: none;
        background: none;
        display: none;
    }

    /* Mobile menu overlay */
    .wp-header .menu-overlay {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--main-color);
        color: #fff;
        transition: 0.5s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .wp-header .menu-overlay.active {
        top: 0;
    }

    .wp-header .menu-overlay .close-btn {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 26px;
        cursor: pointer;
        color: var(--white-color);
    }

    .wp-header .menu-overlay .close-btn:hover i {
        animation: rotateIcon 0.5s linear 1;
    }

    @keyframes rotateIcon {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .wp-header .menu-overlay ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .wp-header .menu-overlay ul li {
        margin: 20px 0;
    }

    .wp-header .menu-overlay ul li a {
        color: var(--white-color);
        text-decoration: none;
        font-size: 22px;
        font-weight: bold;
        transition: 0.3s;
        position: relative;
        padding-bottom: 5px;
    }

    /* Active underline (Mobile) */
    .wp-header .menu-overlay ul li a.active::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--white-color);
        border-radius: 2px;
    }

    .wp-header .menu-overlay ul li a:hover {
        color: var(--hover-color);
    }

    /* Responsive */
    @media only screen and (max-width:768px) {
        .wp-header .nav {
            display: none;
        }

        .wp-header .header-btn {
            display: none;
        }

        .wp-header .menu-toggle {
            display: block;
        }
    }






    .wp-hero {
        color: var(--main-color);
    }

    .wp-hero {
        text-align: center;
        padding-top: 80px;
        font-family: Arial, sans-serif;
    }

    .wp-hero h1 {
        font-size: 65px;
        font-weight: bold;
        margin: 0;
        color: var(--main-color);
        margin-bottom: 0px;
        margin-top: 40px;
    }

    .wp-hero h1 span {
        font-family: "Brush Script MT", cursive;
        font-size: 100px;
        font-weight: normal;
        color: var(--hover-color);
    }

    .wp-hero p {
        margin-top: 8px;
        font-size: 24px;
        color: var(--text-color);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .wp-hero img {
        width: 100% !important;
        margin-top: 50px !important;
    }

    /* Responsive */
    @media only screen and (max-width: 768px) {
        .wp-hero {
            padding: 80px 10px 0px 10px !important;
        }

        .wp-hero h1 {
            font-size: 36px;
        }

        .wp-hero h1 span {
            font-size: 48px;
        }

        .wp-hero p {
            font-size: 16px;
        }
    }



    .wp-prehero {
        font-family: Arial, sans-serif;
        background: var(--main-color);
        text-align: center;
        color: var(--white-color);
        padding: 60px 0px;
    }

    .wp-prehero h2 {
        font-size: 26px;
        font-weight: bold;
        max-width: 900px;
        margin: 0 auto 15px;
        line-height: 1.6;
    }

    .wp-prehero p {
        font-size: 14px;
        font-family: "Brush Script MT", cursive;
        margin-top: 10px;
        opacity: 0.85;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .wp-prehero {
            padding: 70px 15px;
        }

        .wp-prehero h2 {
            font-size: 22px;
        }
    }

    @media only screen and (max-width: 768px) {
        .wp-prehero {
            padding: 50px 15px;
        }

        .wp-prehero h2 {
            font-size: 18px;
        }

        .wp-prehero p {
            font-size: 13px;
        }
    }





    /* WP Important Section */
    .wp-important {
        display: flex;
        align-items: stretch;
        justify-content: center;
        width: 100%;
        min-height: 67vh;
        margin: 100px 0px;
    }

    /* Image */
    .wp-important .image {
        flex: 1;
    }

    .wp-important .image img {
        width: 100%;
        height: 100%;
        min-height: 67vh;
        max-height: 100vh;
        object-fit: cover;
        display: block;
    }

    /* Content */
    .wp-important .content {
        flex: 1;
        padding: 60px 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .wp-important .content .btn {
        display: inline-block;
        background: var(--main-color);
        color: var(--white-color);
        padding: 12px 26px;
        text-decoration: none;
        font-weight: 600;
        border-radius: 4px;
        transition: background 0.3s;
        margin-top: 20px;
        width: fit-content;
    }

    .wp-important .content .btn:hover {
        background: var(--hover-color);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .wp-important {
            flex-direction: column;
            min-height: auto;
        }

        .wp-important .image img {
            min-height: 300px;
            max-height: 400px;
        }

        .wp-important .content {
            padding: 40px 20px;
            text-align: center;
        }

        .wp-important .content h2 {
            font-size: 26px;
        }

        .wp-important .content p {
            font-size: 16px;
        }

        .wp-important .content .btn {
            margin: 20px auto 0;
        }
    }




    .wp-services {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        padding: 60px 40px;
        max-width: 1200px;
        margin: auto;
    }

    .wp-services .service-box {
        background: var(--white-color);
        text-align: center;
        padding: 40px 20px;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .wp-services .service-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .wp-services .service-box i {
        font-size: 40px;
        color: var(--main-color);
        margin-bottom: 20px;
    }

    .wp-services .service-box h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
        color: var(--text-color);
    }

    .wp-services .service-box p {
        font-size: 14px;
        color: #666;
        margin-bottom: 15px;
    }

    .wp-services .dots {
        font-size: 20px;
        color: #ccc;
        transition: color 0.3s ease;
    }

    .wp-services .service-box:hover .dots {
        color: var(--hover-color);
    }





    .wp-joinus {
        position: relative;
        width: 100%;
        height: 600px;
        background: url('https://picsum.photos/1200/800?random=1') no-repeat center center/cover;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        text-align: center;
    }

    /* Dark overlay */
    .wp-joinus::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(44, 20, 56, 0.6);
        z-index: 1;
    }

    .wp-joinus .content {
        position: relative;
        z-index: 2;
        max-width: 700px;
        padding: 20px;
    }


    .wp-joinus h2 {
        font-size: 26px;
        font-weight: 500;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .wp-joinus .btn {
        background: var(--main-color);
        color: var(--white-color);
        padding: 14px 28px;
        border: none;
        border-radius: 4px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        transition: 0.3s ease;
    }

    .wp-joinus .btn:hover {
        background: var(--hover-color);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .wp-joinus {
            height: 700px;
        }

        .wp-joinus h2 {
            font-size: 22px;
        }
    }





    .wp-footer {
        background-color: var(--main-color);
        color: #fff;
        padding: 60px 0 20px;
        font-size: 14px;
    }

    .wp-footer h5 {
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 16px;
    }

    .wp-footer a {
        color: var(--white-color);
        text-decoration: none;
        display: inline-block;
        position: relative;
        font-size: 16px;
        margin-bottom: 4px;
        padding-bottom: 2px;
        transition: color 0.3s ease;
    }

    .wp-footer a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: var(--white-color);
        transition: width 0.3s ease;
    }

    .wp-footer a:hover {
        color: var(--white-color);
    }

    .wp-footer a:hover::after {
        width: 100%;
    }

    /* Social icons */
    .wp-footer .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        border: 1px solid var(--white-color);
        border-radius: 50%;
        margin-right: 10px;
        font-size: 14px;
        color: var(--white-color);
        transition: all 0.3s ease;
    }

    .wp-footer .social-icons a:hover {
        background: var(--white-color);
        color: var(--main-color);
    }

    .wp-footer .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        margin-top: 40px;
        padding-top: 20px;
        text-align: center;
        font-size: 13px;
        color: #fff;
    }




    .pg-hero {
        position: relative;
        background: url('../images/bg.jpg') no-repeat center center/cover;
        height: 230px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-align: center;
    }

    .pg-hero .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
    }

    .pg-hero .hero-content {
        position: relative;
        z-index: 2;
    }

    .pg-hero .hero-content h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .pg-hero .hero-content p {
        margin: 0;
        font-size: 16px;
    }

    .pg-hero .hero-content p a {
        color: var(--main-color);
        text-decoration: none;
        font-weight: 600;
    }

    .wp-tips .section-box {
        padding: 60px 0;
    }

    .wp-tips .section-box img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }


    .wp-tips .section-box:nth-child(even) {
        background-color: #f9f9f9;
    }




    .wp-aboutone {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: var(--white-color);
        padding: 80px 0;
    }



    .wp-aboutone .about-text {
        font-size: 1.05rem;
        line-height: 1.8;
        color: var(--text-color);
    }

    .wp-aboutone .about-img-wrapper {
        text-align: center;
        display: flex;
        justify-content: end;
    }

    .wp-aboutone .about-img {
        max-width: 100%;
        height: 700px;
        border-radius: 60% 40% 30% 70% / 50% 30% 70% 50%;
        /* blob shape */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        object-fit: cover;
    }

    @media (max-width: 991px) {
        .wp-aboutone {
            text-align: center;
        }

        .wp-aboutone .about-img {
            margin-top: 30px;
        }
    }






    .us-aboutb {
        max-width: 1330px;
        margin: 50px auto;
        padding: 30px;
        background: var(--white-color);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(2, 0, 0, 0.1);
        font-family: Arial, sans-serif;
    }




    @media (max-width: 768px) {
        .us-whatsec .tabs {
            flex-direction: column !important;
        }

        .us-whatsec .section-right {
            padding: 20px !important;
            max-width: 400px !important;
        }

        .wp-tips .section-box img {
            margin-bottom: 30px !important;
        }

        .us-aboutb {
            margin: 20px;
            padding: 20px;
        }

        .us-aboutb h2 {
            font-size: 22px;
        }

        .us-aboutb p {
            font-size: 15px;
        }
    }




    .us-whatsec {
        display: flex;
        flex-wrap: wrap;
        background-color: var(--white-color);
        border-radius: 16px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        max-width: 1100px;
        margin: auto;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .us-whatsec .section-left {
        flex: 1;
        min-width: 300px;
        height: auto;
        background-size: cover;
        background-repeat: no-repeat;
        background-image: url('../images/22.png');
    }

    .us-whatsec .section-right {
        flex: 1;
        padding: 40px;
        background: var(--white-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }



    .us-whatsec .section-right h2 {
        font-size: 26px;
        margin: 0 0 20px;
        color: #222;
    }


    .us-whatsec .tabs {
        display: flex;
        gap: 12px;
        margin-bottom: 20px;
    }

    .us-whatsec .tab-btn {
        padding: 8px 18px;
        border: 1px solid var(--main-color);
        background: transparent;
        color: var(--main-color);
        font-weight: 600;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .us-whatsec .tab-btn.active {
        background-color: var(--main-color);
        color: var(--white-color);
    }

    .us-whatsec .tab-content {
        animation: fadeIn 0.3s ease;
        color: #444;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .us-mfeatures {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 20px;
        margin-bottom: 25px;
    }

    .us-mfeatures .feature {
        display: flex;
        align-items: center;
        font-size: 14px;
        color: #333;
        gap: 8px;
    }



    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 900px) {
        .us-whatsec {
            flex-direction: column;
        }

        .us-whatsec .section-left {
            height: 250px;
        }

        .us-whatse .features {
            grid-template-columns: 1fr;
        }
    }




    .ux-polu {
        color: #333;
    }

    .ux-polu .container {
        width: 90%;
        max-width: 1100px;
        margin: auto;
        padding: 120px 0;
    }


    .ux-polu .grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    @media (min-width: 768px) {
        .ux-polu .grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .ux-polu .card {
        background: var(--white-color);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .ux-polu .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .ux-polu .card h2 {
        margin-top: 0;
        color: var(--main-color);
        font-size: 26px;
    }

    .ux-polu .card p {
        color: var(--text-color);
        line-height: 1.6;
    }

    .ux-polu .cta {
        margin-top: 30px;
        text-align: center;
    }

    .ux-polu .cta a {
        display: inline-block;
        padding: 12px 24px;
        background: var(--main-color);
        color: var(--white-color);
        font-weight: bold;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.3s ease;
    }

    .ux-polu .cta a:hover {
        background: var(--hover-color);
    }



    .ux-polu {
        font-family: Arial, sans-serif;
        color: #333;
    }

    .ux-polu .container {
        width: 90%;
        max-width: 900px;
        margin: auto;
        padding: 100px 0;
        text-align: center;
    }



    .ux-polu .feature-image {
        margin-top: 25px;
        display: flex;
        justify-content: center;
    }

    .ux-polu .feature-image img {
        width: 100%;
        max-width: 600px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .ux-polu .cta {
        margin-top: 20px;
    }

    .ux-polu .cta a {
        display: inline-block;
        padding: 12px 24px;
        background: var(--main-color);
        color: #fff;
        font-weight: bold;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.3s ease;
    }

    .ux-polu .cta a:hover {
        background: var(--hover-color);
    }






    .wbixy {
        margin: 0;
        font-family: 'Segoe UI', sans-serif;
        background: #f9fafb;
        color: #333;
        line-height: 1.6;
    }

    .wbixy section {
        padding: 40px 20px;
        max-width: 1370px;
        margin: auto;
    }

    .wbixy .main-box {
        background: var(--white-color);
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    }


    .wbixy ul {
        list-style: none;
        padding: 0;
        margin: 10px 0 20px;
    }

    .wbixy ul li {
        margin: 8px 0;
        padding-left: 25px;
        font-size: 18px;
        font-weight: 500;
        position: relative;
    }

    .wbixy ul li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: var(--hover-color);
        font-weight: bold;
    }





    .us-contactus {
        background-color: #fdf4f8;
        font-family: 'Segoe UI', sans-serif;
        padding: 80px 0;
    }

    .us-contactus .contact-title h2 {
        font-weight: 700;
        font-size: 2.5rem;
        margin-bottom: 20px;
        animation: fadeInDown 1s ease;
    }

    .us-contactus .contact-info {
        margin-top: 30px;
    }

    .us-contactus .contact-info .info-box {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        background: #fff;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

    .us-contactus .contact-info .info-box:hover {
        transform: translateY(-5px);
    }

    .us-contactus .contact-info .icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--main-color);
        color: var(--white-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-right: 15px;
    }

    .us-contactus .contact-form {
        border-radius: 16px;
        padding: 40px;
        background: var(--white-color);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .us-contactus .contact-form:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .us-contactus .form-control {
        border: none;
        border-bottom: 2px solid #ccc;
        font-size: 1.1rem;
        padding: 12px;
        border-radius: 8px;
        transition: border-color 0.3s ease;
    }

    .us-contactus .form-control:focus {
        border-color: var(--hover-color);
        box-shadow: none;
    }

    .us-contactus .btn-custom {
        background: var(--main-color);
        color: var(--white-color);
        border-radius: 12px;
        padding: 14px 20px;
        font-weight: 600;
        font-size: 1.1rem;
        width: 100%;
        transition: background 0.3s ease;
        /* Only color change */
    }

    .us-contactus .btn-custom:hover {
        background: var(--hover-color);
        color: var(--white-color);
    }

    /* Animations */
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }