        body {
            background-color: #111827;
            font-family: "Roboto", sans-serif;
        }


        .gallery-section {
            /*padding: 5rem 1rem 3rem;*/
            padding: 70px 20px 30px; 
            position: relative;
            margin: 0 auto;
            z-index: 1;
        }

        .gallery-header-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 2rem;
            position: relative;
            width: 100%;
            text-align: center;
        }

        @media (min-width: 400px) {
            .gallery-header-container {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

            .gallery-header-text {
                flex-grow: 1;
                text-align: center;
                margin-left: 120px;
            }

            .gallery-section .common-view-more-button {
                position: static;
                margin-top: 0;
            }
        }


        .gallery-section h2 {
            font-weight: 500;
            font-size: 2em;
            margin-bottom: 0.3rem;
            color: #fff;
        }

        .gallery-section p.lead {
            font-weight: 400;
            font-size: 1em;
            color: #cbd5e1;
            margin-bottom: 0;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .gallery-images {
            display: flex;
            justify-content: center;
            gap: 1.8rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .gallery-images img {
            border-radius: 8rem;
            width: 250px;
            height: 400px;
            object-fit: cover;
            box-shadow: 0 5px 25px rgb(0 0 0 / 0.7);
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .gallery-images img:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgb(0 0 0 / 0.85);
        }

        /* Button style for both sections */
        .common-view-more-button {
            border-radius: 2rem;
            padding: 0.5rem 1.6rem;
            font-weight: 400;
            font-size: 0.7em;
            transition: background-color 0.3s, border-color 0.3s;
            background-color: rgba(255, 255, 255, 0.014);
            border: 1px solid rgba(95, 94, 94, 0.4);
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
            margin-top: 1rem;
        }

        .common-view-more-button:hover {
            background-color: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.6);
            color: white;
        }


        .testimonial-section {
            background-image: url('https://storage.googleapis.com/workspace-0f70711f-8b4e-4d94-86f1-2a93ccde5887/image/c600429a-dc6e-47cc-9328-a9096cd79f3b.png');
            background-size: cover;
            background-position: center;
            padding: 5rem 2rem;
            position: relative;
            border-radius: 1.5rem;
            margin: 5rem auto 0; 
            margin-bottom: 0; 
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .testimonial-overlay {
            background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
            position: absolute;
            inset: 0;
            z-index: 0;
            border-radius: 1.5rem;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            color: #fff;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        @media (min-width: 1024px) {
            .testimonial-content {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-end;
            }

            .testimonial-left-column {
                flex: 0 0 45%;
                max-width: 45%;
                text-align: left;
            }

            .testimonial-right-column {
                flex: 0 0 55%;
                max-width: 55%;
                display: flex;
                flex-direction: column;
                align-items: flex-end;
            }
        }

        @media (min-width: 768px) and (max-width: 768px) {
            .testimonial-content {
                flex-direction: column;
                align-items: center;
            }

            .testimonial-left-column,
            .testimonial-right-column {
                width: 100%;
                max-width: 700px;
                text-align: center;
            }

            .testimonial-right-column {
                align-items: center;
            }

            .testimonial-cards {
                justify-content: center;
            }
        }


        .testimonial-content .clients-label {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 400;
            text-transform: uppercase;
            font-size: 0.85rem;
            color: #e0e6f4;
            margin-bottom: 0.6rem;
        }

        /* Client avatars group */
        .client-avatars {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .client-avatars img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid white;
           
            margin-left: -12px;
            object-fit: cover;
        }

        .client-avatars img:first-child {
            margin-left: 20px;
            
        }

        .client-tag {
            margin-left: 1rem;
            background-color: rgba(255, 255, 255, 0.9);
            color: #1a202c;
            font-weight: 600;
            padding: 0.25rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
        }

        .testimonial-content h3 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .testimonial-content p.lead {
            max-width: 500px;
            font-size: 1rem;
            margin-bottom: 0;
            opacity: 0.9;
            font-weight: 400;
        }

        .testimonial-cards {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        @media (min-width: 768px) {
            .testimonial-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }


        .testimonial-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: saturate(180%) blur(15px);
            color: #1a202c;
            border-radius: 1.25rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            padding: 1.8rem 2rem;
            position: relative;
            font-weight: 500;
        }

        .testimonial-card .profile {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .testimonial-card .profile img {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #6366f1;
            
        }

        .testimonial-card .profile .name {
            font-weight: 300;
            font-size: 0.8em;
            color: #050505;
            white-space: nowrap;
        }

        .testimonial-card .profile .role {
            font-size: 0.9rem;
            color: #4a5568;
            font-weight: 400;
        }

        .testimonial-card .star-rating {
            position: absolute;
            top: 2rem;
            right: 1rem;
            color: #fbbf24;
            font-size: 1.1rem;
            user-select: none;
        }

        .testimonial-card p {
            font-size: 0.6rem;
            line-height: 1.5;
        }

        /* Responsive */
        @media (max-width: 960px) {
            .gallery-images {
                gap: 1.2rem;
            }

            .gallery-images img {
                width: 150px;
                height: 245px;
            }
        }

        @media (max-width: 767px) {
            .gallery-header-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .gallery-section .common-view-more-button {
                position: static;
                transform: none;
                width: auto;
                margin-top: 1rem;
                margin-right: auto;
                margin-left: auto;
            }

            .gallery-header-text {
                margin-left: 0;
            }
        }

        .why-choose-us-section-original {
            background-color: white;
            color: #0a2e4e;
            padding: 0;
            margin: 0 auto; 
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .why-choose-us-section-original .flex-container {
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: stretch;
        }

        @media (min-width: 768px) {
            .why-choose-us-section-original .flex-container {
                flex-direction: row;
            }
        }

        .why-choose-us-section-original .image-container {
            position: relative;
            width: 100%;
            height: 350px; 
            flex-shrink: 0;
        }

        @media (min-width: 768px) {
            .why-choose-us-section-original .image-container {
                width: 50%;
                height: auto; 
                min-height: 380px; 
            }
        }
        
        .why-choose-us-section-original img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-top-right-radius: 150px;
            border-top-left-radius: 0;
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
        }

        .why-choose-us-section-original .content-area {
            width: 100%;
            padding: 2rem 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @media (min-width: 768px) {
            .why-choose-us-section-original .content-area {
                width: 50%;
                padding: 2.5rem 4rem;
            }
        }

        /* Footer styles */
        .main-footer {
            background-color: #111827;
            color: #B2C2D4;
            padding: 3rem 1.5rem;
            font-size: 0.9rem;
            margin-top: 0;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-logo-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 2rem;
           
        }

        @media (min-width: 768px) {
            .footer-logo-container {
                align-items: flex-start;
                text-align: left;
                margin-bottom: 0;
            }
        }

        .footer-logo-container img {
            width: 50px;
            height: auto;
            margin-bottom: 1rem;
            border-radius: 50px;
        }

        .footer-logo-container h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }

        .footer-logo-container p {
            font-size: 0.85rem;
            margin-bottom: 0;
            line-height: 1.4;
            max-width: 250px;
        }

        .footer-links-column, .footer-contact-column {
            margin-bottom: 2rem;
        }

        @media (min-width: 768px) {
            .footer-links-column, .footer-contact-column {
                margin-bottom: 0;
            }
        }

        .footer-links-column h5, .footer-contact-column h5 {
            font-weight: 700;
            color: white;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .footer-links-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links-column ul li {
            margin-bottom: 0.5rem;
        }

        .footer-links-column ul li a {
            color: #B2C2D4;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links-column ul li a:hover {
            color: #fff;
        }

        .footer-contact-column p {
            margin-bottom: 0.5rem;
        }

        .footer-contact-column a {
            color: #B2C2D4;
            text-decoration: none;
        }

        .footer-contact-column a:hover {
            color: #fff;
        }

        .footer-contact-column .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            justify-content: center;
        }

        @media (min-width: 768px) {
            .footer-contact-column .social-icons {
                justify-content: flex-start;
            }
        }

        .footer-contact-column .social-icons a {
            color: white;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }

        .footer-contact-column .social-icons a:hover {
            color: #2ea9e0;
        }

        .footer-bottom {
            background-color: #e0e6f4;
            padding: 0.8rem;
            text-align: center;
            font-weight: bold;
            font-size: 1rem;
            color: #111827;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            margin-left: auto;
            margin-right: auto;
        }