        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }

        .header {
            position: relative;
            height: 500px;
            overflow: hidden;
            background: #2c3e50;
        }

        .header-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://www.niceandcleannashville.com/assets/BackgroundTrinity.png');
            /*background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2072&q=80');*/
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 1;
        }

        .text-section {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 35%;
            background: rgba(44, 62, 80, 0.5);
            backdrop-filter: blur(2px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 40px;
            color: white;
            z-index: 10;
            /* Slant from bottom to top on right side */
            clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 100%, 0 100%);
            transition: all 0.3s ease;
        }

        .text-section:hover {
            background: rgba(44, 62, 80, 0.6);
            clip-path: polygon(0 0, calc(100% - 60px) 0, calc(100% + 20px) 100%, 0 100%);
        }

        .text-section h1 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            background: linear-gradient(45deg, #3498db, #e74c3c, #f39c12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
            animation: textGlow 4s ease-in-out infinite alternate;
        }

        @keyframes textGlow {
            from { filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 10px rgba(52, 152, 219, 0.3)); }
            to { filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 20px rgba(231, 76, 60, 0.5)); }
        }

        .text-section h2 {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
            opacity: 0.95;
        }

        .text-section p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
            line-height: 1.7;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            padding: 14px 32px;
            background: linear-gradient(45deg, #3498db, #e74c3c);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            align-self: flex-start;
            position: relative;
            overflow: hidden;
            text-shadow: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .cta-button::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 ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            background: linear-gradient(45deg, #2980b9, #c0392b);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Decorative elements */
        .floating-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        .particle:nth-child(1) {
            left: 20%;
            animation-delay: -2s;
            animation-duration: 12s;
        }

        .particle:nth-child(2) {
            left: 50%;
            animation-delay: -8s;
            animation-duration: 18s;
        }

        .particle:nth-child(3) {
            left: 80%;
            animation-delay: -14s;
            animation-duration: 10s;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Content fade-in animation */
        .text-section > * {
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        .text-section h1 { animation-delay: 0.3s; }
        .text-section h2 { animation-delay: 0.5s; }
        .text-section p { animation-delay: 0.7s; }
        .text-section .cta-button { animation-delay: 0.9s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive design */
        @media (max-width: 1024px) {
            .text-section {
                width: 40%;
                clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 100%, 0 100%);
            }

            .text-section h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .header {
                height: 400px;
            }

            .text-section {
                width: 100%;
                clip-path: none;
                background: rgba(44, 62, 80, 0.7);
                padding: 30px 20px;
            }

            .text-section h1 {
                font-size: 2.2rem;
            }

            .text-section h2 {
                font-size: 1.3rem;
            }

            .text-section p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .header {
                height: 350px;
            }

            .text-section {
                padding: 25px 15px;
            }

            .text-section h1 {
                font-size: 1.9rem;
                margin-bottom: 15px;
            }

            .text-section h2 {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }

            .text-section p {
                font-size: 0.95rem;
                margin-bottom: 20px;
            }

            .cta-button {
                padding: 12px 28px;
                font-size: 0.9rem;
            }
        }

        /* Glass morphism effect enhancement */
        .text-section::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: inherit;
            z-index: -1;
        }

        .unique-three-box-section {
            background-color: #d8dce1;
            padding: 80px 20px 40px;
            margin: 0 auto;
        }

        .unique-three-box-container {
            display: flex;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }

        .unique-feature-box p {
        /*margin-bottom: 11px;
        color: #555;*/
        text-align: justify;
        text-justify: inter-word;
                    }

        .unique-feature-box {
            position: relative;
            background: white;
            border-radius: 16px;
            padding: 60px 30px 30px;
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            /*text-align: justify;
            text-justify: inter-word;*/
            text-align: center;
        }

        .unique-icon-wrapper {
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            /*background: #4a90e2;*/
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);*/
        }

        .unique-icon-wrapper svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        .unique-feature-box h3 {
            color: #333;
            font-size: 24px;
            margin: 0 0 15px 0;
            font-weight: 600;
        }

        .unique-feature-box p {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 768px) {
            .unique-three-box-container {
                flex-direction: column;
                align-items: center;
            }

            .unique-feature-box {
                max-width: 100%;
            }
        }
        .ourwork {
            background-color: #27235e;
            padding: 30px 20px;
            margin: 0 auto;
            color:#FFFFFF;
            font-size:2em;
        }

        .ourwork-container {
            display: flex;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }

        .ourwork-image-wrapper {
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .ourwork-image-wrapper:hover {
            transform: translateY(-5px);
        }

        .ourwork-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .ourwork-image-wrapper:hover .ourwork-image {
            transform: scale(1.05);
        }

        .ourwork-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 30px 20px 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .ourwork-image-wrapper:hover .ourwork-overlay {
            transform: translateY(0);
        }

        .ourwork-title {
            font-size: 20px;
            font-weight: 600;
            margin: 0 0 8px 0;
        }

        .ourwork-description {
            font-size: 14px;
            opacity: 0.9;
            margin: 0;
            line-height: 1.4;
        }

        @media (max-width: 768px) {
            .ourwork-container {
                flex-direction: column;
                align-items: center;
            }

            .ourwork-image-wrapper {
                max-width: 100%;
            }
        }
        .testimonials {
            background-color: #d8dce1;
            padding: 20px 20px;
            margin: 0 auto;
        }

        .testimonials h1 {
            color: #27235e;
            text-align: center;
            font-size: 48px;
            font-weight: 700;
            margin: 0;
            letter-spacing: -1px;
        }

        @media (max-width: 768px) {
            .testimonials h1 {
                font-size: 36px;
            }
        }

        @media (max-width: 480px) {
            .testimonials h1 {
                font-size: 28px;
            }
        }

/*Begin Footer Styles*/
        .footer {
            background-color: #27235e;
            padding: 80px 20px 60px;
            margin: 0 auto;

        }

        .footer h1 {
            color: #d8dce1;
            text-align: center;
            font-size: 48px;
            font-weight: 700;
            margin: 0 0 50px 0;
            letter-spacing: 2px;
        }

        .social-logos {
            display: flex;
            justify-content: center;
            gap: 40px;
            align-items: center;
        }

        .social-logo {
            width: 60px;
            height: 60px;
            background-color: #d8dce1;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .social-logo svg {
            width: 30px;
            height: 30px;
            fill: #27235e;
        }

        .facebook-logo:hover {
            background-color: #1877f2;
        }

        .facebook-logo:hover svg {
            fill: white;
        }

        .linkedin-logo:hover {
            background-color: #0077b5;
        }

        .linkedin-logo:hover svg {
            fill: white;
        }

        .googleplus-logo:hover {
            background-color: #dd4b39;
        }

        .googleplus-logo:hover svg {
            fill: white;
        }

        @media (max-width: 768px) {
            .footer h1 {
                font-size: 36px;
                letter-spacing: 1px;
            }

            .social-logos {
                gap: 30px;
            }

            .social-logo {
                width: 50px;
                height: 50px;
            }

            .social-logo svg {
                width: 25px;
                height: 25px;
            }
        }
        .social-link {
            display: inline-block;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: rgba(216, 220, 225, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background-color: #d8dce1;
            transform: translateY(-3px);
        }

        .social-link svg {
            width: 30px;
            height: 30px;
            fill: #d8dce1;
            transition: fill 0.3s ease;
        }

        .social-link:hover svg {
            fill: #27235e;
        }

        .copyright {
            color: white;
            font-size: 14px;
            margin: 0;
            padding-top: 20px;
            border-top: 1px solid rgba(216, 220, 225, 0.3);
        }
                    .social-link {
                width: 50px;
                height: 50px;
            }

            .social-link svg {
                width: 25px;
                height: 25px;
            }


        @media (max-width: 480px) {
            .footer h1 {
                font-size: 28px;
                letter-spacing: 0.5px;
            }

            .social-logos {
                gap: 20px;
            }
            .copyright {
                font-size: 12px;
            }

        }
/*End Footer Styles*/

/*Be3gin Header Styles*/
        .header-container {
            width: 100%;
            background-color: #d8dce1;
            padding: 5px 0;
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }
/*End Header Styles*/

/*Begin Logo Styles*/
        .logo {
            width: 300px;
            height: 65px;
            object-fit: contain;
        }

        .ourmenu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 30px;
        }

        .ourmenu li {
            margin: 0;
        }

        .ourmenu a {
            color: #27235e;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            padding: 10px 5px;
            transition: color 0.3s ease, border-bottom 0.3s ease;
            border-bottom: 2px solid transparent;
        }

        .ourmenu a:hover {
            color: #1a1640;
            border-bottom: 2px solid #27235e;
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                gap: 20px;
            }

            .logo {
                width: 250px;
                height: 42px;
            }

            .ourmenu {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }

            .ourmenu a {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .ourmenu {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .logo {
                width: 200px;
                height: 34px;
            }
        }
/*End Logo Styles*/