/*General-style-*/

/*threepoints*/

.section-threepoints {
background-color: blue; 
}










/*long-contact-form*/

 .trailform-container {
        max-width: 800px;
        margin: auto;
	margin-bottom: 50px;
        padding: 20px;
        background: black;
        border-radius: 10px;
        color: white;
        
        /* Base shadow with more visibility on light background */
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
        
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    /* Hover Effect - Enhancing the glow */
    .trailform-container:hover {
        transform: scale(1.02);
        box-shadow: 0px 12px 30px rgba(255, 204, 0, 0.6);
    }

    .trailform-container h2 {
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .trailform-group {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .trailform-field {
        flex: 1 1 calc(50% - 10px);
        min-width: 280px;
    }

    .trailform-label {
        font-weight: normal;
        display: block;
        margin-bottom: 7px;
    }

    .trailform-input, .trailform-textarea, .trailform-select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 14px;
        background: #e0e0e0;
        transition: all 0.3s ease-in-out;
    }

    /* Input fields change color on hover */
    .trailform-input:hover, .trailform-textarea:hover, .trailform-select:hover {
        background: #d4d4d4;
        border-color: #bbb;
    }

    .trailform-textarea {
        resize: vertical;
        height: 80px;
    }

    .trailform-button {
        width: 100%;
        padding: 10px;
        background: #ffcc00;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        margin-top: 10px;
        transition: background 0.3s ease, color 0.3s ease;
    }

    /* Button effect on hover */
    .trailform-button:hover {
        background: #e6b800;
        color: white;
    }

    .trailform-info {
        padding: 10px;
        border-radius: 5px;
        font-size: 14px;
        margin-top: 15px;
    }

    .trailform-info h3 {
        color: #d39e00;
        font-size: 16px;
        font-weight: bold;
    }

/********************form hide button**************************/

        .hidden {
            display: none;
        }
        /* Blue Button Style */
        .toggle-button {
            background-color: #1b1e22; /* Blue color */
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
	    display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .toggle-button:hover {
            background-color: #0056b3; /* Darker blue on hover */
        }