.custom-section {
            padding-top: 5rem;
            padding-bottom: 5rem;
            position: relative;
            overflow: hidden;
        }
        .custom-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 200%;
            height: 100%;
            background-image: url("../images/bg-pattern.webp");
            z-index: 0;
            opacity: 0.5;
        }
        .container {
            position: relative;
            z-index: 1;
        }
        .image-container {
            position: relative;
        }
        .testimonial-card {
            position: absolute;
            bottom: 5rem;
            left: 50%;
            transform: translateX(-50%);
            background-color: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            width: 80%;
            max-width: 350px;
        }
        .testimonial-card p {
            font-size: 0.875rem;
            color: #555;
            margin-bottom: 0.5rem;
        }
        .testimonial-card span {
            font-weight: 500;
            font-size: 0.875rem;
            color: #333;
        }
        .form-container h2 {
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
        }
        .form-container p {
            color: #7f8c8d;
            margin-bottom: 2rem;
        }
        .form-control,.form-select {
            border-radius: 8px;
            border: 1px solid #ced4da;
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
            background-color: #E6F7FF !important;
        }
        .form-control:focus {
            box-shadow: 0 0 0 0.25rem rgba(231, 120, 142, 0.25);
            border-color: #e7788e;
        }
        .btn-submit {
            background-color: #FECB5F ;
            border: none;
            color: #6e0101;
            padding: 0.75rem 2.5rem;
            border-radius: 8px;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }
        .btn-submit:hover {
            background-color: #012060;
            color: white;
        }
        .contact-info-section {
            background-color: #FFFFFF;
            padding: 3rem 0;
            border-top: 1px solid #e9ecef;
        }
        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: #555;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .contact-item:hover {
            color: #E7788E;
        }
        .contact-item i {
            color: #6e0101;
            font-size: 1.5rem;
        }
        @media (max-width: 991.98px) {
            .image-container {
                margin-bottom: 3rem;
            }
            .testimonial-card {
                position: static;
                transform: none;
                margin: 0 auto;
                margin-top: -4rem; 
            }
        }