 body {
            /* font-family: Arial, sans-serif; */
            margin: 0;
            padding: 0;
        }
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10rem 3rem;
            background: #f1f3f5;
            border-radius: 15px;
            overflow: hidden;
        }
        .image-container {
            position: absolute;
            right: 3rem;
            width: 70%; /* Roughly 75% of usable section width after margins/padding */
            z-index: 1;
            padding: 1.5rem;
        }
        .image-container img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        .text-container {
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, 0.92);
            padding: 3rem;
            width: 50%;
            margin-left: -50%; /* Slight overlap with image for foreground effect */
            /* border-radius: 12px; */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .text-container h1 {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
        }
        .text-container p {
            font-size: 1rem;
            line-height: 1.8rem;
            color: #333;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 1.5rem;
                flex-direction: column; /* Stack vertically */
                min-height: auto;
            }
            .image-container {
                position: static; /* Remove absolute positioning for stacking */
                width: 100%;
                padding: 1rem;
                margin-bottom: 1rem; /* Space between image and text */
            }
            .text-container {
                position: static; /* Remove absolute positioning for stacking */
                width: 100%;
                margin: 1rem;
                padding: 2rem;
                text-align: start;
            }
            .text-container h1 {
                font-size: 2rem;
            }
            .text-container p {
                font-size: 1rem;
            }
        }

                /* Testimonials */
        .testimonials {
            background-color: #333; /* Dark background for contrast */
            padding: 60px 0;
        }
        .section-header {
            margin-bottom: 40px;
        }
        .testimonial-slider {
            position: relative;
            min-height: 300px; /* Increased height for better content fit */
            overflow: hidden;
        }
        .testimonial {
            position: absolute;
            top: 0;
            left: 50%;
            width: 350px;
            max-width: 80%;
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease, opacity 0.5s ease;
            opacity: 0;
        }
        .testimonial p {
            color: #ddd;
            font-style: italic;
            margin-bottom: 15px;
            position: relative;
        }
        .testimonial p::before {
            content: '“';
            font-size: 40px;
            color: #f4f0e8;
            position: absolute;
            top: -20px;
            left: -10px;
        }
        .testimonial p::after {
            content: '”';
            font-size: 40px;
            color: #f4f0e8;
            position: absolute;
            bottom: -40px;
            right: -10px;
        }
        .testimonial-author {
            color: #f4f0e8;
            font-weight: bold;
            font-size: 16px;
        }
        .arrows button {
            background: transparent;
            border: none;
            color: #f4f0e8;
            font-size: 32px;
            cursor: pointer;
            padding: 0 15px;
            transition: color 0.3s;
        }
        .arrows button:hover {
            color: #ffffff;
        }
        @media (max-width: 768px) {
            .testimonial {
                width: 90%;
                padding: 20px;
            }
            .arrows button {
                font-size: 24px;
            }
            .section-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .arrows {
                margin-top: 15px;
            }
        }

        .form-section {
            padding: 80px 0;
            position: relative;
            background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6') no-repeat center center;
            background-size: cover;
        }

        .form-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
            z-index: 1;
        }

        .ccontact-form {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .ccontact-form h3 {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 40px;
            text-align: left;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }

        .form-group {
            position: relative;
            flex: 1;
            min-width: 200px;
        }

        .form-group.full-width {
            flex: 0 0 100%;
            max-width: 600px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 0;
            border: none;
            border-bottom: 2px solid #fff;
            background: transparent;
            font-size: 1.1rem;
            color: #fff;
            transition: border-color 0.3s ease;
        }

        .form-group select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background: transparent;
            padding: 12px 0;
            margin-bottom: 20px; /* Space between country code and phone input */
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group label {
            position: absolute;
            left: 0;
            font-size: 1.1rem;
            color: #ccc;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .form-group label[for="country-code"] {
            top: 12px; /* Default position for country code label */
        }

        .form-group label[for="phone"] {
            top: -20px; /* Phone label starts above input */
            font-size: 0.9rem;
            color: #d4a017;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-bottom-color: #d4a017;
        }

        .form-group input:focus + label,
        .form-group textarea:focus + label,
        .form-group select:focus + label,
        .form-group input:not(:placeholder-shown) + label,
        .form-group textarea:not(:placeholder-shown) + label,
        .form-group select:not([value=""]) + label {
            top: -20px;
            font-size: 0.9rem;
            color: #d4a017;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: transparent;
        }

        .form-group select option {
            background: #333;
            color: #fff;
        }

        .error-message {
            color: #ff6b6b;
            font-size: 0.9rem;
            position: absolute;
            bottom: -20px;
            left: 0;
        }

        .ccontact-form button {
            background: #d4a017;
            border: none;
            border-radius: 25px;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 500;
            color: #fff;
            width: 200px;
            margin: 30px 0 0;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .ccontact-form button:hover {
            background: #b88c14;
            transform: translateY(-2px);
        }

        @media (max-width: 767.98px) {
            .ccontact-form h3 {
                font-size: 2rem;
                text-align: center;
            }
            .form-row {
                flex-direction: column;
                gap: 15px;
            }
            .form-group {
                min-width: 100%;
            }
            .form-group.full-width {
                max-width: 100%;
            }
            .ccontact-form button {
                width: 100%;
            }
        }

        @media (min-width: 768px) {
            .form-row {
                justify-content: flex-start;
            }
            .ccontact-form {
                padding-left: 0;
            }
        }