@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
h1, h2, h3, h4, h5, h6, p, a {
    font-family: "Montserrat" !important; /* Replace with your font family */
}

/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}



/* Section Headings */
section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4facfe;
}

section p {
    color: #555;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    font-size: 0.9rem;
}



/** ANIMATED CIRCLE **/

#mouse-circle {
    width: 20px; /* Circle size */
    height: 20px; /* Circle size */
    border: 2px solid cyan; /* Cyan outline */
    border-radius: 50%; /* Make it a circle */
    position: absolute; /* Position relative to the viewport */
    pointer-events: none; /* Prevent interference with clicking */
    transform: translate(-50%, -50%); /* Center the circle on the cursor */
    z-index: 1000; /* Ensure it stays on top of other elements */
    transition: background-color 0.2s ease; /* Smooth background transition */
}

#mouse-circle.clicking {
    animation: click-animation 0.5s ease-out;
}


/* ----------- BUTTONS ------------- */

.beautiful-button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.beautiful-button:hover {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.beautiful-button:active {
    transform: scale(1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}



