/* Custom styles to ensure 'Inter' font is used globally */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}
/* Custom scrollbar for a cleaner look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9; /* Light gray */
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #db2777; /* Pink 600 */
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #be185d; /* Pink 700 */
}

/* WhatsApp Form Styles */
.whatsapp-icon {
    display: block;
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
    color: #128C7E;
}
.form-group {
    margin-bottom: 20px;
}
.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}
.form-input:focus {
    border-color: #128C7E;
    outline: none;
}
textarea.form-input {
    min-height: 120px;
    resize: vertical;
}
.required {
    color: #ff4d4d;
}