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

        /* Base styles for better image performance */
        img {
            max-width: 100%;
            height: auto;
            display: block;
            /* Improve image rendering performance */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            /* Optimize for eager loading */
            background-color: transparent;
        }

        /* Preloader Styles */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out;
            touch-action: manipulation; /* Better touch handling on mobile */
        }

        .preloader-content {
            position: relative;
            z-index: 10001;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .home-icon {
            width: 80px;
            height: 80px;
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: drawIcon 4s ease-in-out forwards;
        }

        .preloader-logo {
            width: 200px;
            height: auto;
            opacity: 0;
            animation: fadeInLogo 4s ease-in-out forwards;
        }

        @keyframes drawIcon {
            to {
                stroke-dashoffset: 0;
            }
        }

        @keyframes fadeInLogo {
            to {
                opacity: 1;
            }
        }

        .preloader-overlay {
            position: fixed;
            top: 0;
            width: 50%;
            height: 100%;
            background-color: #ffffff;
            z-index: 10000;
            transition: transform 1s ease-in-out;
        }

        .preloader-left {
            left: 0;
        }

        .preloader-right {
            right: 0;
        }

        /* Hide preloader after animation */
        #preloader.preloader-hidden {
            opacity: 0;
            pointer-events: none;
        }

        #preloader.preloader-hidden .preloader-overlay {
            transform: translateX(0);
        }

        #preloader.preloader-hidden .preloader-left {
            transform: translateX(-100%);
        }

        #preloader.preloader-hidden .preloader-right {
            transform: translateX(100%);
        }

        /* Responsive Preloader Styles */
        @media screen and (max-width: 768px) {
            #preloader {
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            .home-icon {
                width: 12vw;
                height: 12vw;
                min-width: 50px;
                min-height: 50px;
                max-width: 80px;
                max-height: 80px;
                animation: drawIcon 3s ease-in-out forwards; /* Faster animation on mobile */
            }
            
            .preloader-logo {
                width: 30vw;
                min-width: 120px;
                max-width: 200px;
                animation: fadeInLogo 3s ease-in-out forwards; /* Faster animation on mobile */
            }
            
            .preloader-overlay {
                transition: transform 0.8s ease-in-out; /* Faster transition on mobile */
            }
        }

        @media screen and (max-width: 480px) {
            #preloader {
                display: flex;
                justify-content: center;
                align-items: center;
            }
            
            .home-icon {
                width: 10vw;
                height: 10vw;
                min-width: 40px;
                min-height: 40px;
                max-width: 60px;
                max-height: 60px;
                animation: drawIcon 2.5s ease-in-out forwards; /* Even faster animation on small screens */
            }
            
            .preloader-logo {
                width: 25vw;
                min-width: 100px;
                max-width: 150px;
                animation: fadeInLogo 2.5s ease-in-out forwards; /* Even faster animation on small screens */
            }
            
            .preloader-overlay {
                transition: transform 0.6s ease-in-out; /* Faster transition on small screens */
            }
        }

        /* High DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .home-icon {
                transform: translateZ(0);
                backface-visibility: hidden;
                perspective: 1000px;
            }
            
            .preloader-logo {
                transform: translateZ(0);
                backface-visibility: hidden;
                perspective: 1000px;
            }
        }

        /* Faster animations for users who prefer reduced motion */
        @media (prefers-reduced-motion: reduce) {
            .home-icon {
                animation: drawIcon 1.5s ease-in-out forwards;
            }
            
            .preloader-logo {
                animation: fadeInLogo 1.5s ease-in-out forwards;
            }
            
            .preloader-overlay {
                transition: transform 0.5s ease-in-out;
            }
        }

        body {
            font-family: 'Inter', sans-serif;
        }

        /* Global text justification fix - Prevents word breaking and hyphenation */
        p, li, span, div, td, th, label, .text-justify, .paragraph, .description, .content {
            hyphens: none !important;
            -webkit-hyphens: none !important;
            -moz-hyphens: none !important;
            -ms-hyphens: none !important;
            word-break: keep-all !important;
            overflow-wrap: normal !important;
            word-wrap: normal !important;
        }

       


        /* Navbar Styles */
        .navbar {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px 50px;
            background-color: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            /* position: sticky; */
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1600px;
        }

        .nav-logo {
            flex-shrink: 0;
        }

        .nav-logo img {
            height: 50px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 10px;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: #333333;
            font-size: 16px;
            font-weight: 400;
            padding: 12px 24px;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: block;
        }

        .nav-link:hover {
            background-color: #6C1A79;
            color: #ffffff;
        }

        /* Active page styling */
        .nav-link.active {
            background-color: #6C1A79;
            color: #ffffff;
        }

        /* Get Quote Button */
        .nav-quote-btn {
            background-color: #6C1A79;
            color: #ffffff !important;
            font-weight: 600;
            padding: 12px 30px !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .nav-quote-btn:hover {
            background-color: #6C1A79;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(123, 44, 191, 0.3);
        }

        /* Mobile Menu Toggle */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            margin-top: 15px;
            z-index: 1001; /* Ensure hamburger is clickable */
            position: relative; /* Ensure z-index works */
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background-color: #000;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Responsive Styles */
        @media screen and (max-width: 968px) {
            .navbar {
                padding: 20px 30px;
            }

            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: absolute;
                top: 90px;
                left: 0;
                width: 100%;
                background-color: #ffffff;
                flex-direction: column;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
                z-index: 1000; /* Ensure menu appears above other content */
            }

            .nav-menu.active {
                max-height: 400px;
            }

            .nav-item {
                width: 100%;
                text-align: center;
            }

            .nav-link {
                padding: 18px 24px;
                border-radius: 0;
                width: 100%;
            }

            .nav-quote-btn {
                margin: 10px 20px;
                width: calc(100% - 40px);
                text-align: center;
            }
        }

        @media screen and (max-width: 480px) {
            .navbar {
                padding: 15px 20px;
            }

            .nav-logo img {
                height: 40px;
            }

            .nav-menu {
                top: 70px;
            }
        }

        /* Navbar End  */

        /* Footer Styles */
        .footer {
            background-color: rgba(216, 202, 184, 0.37);
            padding: 60px 50px 0;
            font-family: 'Inter', sans-serif;
         
        }

        .footer-container {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.5fr;
            gap: 40px;
            max-width: 1600px;
            margin: 0 auto;
            padding-bottom: 40px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 60px;
            width: auto;
        }

        .footer-description {
            color: #333333;
            font-size: 14px;
            line-height: 1.7;
            max-width: 280px;
            text-align: justify;
            hyphens: none;
            overflow-wrap: normal;
            word-break: keep-all;
        }

        .footer-column h3 {
            font-size: 18px;
            font-weight: 600;
            color: #000000;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #333333;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #6C1A79;
        }

        /* Contact Info */
        .contact-item {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            align-items: flex-start;
        }

        .contact-icon {
            flex-shrink: 0;
            margin-top: 2px;
            color: #333333;
        }

        .contact-item p {
            color: #333333;
            font-size: 14px;
            line-height: 1.7;
            margin: 0;
            text-align: justify;
            hyphens: none;
            overflow-wrap: normal;
            word-break: keep-all;
        }
        
        .footer-contact a {
       color: #333;     /* change according to your theme */
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: none;
}

        /* Newsletter */
        .newsletter-text {
            color: #333333;
            font-size: 13px;
            line-height: 1.7;
            margin-bottom: 16px;
            text-align: justify;
            hyphens: none;
            overflow-wrap: normal;
            word-break: keep-all;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .newsletter-form input {
            padding: 12px 16px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .newsletter-form input:focus {
            border-color: #6C1A79;
        }

        .newsletter-form button {
            padding: 12px 24px;
            background-color: #6C1A79;
            color: #ffffff;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .newsletter-form button:hover {
            background-color: #6C1A79;
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid #cccccc;
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1600px;
            margin: 0 auto;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: #333333;
            font-size: 14px;
            line-height: 1.7;
            margin: 0;
            text-align: justify;
            hyphens: none;
            overflow-wrap: normal;
            word-break: keep-all;
        }

        .footer-legal {
            display: flex;
            gap: 30px;
        }

        .footer-legal a {
            color: #333333;
            text-decoration: none;
            font-size: 14px;
            line-height: 1.7;
            transition: color 0.3s ease;
            text-align: justify;
            hyphens: none;
            overflow-wrap: normal;
            word-break: keep-all;
        }

        .footer-legal a:hover {
            color: #6C1A79;
        }

        .footer-social {
            display: flex;
            gap: 16px;
        }

        .footer-social a {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6C1A79;
            transition: color 0.3s ease;
        }

        .footer-social a:hover {
            color: #6C1A79;
        }

        /* Responsive Footer */
        @media screen and (max-width: 1200px) {
            .footer-container {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-about {
                grid-column: 1 / -1;
            }

            .footer-newsletter {
                grid-column: 1 / -1;
            }
        }

        @media screen and (max-width: 968px) {
            .footer {
                padding: 50px 30px 0;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .footer-about {
                grid-column: 1 / -1;
            }

            .footer-newsletter {
                grid-column: 1 / -1;
            }
        }

        @media screen and (max-width: 640px) {
            .footer {
                padding: 40px 20px 0;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-column {
                text-align: left;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }

            .footer-legal {
                flex-direction: column;
                gap: 12px;
            }

            .footer-social {
                justify-content: center;
            }
        }

        /* Footer End */